diff options
author | Ido Schimmel <idosch@nvidia.com> | 2022-12-06 11:58:09 +0100 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2022-12-08 05:05:52 +0100 |
commit | f86c3e2c1b5ea5c959ef176541c2f831231fa631 (patch) | |
tree | fc671a0d842ad12607d9bfa8f0b4749a87216234 /net/bridge/br_private.h | |
parent | bridge: mcast: Remove redundant function arguments (diff) | |
download | linux-f86c3e2c1b5ea5c959ef176541c2f831231fa631.tar.xz linux-f86c3e2c1b5ea5c959ef176541c2f831231fa631.zip |
bridge: mcast: Constify 'group' argument in br_multicast_new_port_group()
The 'group' argument is not modified, so mark it as 'const'. It will
allow us to constify arguments of the callers of this function in future
patches.
Signed-off-by: Ido Schimmel <idosch@nvidia.com>
Acked-by: Nikolay Aleksandrov <razor@blackwall.org>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'net/bridge/br_private.h')
-rw-r--r-- | net/bridge/br_private.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/bridge/br_private.h b/net/bridge/br_private.h index 0a09f10966dc..3997e16c15fc 100644 --- a/net/bridge/br_private.h +++ b/net/bridge/br_private.h @@ -941,7 +941,8 @@ br_mdb_ip_get(struct net_bridge *br, struct br_ip *dst); struct net_bridge_mdb_entry * br_multicast_new_group(struct net_bridge *br, struct br_ip *group); struct net_bridge_port_group * -br_multicast_new_port_group(struct net_bridge_port *port, struct br_ip *group, +br_multicast_new_port_group(struct net_bridge_port *port, + const struct br_ip *group, struct net_bridge_port_group __rcu *next, unsigned char flags, const unsigned char *src, u8 filter_mode, u8 rt_protocol); |