Commit b80edf0b authored by Joe Perches's avatar Joe Perches Committed by Pablo Neira Ayuso

netfilter: Convert uses of __constant_<foo> to <foo>

The use of __constant_<foo> has been unnecessary for quite awhile now.

Make these uses consistent with the rest of the kernel.
Signed-off-by: default avatarJoe Perches <joe@perches.com>
Acked-by: default avatarJozsef Kadlecsik <kadlec@blackhole.kfki.hu>
Signed-off-by: default avatarPablo Neira Ayuso <pablo@netfilter.org>
parent 14e1a977
...@@ -7,8 +7,8 @@ ...@@ -7,8 +7,8 @@
#define E(a, b, c, d) \ #define E(a, b, c, d) \
{.ip6 = { \ {.ip6 = { \
__constant_htonl(a), __constant_htonl(b), \ htonl(a), htonl(b), \
__constant_htonl(c), __constant_htonl(d), \ htonl(c), htonl(d), \
} } } }
/* /*
......
...@@ -146,11 +146,11 @@ audit_tg(struct sk_buff *skb, const struct xt_action_param *par) ...@@ -146,11 +146,11 @@ audit_tg(struct sk_buff *skb, const struct xt_action_param *par)
if (par->family == NFPROTO_BRIDGE) { if (par->family == NFPROTO_BRIDGE) {
switch (eth_hdr(skb)->h_proto) { switch (eth_hdr(skb)->h_proto) {
case __constant_htons(ETH_P_IP): case htons(ETH_P_IP):
audit_ip4(ab, skb); audit_ip4(ab, skb);
break; break;
case __constant_htons(ETH_P_IPV6): case htons(ETH_P_IPV6):
audit_ip6(ab, skb); audit_ip6(ab, skb);
break; break;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment