|
@@ -17,7 +17,7 @@
|
|
|
|
|
|
#include "dsa_priv.h"
|
|
#include "dsa_priv.h"
|
|
|
|
|
|
-static int dsa_port_notify(struct dsa_port *dp, unsigned long e, void *v)
|
|
|
|
|
|
+static int dsa_port_notify(const struct dsa_port *dp, unsigned long e, void *v)
|
|
{
|
|
{
|
|
struct raw_notifier_head *nh = &dp->ds->dst->nh;
|
|
struct raw_notifier_head *nh = &dp->ds->dst->nh;
|
|
int err;
|
|
int err;
|
|
@@ -215,7 +215,7 @@ int dsa_port_fdb_dump(struct dsa_port *dp, dsa_fdb_dump_cb_t *cb, void *data)
|
|
return ds->ops->port_fdb_dump(ds, port, cb, data);
|
|
return ds->ops->port_fdb_dump(ds, port, cb, data);
|
|
}
|
|
}
|
|
|
|
|
|
-int dsa_port_mdb_add(struct dsa_port *dp,
|
|
|
|
|
|
+int dsa_port_mdb_add(const 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)
|
|
{
|
|
{
|
|
@@ -229,7 +229,7 @@ int dsa_port_mdb_add(struct dsa_port *dp,
|
|
return dsa_port_notify(dp, DSA_NOTIFIER_MDB_ADD, &info);
|
|
return dsa_port_notify(dp, DSA_NOTIFIER_MDB_ADD, &info);
|
|
}
|
|
}
|
|
|
|
|
|
-int dsa_port_mdb_del(struct dsa_port *dp,
|
|
|
|
|
|
+int dsa_port_mdb_del(const struct dsa_port *dp,
|
|
const struct switchdev_obj_port_mdb *mdb)
|
|
const struct switchdev_obj_port_mdb *mdb)
|
|
{
|
|
{
|
|
struct dsa_notifier_mdb_info info = {
|
|
struct dsa_notifier_mdb_info info = {
|