[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1416610170-21224-2-git-send-email-roopa@cumulusnetworks.com>
Date: Fri, 21 Nov 2014 14:49:27 -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 1/4] rtnetlink: new flag NLM_F_HW_OFFLOAD to indicate kernel object offload to hardware
From: Roopa Prabhu <roopa@...ulusnetworks.com>
This patch adds new flags in netlink header nlmsg_flags to signal if the
message is for the kernel, hw or both.
This can be used to indicate hw offload for all kind of objects
routes, fdb entries, neighs, link objects like bonds, bridges, vxlan.
Adding it in the header makes it possible to use it accross all objects and
across all messages (sets/gets/deletes).
Other alternative to this is a per kernel object netlink attribute/flag.
But that leads to duplicating the attribute in different subsystems.
Signed-off-by: Roopa Prabhu <roopa@...ulusnetworks.com>
---
include/uapi/linux/netlink.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/include/uapi/linux/netlink.h b/include/uapi/linux/netlink.h
index 1a85940..f78522d 100644
--- a/include/uapi/linux/netlink.h
+++ b/include/uapi/linux/netlink.h
@@ -54,6 +54,8 @@ struct nlmsghdr {
#define NLM_F_ACK 4 /* Reply with ack, with zero or error code */
#define NLM_F_ECHO 8 /* Echo this request */
#define NLM_F_DUMP_INTR 16 /* Dump was inconsistent due to sequence change */
++#define NLM_F_KERNEL 32 /* This msg is only for the kernel */
+#define NLM_F_HW_OFFLOAD 64 /* offload this msg to hw */
/* Modifiers to GET request */
#define NLM_F_ROOT 0x100 /* specify tree root */
--
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