Re: [PATCH net-next v4 2/2] net: dsa: mxl862xx: implement bridge offloading
From: Daniel Golle
Date: Fri Mar 13 2026 - 00:03:11 EST
On Thu, Mar 12, 2026 at 03:33:30AM +0000, Daniel Golle wrote:
> Add support for bridge offloading on the mxl862xx DSA driver.
> +static int mxl862xx_port_mdb_add(struct dsa_switch *ds, int port,
> + const struct switchdev_obj_port_mdb *mdb,
> + struct dsa_db db)
> +{
> + return mxl862xx_port_fdb_add(ds, port, mdb->addr, mdb->vid, db);
> +}
> +
> +static int mxl862xx_port_mdb_del(struct dsa_switch *ds, int port,
> + const struct switchdev_obj_port_mdb *mdb,
> + struct dsa_db db)
> +{
> + return mxl862xx_port_fdb_del(ds, port, mdb->addr, mdb->vid, db);
> +}
The .port_mdb_* functions were left-overs from my previous experiments
and should not have been part of the submitted series. I've noticed that
only now. Apart from that this patch is ready for review imho, so I won't
send any new version at this point until receiving more feedback.