netfilter: bridge: use NFPROTO values for NF_HOOK invocation
The first argument to NF_HOOK* is an nfproto since quite some time.
Commit v2.6.27-2457-gfdc9314 was the first to practically start using
the new names. Do that now for the remaining NF_HOOK calls.
The semantic patch used was:
// <smpl>
@@
@@
(NF_HOOK
|NF_HOOK_THRESH
)(
-PF_BRIDGE,
+NFPROTO_BRIDGE,
...)
@@
@@
NF_HOOK(
-PF_INET6,
+NFPROTO_IPV6,
...)
@@
@@
NF_HOOK(
-PF_INET,
+NFPROTO_IPV4,
...)
// </smpl>
Signed-off-by:
Jan Engelhardt <jengelh@medozas.de>
Showing
- net/bridge/br_forward.c 5 additions, 5 deletionsnet/bridge/br_forward.c
- net/bridge/br_input.c 3 additions, 3 deletionsnet/bridge/br_input.c
- net/bridge/br_multicast.c 1 addition, 1 deletionnet/bridge/br_multicast.c
- net/bridge/br_netfilter.c 8 additions, 7 deletionsnet/bridge/br_netfilter.c
- net/bridge/br_stp_bpdu.c 1 addition, 1 deletionnet/bridge/br_stp_bpdu.c
Loading
Please register or sign in to comment