diff options
-rw-r--r-- | net/ipv4/ipvs/ip_vs_proto.c | 2 | ||||
-rw-r--r-- | net/ipv4/ipvs/ip_vs_proto_ah_esp.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv4/ipvs/ip_vs_proto.c b/net/ipv4/ipvs/ip_vs_proto.c index b06da1c3445a..0791f9e08feb 100644 --- a/net/ipv4/ipvs/ip_vs_proto.c +++ b/net/ipv4/ipvs/ip_vs_proto.c | |||
@@ -237,7 +237,7 @@ ip_vs_tcpudp_debug_packet(struct ip_vs_protocol *pp, | |||
237 | const char *msg) | 237 | const char *msg) |
238 | { | 238 | { |
239 | #ifdef CONFIG_IP_VS_IPV6 | 239 | #ifdef CONFIG_IP_VS_IPV6 |
240 | if (skb->protocol == __constant_htons(ETH_P_IPV6)) | 240 | if (skb->protocol == htons(ETH_P_IPV6)) |
241 | ip_vs_tcpudp_debug_packet_v6(pp, skb, offset, msg); | 241 | ip_vs_tcpudp_debug_packet_v6(pp, skb, offset, msg); |
242 | else | 242 | else |
243 | #endif | 243 | #endif |
diff --git a/net/ipv4/ipvs/ip_vs_proto_ah_esp.c b/net/ipv4/ipvs/ip_vs_proto_ah_esp.c index 2b18a78d0399..80ab0c8e5b4a 100644 --- a/net/ipv4/ipvs/ip_vs_proto_ah_esp.c +++ b/net/ipv4/ipvs/ip_vs_proto_ah_esp.c | |||
@@ -167,7 +167,7 @@ ah_esp_debug_packet(struct ip_vs_protocol *pp, const struct sk_buff *skb, | |||
167 | int offset, const char *msg) | 167 | int offset, const char *msg) |
168 | { | 168 | { |
169 | #ifdef CONFIG_IP_VS_IPV6 | 169 | #ifdef CONFIG_IP_VS_IPV6 |
170 | if (skb->protocol == __constant_htons(ETH_P_IPV6)) | 170 | if (skb->protocol == htons(ETH_P_IPV6)) |
171 | ah_esp_debug_packet_v6(pp, skb, offset, msg); | 171 | ah_esp_debug_packet_v6(pp, skb, offset, msg); |
172 | else | 172 | else |
173 | #endif | 173 | #endif |