Message ID | 20211227151319.841847010@linuxfoundation.org |
---|---|
State | Superseded |
Headers | show
Return-Path: <stable-owner@kernel.org> X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id C0245C43219 for <stable@archiver.kernel.org>; Mon, 27 Dec 2021 15:36:39 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235157AbhL0Pgj (ORCPT <rfc822;stable@archiver.kernel.org>); Mon, 27 Dec 2021 10:36:39 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:35756 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S238252AbhL0PeT (ORCPT <rfc822;stable@vger.kernel.org>); Mon, 27 Dec 2021 10:34:19 -0500 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 6823AC0619D8; Mon, 27 Dec 2021 07:34:16 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 0700961073; Mon, 27 Dec 2021 15:34:16 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id E1ECBC36AE7; Mon, 27 Dec 2021 15:34:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1640619255; bh=NFkezmt+yWme4gk88o4+WRZHLk6EPLsnLnVIzGcjOMw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=W9XRVEwfGFfE7VrTyZoOXqryqJwkhiCNl5L/S7UTtLWu+DUTc7sOMUZz8k6TaSGcF 0l8YcuePyWpwen94nW6bGld52fiLfcYUd8iGIRCmoti6rjkPWuEbIWA+N7oFmmyfl+ t455Z1v3puMNOlI8llB4bv4T7XSbOgSLR28UrQCA= From: Greg Kroah-Hartman <gregkh@linuxfoundation.org> To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>, stable@vger.kernel.org, Willem de Bruijn <willemb@google.com>, Jakub Kicinski <kuba@kernel.org>, Sasha Levin <sashal@kernel.org> Subject: [PATCH 4.19 14/38] net: skip virtio_net_hdr_set_proto if protocol already set Date: Mon, 27 Dec 2021 16:30:51 +0100 Message-Id: <20211227151319.841847010@linuxfoundation.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20211227151319.379265346@linuxfoundation.org> References: <20211227151319.379265346@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: <stable.vger.kernel.org> X-Mailing-List: stable@vger.kernel.org |
Series |
None
|
expand
|
diff --git a/include/linux/virtio_net.h b/include/linux/virtio_net.h index 8874b278cd34a..faee73c084d49 100644 --- a/include/linux/virtio_net.h +++ b/include/linux/virtio_net.h @@ -25,6 +25,9 @@ static inline bool virtio_net_hdr_match_proto(__be16 protocol, __u8 gso_type) static inline int virtio_net_hdr_set_proto(struct sk_buff *skb, const struct virtio_net_hdr *hdr) { + if (skb->protocol) + return 0; + switch (hdr->gso_type & ~VIRTIO_NET_HDR_GSO_ECN) { case VIRTIO_NET_HDR_GSO_TCPV4: case VIRTIO_NET_HDR_GSO_UDP: