Message ID | 2db3f3f1eff65e42c92a8e3a5626d64f46e68edc.1667902754.git.petrm@nvidia.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 9c0ca02bace4837d123e1a5a30f6f44dbdc5fb92 |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | mlxsw: Add 802.1X and MAB offload support | expand |
Context | Check | Description |
---|---|---|
netdev/tree_selection | success | Clearly marked for net-next |
netdev/fixes_present | success | Fixes tag not required for -next series |
netdev/subject_prefix | success | Link |
netdev/cover_letter | success | Series has a cover letter |
netdev/patch_count | success | Link |
netdev/header_inline | success | No static functions without inline keyword in header files |
netdev/build_32bit | success | Errors and warnings before: 0 this patch: 0 |
netdev/cc_maintainers | success | CCed 8 of 8 maintainers |
netdev/build_clang | success | Errors and warnings before: 0 this patch: 0 |
netdev/module_param | success | Was 0 now: 0 |
netdev/verify_signedoff | success | Signed-off-by tag matches author and committer |
netdev/check_selftest | success | No net selftest shell script |
netdev/verify_fixes | success | No Fixes tag |
netdev/build_allmodconfig_warn | success | Errors and warnings before: 0 this patch: 0 |
netdev/checkpatch | success | total: 0 errors, 0 warnings, 0 checks, 8 lines checked |
netdev/kdoc | success | Errors and warnings before: 0 this patch: 0 |
netdev/source_inline | success | Was 0 now: 0 |
On Tue, Nov 08, 2022 at 11:47:09AM +0100, Petr Machata wrote: > From: Ido Schimmel <idosch@nvidia.com> > > Reflect the 'BR_PORT_MAB' flag to device drivers so that: > > * Drivers that support MAB could act upon the flag being toggled. > * Drivers that do not support MAB will prevent MAB from being enabled. > > Signed-off-by: Ido Schimmel <idosch@nvidia.com> > Reviewed-by: Petr Machata <petrm@nvidia.com> > Signed-off-by: Petr Machata <petrm@nvidia.com> > --- Reviewed-by: Vladimir Oltean <vladimir.oltean@nxp.com>
On 8 November 2022 06:47:09 GMT-04:00, Petr Machata <petrm@nvidia.com> wrote: >From: Ido Schimmel <idosch@nvidia.com> > >Reflect the 'BR_PORT_MAB' flag to device drivers so that: > >* Drivers that support MAB could act upon the flag being toggled. >* Drivers that do not support MAB will prevent MAB from being enabled. > >Signed-off-by: Ido Schimmel <idosch@nvidia.com> >Reviewed-by: Petr Machata <petrm@nvidia.com> >Signed-off-by: Petr Machata <petrm@nvidia.com> >--- > >Notes: > v1: > * New patch. > > net/bridge/br_switchdev.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > Acked-by: Nikolay Aleksandrov <razor@blackwall.org> >diff --git a/net/bridge/br_switchdev.c b/net/bridge/br_switchdev.c >index 8a0abe35137d..7eb6fd5bb917 100644 >--- a/net/bridge/br_switchdev.c >+++ b/net/bridge/br_switchdev.c >@@ -71,7 +71,7 @@ bool nbp_switchdev_allowed_egress(const struct net_bridge_port *p, > } > > /* Flags that can be offloaded to hardware */ >-#define BR_PORT_FLAGS_HW_OFFLOAD (BR_LEARNING | BR_FLOOD | \ >+#define BR_PORT_FLAGS_HW_OFFLOAD (BR_LEARNING | BR_FLOOD | BR_PORT_MAB | \ > BR_MCAST_FLOOD | BR_BCAST_FLOOD | BR_PORT_LOCKED | \ > BR_HAIRPIN_MODE | BR_ISOLATED | BR_MULTICAST_TO_UNICAST) >
diff --git a/net/bridge/br_switchdev.c b/net/bridge/br_switchdev.c index 8a0abe35137d..7eb6fd5bb917 100644 --- a/net/bridge/br_switchdev.c +++ b/net/bridge/br_switchdev.c @@ -71,7 +71,7 @@ bool nbp_switchdev_allowed_egress(const struct net_bridge_port *p, } /* Flags that can be offloaded to hardware */ -#define BR_PORT_FLAGS_HW_OFFLOAD (BR_LEARNING | BR_FLOOD | \ +#define BR_PORT_FLAGS_HW_OFFLOAD (BR_LEARNING | BR_FLOOD | BR_PORT_MAB | \ BR_MCAST_FLOOD | BR_BCAST_FLOOD | BR_PORT_LOCKED | \ BR_HAIRPIN_MODE | BR_ISOLATED | BR_MULTICAST_TO_UNICAST)