From: Vladislav Yasevich <vyasevich@gmail.com>
To: netdev@vger.kernel.org
Cc: tom@herbertland.com, mkubecek@suse.cz,
Vladislav Yasevich <vyasevic@redhat.com>
Subject: [PATCH net] netdevice: Prefer NETIF_F_HW_CSUM when intersecting features
Date: Wed, 19 Apr 2017 21:12:23 -0400 [thread overview]
Message-ID: <1492650743-28164-1-git-send-email-vyasevic@redhat.com> (raw)
While hardware device use either NETIF_F_(IP|IPV6)_CSUM or
NETIF_F_HW_CSUM, all of the software devices use HW_CSUM.
This results in an interesting situation when the software
device is configured on top of hw device using (IP|IPV6)_CSUM.
In this situation, the user can't turn off checksum offloading
features on the software device.
This patch resolves that by prefering the NETIF_F_HW_CSUM setting
when computing a feature intersect.
Signed-off-by: Vladislav Yasevich <vyasevic@redhat.com>
---
include/linux/netdevice.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h
index 97456b25..3d811c1 100644
--- a/include/linux/netdevice.h
+++ b/include/linux/netdevice.h
@@ -4019,9 +4019,9 @@ static inline netdev_features_t netdev_intersect_features(netdev_features_t f1,
{
if ((f1 ^ f2) & NETIF_F_HW_CSUM) {
if (f1 & NETIF_F_HW_CSUM)
- f1 |= (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM);
+ f2 |= NETIF_F_HW_CSUM;
else
- f2 |= (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM);
+ f1 |= NETIF_F_HW_CSUM;
}
return f1 & f2;
--
2.7.4
next reply other threads:[~2017-04-20 1:12 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-04-20 1:12 Vladislav Yasevich [this message]
2017-04-20 6:13 ` [PATCH net] netdevice: Prefer NETIF_F_HW_CSUM when intersecting features Michal Kubecek
2017-04-20 15:20 ` Vlad Yasevich
2017-04-20 18:36 ` Alexander Duyck
2017-04-20 19:07 ` Vlad Yasevich
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1492650743-28164-1-git-send-email-vyasevic@redhat.com \
--to=vyasevich@gmail.com \
--cc=mkubecek@suse.cz \
--cc=netdev@vger.kernel.org \
--cc=tom@herbertland.com \
--cc=vyasevic@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).