net: dsa: add port fdb dump
Dumping a DSA port's FDB entries is not specific to a DSA slave, so add a dsa_port_fdb_dump function, similarly to dsa_port_fdb_add and dsa_port_fdb_del. Signed-off-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com> Reviewed-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
4fa7b71888
commit
de40fc5d21
@@ -173,6 +173,17 @@ int dsa_port_fdb_del(struct dsa_port *dp, const unsigned char *addr,
|
||||
return dsa_port_notify(dp, DSA_NOTIFIER_FDB_DEL, &info);
|
||||
}
|
||||
|
||||
int dsa_port_fdb_dump(struct dsa_port *dp, dsa_fdb_dump_cb_t *cb, void *data)
|
||||
{
|
||||
struct dsa_switch *ds = dp->ds;
|
||||
int port = dp->index;
|
||||
|
||||
if (!ds->ops->port_fdb_dump)
|
||||
return -EOPNOTSUPP;
|
||||
|
||||
return ds->ops->port_fdb_dump(ds, port, cb, data);
|
||||
}
|
||||
|
||||
int dsa_port_mdb_add(struct dsa_port *dp,
|
||||
const struct switchdev_obj_port_mdb *mdb,
|
||||
struct switchdev_trans *trans)
|
||||
|
Reference in New Issue
Block a user