mirror of https://gitee.com/openkylin/linux.git
bridge: mdb: Common function for mdb entry translation
There is duplicate code that translates br_mdb_entry to br_ip let's wrap it in a common function. Signed-off-by: Elad Raz <eladr@mellanox.com> Signed-off-by: Jiri Pirko <jiri@mellanox.com> Reviewed-by: Ido Schimmel <idosch@mellanox.com> Acked-by: Nikolay Aleksandrov <nikolay@cumulusnetworks.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
7ceb2afbd6
commit
6dd684c0fe
|
@ -61,6 +61,19 @@ static void __mdb_entry_fill_flags(struct br_mdb_entry *e, unsigned char flags)
|
||||||
e->flags |= MDB_FLAGS_OFFLOAD;
|
e->flags |= MDB_FLAGS_OFFLOAD;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void __mdb_entry_to_br_ip(struct br_mdb_entry *entry, struct br_ip *ip)
|
||||||
|
{
|
||||||
|
memset(ip, 0, sizeof(struct br_ip));
|
||||||
|
ip->vid = entry->vid;
|
||||||
|
ip->proto = entry->addr.proto;
|
||||||
|
if (ip->proto == htons(ETH_P_IP))
|
||||||
|
ip->u.ip4 = entry->addr.u.ip4;
|
||||||
|
#if IS_ENABLED(CONFIG_IPV6)
|
||||||
|
else
|
||||||
|
ip->u.ip6 = entry->addr.u.ip6;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
static int br_mdb_fill_info(struct sk_buff *skb, struct netlink_callback *cb,
|
static int br_mdb_fill_info(struct sk_buff *skb, struct netlink_callback *cb,
|
||||||
struct net_device *dev)
|
struct net_device *dev)
|
||||||
{
|
{
|
||||||
|
@ -509,15 +522,7 @@ static int __br_mdb_add(struct net *net, struct net_bridge *br,
|
||||||
if (!p || p->br != br || p->state == BR_STATE_DISABLED)
|
if (!p || p->br != br || p->state == BR_STATE_DISABLED)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
memset(&ip, 0, sizeof(ip));
|
__mdb_entry_to_br_ip(entry, &ip);
|
||||||
ip.vid = entry->vid;
|
|
||||||
ip.proto = entry->addr.proto;
|
|
||||||
if (ip.proto == htons(ETH_P_IP))
|
|
||||||
ip.u.ip4 = entry->addr.u.ip4;
|
|
||||||
#if IS_ENABLED(CONFIG_IPV6)
|
|
||||||
else
|
|
||||||
ip.u.ip6 = entry->addr.u.ip6;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
spin_lock_bh(&br->multicast_lock);
|
spin_lock_bh(&br->multicast_lock);
|
||||||
ret = br_mdb_add_group(br, p, &ip, entry->state, pg);
|
ret = br_mdb_add_group(br, p, &ip, entry->state, pg);
|
||||||
|
@ -584,15 +589,7 @@ static int __br_mdb_del(struct net_bridge *br, struct br_mdb_entry *entry)
|
||||||
if (!netif_running(br->dev) || br->multicast_disabled)
|
if (!netif_running(br->dev) || br->multicast_disabled)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
memset(&ip, 0, sizeof(ip));
|
__mdb_entry_to_br_ip(entry, &ip);
|
||||||
ip.vid = entry->vid;
|
|
||||||
ip.proto = entry->addr.proto;
|
|
||||||
if (ip.proto == htons(ETH_P_IP))
|
|
||||||
ip.u.ip4 = entry->addr.u.ip4;
|
|
||||||
#if IS_ENABLED(CONFIG_IPV6)
|
|
||||||
else
|
|
||||||
ip.u.ip6 = entry->addr.u.ip6;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
spin_lock_bh(&br->multicast_lock);
|
spin_lock_bh(&br->multicast_lock);
|
||||||
mdb = mlock_dereference(br->mdb, br);
|
mdb = mlock_dereference(br->mdb, br);
|
||||||
|
|
Loading…
Reference in New Issue