[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1416610170-21224-3-git-send-email-roopa@cumulusnetworks.com>
Date: Fri, 21 Nov 2014 14:49:28 -0800
From: roopa@...ulusnetworks.com
To: jiri@...nulli.us, sfeldma@...il.com, jhs@...atatu.com,
bcrl@...ck.org, tgraf@...g.ch, john.fastabend@...il.com,
stephen@...workplumber.org, linville@...driver.com,
nhorman@...driver.com, nicolas.dichtel@...nd.com,
vyasevic@...hat.com, f.fainelli@...il.com, buytenh@...tstofly.org,
aviadr@...lanox.com
Cc: netdev@...r.kernel.org, davem@...emloft.net,
shrijeet@...ulusnetworks.com, gospo@...ulusnetworks.com,
Roopa Prabhu <roopa@...ulusnetworks.com>
Subject: [RFC PATCH 2/4] netdev: new feature flag NETIF_F_HW_OFFLOAD to indicate netdev object offload to hardware
From: Roopa Prabhu <roopa@...ulusnetworks.com>
This patch adds a new NETIF_F_HW_OFFLOAD feature flag to offload logical
interfaces to hw.
Useful in cases of bridges, bonds etc where you want to offload the
logical interface attributes to hw.
---
include/linux/netdev_features.h | 1 +
net/core/rtnetlink.c | 7 +++++++
2 files changed, 8 insertions(+)
diff --git a/include/linux/netdev_features.h b/include/linux/netdev_features.h
index 8e30685..09da213 100644
--- a/include/linux/netdev_features.h
+++ b/include/linux/netdev_features.h
@@ -66,6 +66,7 @@ enum {
NETIF_F_HW_VLAN_STAG_FILTER_BIT,/* Receive filtering on VLAN STAGs */
NETIF_F_HW_L2FW_DOFFLOAD_BIT, /* Allow L2 Forwarding in Hardware */
NETIF_F_BUSY_POLL_BIT, /* Busy poll */
+ NETIF_F_HW_OFFLOAD, /* generic hw offload */
/*
* Add your fresh new feature above and remember to update
diff --git a/net/core/rtnetlink.c b/net/core/rtnetlink.c
index f839354..97b8f48 100644
--- a/net/core/rtnetlink.c
+++ b/net/core/rtnetlink.c
@@ -2106,6 +2106,13 @@ replay:
goto out;
}
+ /*
+ * If the newlink request came in with a HW_OFFLOAD
+ * flag, then set hw offload feature flag
+ */
+ if (nlh->nlmsg_flags & NLM_F_HW_OFFLOAD)
+ dev->features |= NETIF_F_HW_OFFLOAD;
+
dev->ifindex = ifm->ifi_index;
if (ops->newlink) {
--
1.7.10.4
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists