net: dsa: add MDB notifier
Add two new DSA_NOTIFIER_MDB_ADD and DSA_NOTIFIER_MDB_DEL events to notify not only a single switch, but all switches of a the fabric when an MDB entry is added or removed. For the moment, keep the current behavior and ignore other switches. 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:
parent
685fb6a40d
commit
8ae5bcdc5d
|
@ -22,6 +22,8 @@ enum {
|
||||||
DSA_NOTIFIER_BRIDGE_LEAVE,
|
DSA_NOTIFIER_BRIDGE_LEAVE,
|
||||||
DSA_NOTIFIER_FDB_ADD,
|
DSA_NOTIFIER_FDB_ADD,
|
||||||
DSA_NOTIFIER_FDB_DEL,
|
DSA_NOTIFIER_FDB_DEL,
|
||||||
|
DSA_NOTIFIER_MDB_ADD,
|
||||||
|
DSA_NOTIFIER_MDB_DEL,
|
||||||
};
|
};
|
||||||
|
|
||||||
/* DSA_NOTIFIER_AGEING_TIME */
|
/* DSA_NOTIFIER_AGEING_TIME */
|
||||||
|
@ -46,6 +48,14 @@ struct dsa_notifier_fdb_info {
|
||||||
int port;
|
int port;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/* DSA_NOTIFIER_MDB_* */
|
||||||
|
struct dsa_notifier_mdb_info {
|
||||||
|
const struct switchdev_obj_port_mdb *mdb;
|
||||||
|
struct switchdev_trans *trans;
|
||||||
|
int sw_index;
|
||||||
|
int port;
|
||||||
|
};
|
||||||
|
|
||||||
struct dsa_device_ops {
|
struct dsa_device_ops {
|
||||||
struct sk_buff *(*xmit)(struct sk_buff *skb, struct net_device *dev);
|
struct sk_buff *(*xmit)(struct sk_buff *skb, struct net_device *dev);
|
||||||
struct sk_buff *(*rcv)(struct sk_buff *skb, struct net_device *dev,
|
struct sk_buff *(*rcv)(struct sk_buff *skb, struct net_device *dev,
|
||||||
|
|
|
@ -188,29 +188,26 @@ int dsa_port_mdb_add(struct dsa_port *dp,
|
||||||
const struct switchdev_obj_port_mdb *mdb,
|
const struct switchdev_obj_port_mdb *mdb,
|
||||||
struct switchdev_trans *trans)
|
struct switchdev_trans *trans)
|
||||||
{
|
{
|
||||||
struct dsa_switch *ds = dp->ds;
|
struct dsa_notifier_mdb_info info = {
|
||||||
|
.sw_index = dp->ds->index,
|
||||||
|
.port = dp->index,
|
||||||
|
.trans = trans,
|
||||||
|
.mdb = mdb,
|
||||||
|
};
|
||||||
|
|
||||||
if (switchdev_trans_ph_prepare(trans)) {
|
return dsa_port_notify(dp, DSA_NOTIFIER_MDB_ADD, &info);
|
||||||
if (!ds->ops->port_mdb_prepare || !ds->ops->port_mdb_add)
|
|
||||||
return -EOPNOTSUPP;
|
|
||||||
|
|
||||||
return ds->ops->port_mdb_prepare(ds, dp->index, mdb, trans);
|
|
||||||
}
|
|
||||||
|
|
||||||
ds->ops->port_mdb_add(ds, dp->index, mdb, trans);
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int dsa_port_mdb_del(struct dsa_port *dp,
|
int dsa_port_mdb_del(struct dsa_port *dp,
|
||||||
const struct switchdev_obj_port_mdb *mdb)
|
const struct switchdev_obj_port_mdb *mdb)
|
||||||
{
|
{
|
||||||
struct dsa_switch *ds = dp->ds;
|
struct dsa_notifier_mdb_info info = {
|
||||||
|
.sw_index = dp->ds->index,
|
||||||
|
.port = dp->index,
|
||||||
|
.mdb = mdb,
|
||||||
|
};
|
||||||
|
|
||||||
if (ds->ops->port_mdb_del)
|
return dsa_port_notify(dp, DSA_NOTIFIER_MDB_DEL, &info);
|
||||||
return ds->ops->port_mdb_del(ds, dp->index, mdb);
|
|
||||||
|
|
||||||
return -EOPNOTSUPP;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int dsa_port_mdb_dump(struct dsa_port *dp, struct switchdev_obj_port_mdb *mdb,
|
int dsa_port_mdb_dump(struct dsa_port *dp, struct switchdev_obj_port_mdb *mdb,
|
||||||
|
|
|
@ -121,6 +121,43 @@ static int dsa_switch_fdb_del(struct dsa_switch *ds,
|
||||||
return ds->ops->port_fdb_del(ds, info->port, fdb);
|
return ds->ops->port_fdb_del(ds, info->port, fdb);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int dsa_switch_mdb_add(struct dsa_switch *ds,
|
||||||
|
struct dsa_notifier_mdb_info *info)
|
||||||
|
{
|
||||||
|
const struct switchdev_obj_port_mdb *mdb = info->mdb;
|
||||||
|
struct switchdev_trans *trans = info->trans;
|
||||||
|
|
||||||
|
/* Do not care yet about other switch chips of the fabric */
|
||||||
|
if (ds->index != info->sw_index)
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
if (switchdev_trans_ph_prepare(trans)) {
|
||||||
|
if (!ds->ops->port_mdb_prepare || !ds->ops->port_mdb_add)
|
||||||
|
return -EOPNOTSUPP;
|
||||||
|
|
||||||
|
return ds->ops->port_mdb_prepare(ds, info->port, mdb, trans);
|
||||||
|
}
|
||||||
|
|
||||||
|
ds->ops->port_mdb_add(ds, info->port, mdb, trans);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int dsa_switch_mdb_del(struct dsa_switch *ds,
|
||||||
|
struct dsa_notifier_mdb_info *info)
|
||||||
|
{
|
||||||
|
const struct switchdev_obj_port_mdb *mdb = info->mdb;
|
||||||
|
|
||||||
|
/* Do not care yet about other switch chips of the fabric */
|
||||||
|
if (ds->index != info->sw_index)
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
if (!ds->ops->port_mdb_del)
|
||||||
|
return -EOPNOTSUPP;
|
||||||
|
|
||||||
|
return ds->ops->port_mdb_del(ds, info->port, mdb);
|
||||||
|
}
|
||||||
|
|
||||||
static int dsa_switch_event(struct notifier_block *nb,
|
static int dsa_switch_event(struct notifier_block *nb,
|
||||||
unsigned long event, void *info)
|
unsigned long event, void *info)
|
||||||
{
|
{
|
||||||
|
@ -143,6 +180,12 @@ static int dsa_switch_event(struct notifier_block *nb,
|
||||||
case DSA_NOTIFIER_FDB_DEL:
|
case DSA_NOTIFIER_FDB_DEL:
|
||||||
err = dsa_switch_fdb_del(ds, info);
|
err = dsa_switch_fdb_del(ds, info);
|
||||||
break;
|
break;
|
||||||
|
case DSA_NOTIFIER_MDB_ADD:
|
||||||
|
err = dsa_switch_mdb_add(ds, info);
|
||||||
|
break;
|
||||||
|
case DSA_NOTIFIER_MDB_DEL:
|
||||||
|
err = dsa_switch_mdb_del(ds, info);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
err = -EOPNOTSUPP;
|
err = -EOPNOTSUPP;
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue