[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1428905838-14920-8-git-send-email-sfeldma@gmail.com>
Date: Sun, 12 Apr 2015 23:17:01 -0700
From: sfeldma@...il.com
To: netdev@...r.kernel.org
Cc: jiri@...nulli.us, roopa@...ulusnetworks.com, linux@...ck-us.net,
f.fainelli@...il.com, sridhar.samudrala@...el.com,
ronen.arad@...el.com, andrew@...n.ch
Subject: [PATCH net-next v4 07/24] switchdev: add port vlan obj
From: Scott Feldman <sfeldma@...il.com>
VLAN obj has flags (PVID and untagged) as well as start and end vid ranges.
The swdev driver can optimize programing the device using the ranges.
Signed-off-by: Scott Feldman <sfeldma@...il.com>
---
include/net/switchdev.h | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/include/net/switchdev.h b/include/net/switchdev.h
index f5f7733..d3cc8eb 100644
--- a/include/net/switchdev.h
+++ b/include/net/switchdev.h
@@ -45,12 +45,20 @@ struct fib_info;
enum swdev_obj_id {
SWDEV_OBJ_UNDEFINED,
+ SWDEV_OBJ_PORT_VLAN,
};
struct swdev_obj {
enum swdev_obj_id id;
enum swdev_trans trans;
u32 flags;
+ union {
+ struct swdev_obj_vlan { /* PORT_VLAN */
+ u16 flags;
+ u16 vid_start;
+ u16 vid_end;
+ } vlan;
+ };
};
/**
--
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