summaryrefslogtreecommitdiffstats
path: root/net/ipv4/ipvs/ip_vs_proto.c
diff options
context:
space:
mode:
authorBrian Haley <brian.haley@hp.com>2008-09-16 17:11:11 +0200
committerSimon Horman <horms@verge.net.au>2008-09-17 02:13:17 +0200
commitd286600e199aa2f1058a1f883d234e73626304d2 (patch)
treea84436fb4b5d5fa62810bce573125a21db785970 /net/ipv4/ipvs/ip_vs_proto.c
parentipvs: add __aquire/__release annotations to ip_vs_info_seq_start/ip_vs_info_s... (diff)
downloadlinux-d286600e199aa2f1058a1f883d234e73626304d2.tar.xz
linux-d286600e199aa2f1058a1f883d234e73626304d2.zip
ipvs: change some __constant_htons() to htons()
Change __contant_htons() to htons() in the IPVS code when not in an initializer. -Brian Signed-off-by: Brian Haley <brian.haley@hp.com> Acked-by: Julius Volz <juliusv@google.com> Signed-off-by: Simon Horman <horms@verge.net.au>
Diffstat (limited to 'net/ipv4/ipvs/ip_vs_proto.c')
-rw-r--r--net/ipv4/ipvs/ip_vs_proto.c2
1 files changed, 1 insertions, 1 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,
const char *msg)
{
#ifdef CONFIG_IP_VS_IPV6
- if (skb->protocol == __constant_htons(ETH_P_IPV6))
+ if (skb->protocol == htons(ETH_P_IPV6))
ip_vs_tcpudp_debug_packet_v6(pp, skb, offset, msg);
else
#endif