net: bridge: switchdev: refactor br_switchdev_fdb_notify
Instead of having to add more and more arguments to br_switchdev_fdb_call_notifiers, get rid of it and build the info struct directly in br_switchdev_fdb_notify. Signed-off-by: Tobias Waldekranz <tobias@waldekranz.com> Reviewed-by: Vladimir Oltean <vladimir.oltean@nxp.com> Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com> Reviewed-by: Ido Schimmel <idosch@nvidia.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
e7ad33fa7b
commit
e5b4b8988b
|
@ -107,25 +107,16 @@ int br_switchdev_set_port_flag(struct net_bridge_port *p,
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
|
||||||
br_switchdev_fdb_call_notifiers(bool adding, const unsigned char *mac,
|
|
||||||
u16 vid, struct net_device *dev,
|
|
||||||
bool added_by_user, bool offloaded)
|
|
||||||
{
|
|
||||||
struct switchdev_notifier_fdb_info info;
|
|
||||||
unsigned long notifier_type;
|
|
||||||
|
|
||||||
info.addr = mac;
|
|
||||||
info.vid = vid;
|
|
||||||
info.added_by_user = added_by_user;
|
|
||||||
info.offloaded = offloaded;
|
|
||||||
notifier_type = adding ? SWITCHDEV_FDB_ADD_TO_DEVICE : SWITCHDEV_FDB_DEL_TO_DEVICE;
|
|
||||||
call_switchdev_notifiers(notifier_type, dev, &info.info, NULL);
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
void
|
||||||
br_switchdev_fdb_notify(const struct net_bridge_fdb_entry *fdb, int type)
|
br_switchdev_fdb_notify(const struct net_bridge_fdb_entry *fdb, int type)
|
||||||
{
|
{
|
||||||
|
struct switchdev_notifier_fdb_info info = {
|
||||||
|
.addr = fdb->key.addr.addr,
|
||||||
|
.vid = fdb->key.vlan_id,
|
||||||
|
.added_by_user = test_bit(BR_FDB_ADDED_BY_USER, &fdb->flags),
|
||||||
|
.offloaded = test_bit(BR_FDB_OFFLOADED, &fdb->flags),
|
||||||
|
};
|
||||||
|
|
||||||
if (!fdb->dst)
|
if (!fdb->dst)
|
||||||
return;
|
return;
|
||||||
if (test_bit(BR_FDB_LOCAL, &fdb->flags))
|
if (test_bit(BR_FDB_LOCAL, &fdb->flags))
|
||||||
|
@ -133,22 +124,12 @@ br_switchdev_fdb_notify(const struct net_bridge_fdb_entry *fdb, int type)
|
||||||
|
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case RTM_DELNEIGH:
|
case RTM_DELNEIGH:
|
||||||
br_switchdev_fdb_call_notifiers(false, fdb->key.addr.addr,
|
call_switchdev_notifiers(SWITCHDEV_FDB_DEL_TO_DEVICE,
|
||||||
fdb->key.vlan_id,
|
fdb->dst->dev, &info.info, NULL);
|
||||||
fdb->dst->dev,
|
|
||||||
test_bit(BR_FDB_ADDED_BY_USER,
|
|
||||||
&fdb->flags),
|
|
||||||
test_bit(BR_FDB_OFFLOADED,
|
|
||||||
&fdb->flags));
|
|
||||||
break;
|
break;
|
||||||
case RTM_NEWNEIGH:
|
case RTM_NEWNEIGH:
|
||||||
br_switchdev_fdb_call_notifiers(true, fdb->key.addr.addr,
|
call_switchdev_notifiers(SWITCHDEV_FDB_ADD_TO_DEVICE,
|
||||||
fdb->key.vlan_id,
|
fdb->dst->dev, &info.info, NULL);
|
||||||
fdb->dst->dev,
|
|
||||||
test_bit(BR_FDB_ADDED_BY_USER,
|
|
||||||
&fdb->flags),
|
|
||||||
test_bit(BR_FDB_OFFLOADED,
|
|
||||||
&fdb->flags));
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue