diff options
author | Roopa Prabhu <roopa@cumulusnetworks.com> | 2018-12-16 09:35:08 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-12-17 01:42:34 +0300 |
commit | 5b2f94b27622d5b92d1cebf4bb5a627db4444607 (patch) | |
tree | 98499d4afc787bbebcffd0b6c708d314e3ce63b1 /include/linux/netdevice.h | |
parent | 5312b93b04208bb055a2ee1fd6c8617905d8b330 (diff) | |
download | linux-5b2f94b27622d5b92d1cebf4bb5a627db4444607.tar.xz |
net: rtnetlink: support for fdb get
This patch adds support for fdb get similar to
route get. arguments can be any of the following (similar to fdb add/del/dump):
[bridge, mac, vlan] or
[bridge_port, mac, vlan, flags=[NTF_MASTER]] or
[dev, mac, [vni|vlan], flags=[NTF_SELF]]
Signed-off-by: Roopa Prabhu <roopa@cumulusnetworks.com>
Reviewed-by: David Ahern <dsa@cumulusnetworks.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/netdevice.h')
-rw-r--r-- | include/linux/netdevice.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index 811632d4d8b1..1377d085ef99 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h @@ -1387,7 +1387,12 @@ struct net_device_ops { struct net_device *dev, struct net_device *filter_dev, int *idx); - + int (*ndo_fdb_get)(struct sk_buff *skb, + struct nlattr *tb[], + struct net_device *dev, + const unsigned char *addr, + u16 vid, u32 portid, u32 seq, + struct netlink_ext_ack *extack); int (*ndo_bridge_setlink)(struct net_device *dev, struct nlmsghdr *nlh, u16 flags, |