aboutsummaryrefslogtreecommitdiffstats
path: root/net/bridge
diff options
context:
space:
mode:
authorNikolay Aleksandrov <nikolay@cumulusnetworks.com>2016-08-17 12:53:10 +0200
committerDavid S. Miller <davem@davemloft.net>2016-08-18 23:18:42 -0700
commit61ba1a2da9693b88bf5f2bb8e7a99a29cd139122 (patch)
tree72e93abc50fa837e1e73b0a4601c84ef5ebe10a8 /net/bridge
parentnet: bridge: consolidate bridge and port linkxstats calls (diff)
downloadlinux-dev-61ba1a2da9693b88bf5f2bb8e7a99a29cd139122.tar.xz
linux-dev-61ba1a2da9693b88bf5f2bb8e7a99a29cd139122.zip
net: bridge: export vlan flags with the stats
Use one of the vlan xstats padding fields to export the vlan flags. This is needed in order to be able to distinguish between master (bridge) and port vlan entries in user-space when dumping the bridge vlan stats. Signed-off-by: Nikolay Aleksandrov <nikolay@cumulusnetworks.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/bridge')
-rw-r--r--net/bridge/br_netlink.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/bridge/br_netlink.c b/net/bridge/br_netlink.c
index 493ab9b3d51a..872d4c0deb59 100644
--- a/net/bridge/br_netlink.c
+++ b/net/bridge/br_netlink.c
@@ -1321,6 +1321,7 @@ static int br_fill_linkxstats(struct sk_buff *skb,
continue;
memset(&vxi, 0, sizeof(vxi));
vxi.vid = v->vid;
+ vxi.flags = v->flags;
br_vlan_get_stats(v, &stats);
vxi.rx_bytes = stats.rx_bytes;
vxi.rx_packets = stats.rx_packets;