diff options
author | stephen hemminger <shemminger@vyatta.com> | 2012-10-01 01:21:14 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-10-01 17:35:31 -0400 |
commit | 9fbef059d63cbc3249a3ddfd9a12cb511c8be55e (patch) | |
tree | fe01d23f12e8292a1c9684e806e03a6524185774 /net/ipv4 | |
parent | 66dc81ecd71332783c92fb170950d5ddb43da461 (diff) |
gre: fix sparse warning
Use be16 consistently when looking at flags.
Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4')
-rw-r--r-- | net/ipv4/ip_gre.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv4/ip_gre.c b/net/ipv4/ip_gre.c index b1871d993d22..7240f8e2dd45 100644 --- a/net/ipv4/ip_gre.c +++ b/net/ipv4/ip_gre.c | |||
@@ -222,7 +222,7 @@ static struct rtnl_link_stats64 *ipgre_get_stats64(struct net_device *dev, | |||
222 | 222 | ||
223 | /* Does key in tunnel parameters match packet */ | 223 | /* Does key in tunnel parameters match packet */ |
224 | static bool ipgre_key_match(const struct ip_tunnel_parm *p, | 224 | static bool ipgre_key_match(const struct ip_tunnel_parm *p, |
225 | __u32 flags, __be32 key) | 225 | __be16 flags, __be32 key) |
226 | { | 226 | { |
227 | if (p->i_flags & GRE_KEY) { | 227 | if (p->i_flags & GRE_KEY) { |
228 | if (flags & GRE_KEY) | 228 | if (flags & GRE_KEY) |
@@ -237,7 +237,7 @@ static bool ipgre_key_match(const struct ip_tunnel_parm *p, | |||
237 | 237 | ||
238 | static struct ip_tunnel *ipgre_tunnel_lookup(struct net_device *dev, | 238 | static struct ip_tunnel *ipgre_tunnel_lookup(struct net_device *dev, |
239 | __be32 remote, __be32 local, | 239 | __be32 remote, __be32 local, |
240 | __u32 flags, __be32 key, | 240 | __be16 flags, __be32 key, |
241 | __be16 gre_proto) | 241 | __be16 gre_proto) |
242 | { | 242 | { |
243 | struct net *net = dev_net(dev); | 243 | struct net *net = dev_net(dev); |