dect
/
linux-2.6
Archived
13
0
Fork 0

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>
This commit is contained in:
stephen hemminger 2012-10-01 05:21:14 +00:00 committed by David S. Miller
parent 66dc81ecd7
commit 9fbef059d6
1 changed files with 2 additions and 2 deletions

View File

@ -222,7 +222,7 @@ static struct rtnl_link_stats64 *ipgre_get_stats64(struct net_device *dev,
/* Does key in tunnel parameters match packet */
static bool ipgre_key_match(const struct ip_tunnel_parm *p,
__u32 flags, __be32 key)
__be16 flags, __be32 key)
{
if (p->i_flags & GRE_KEY) {
if (flags & GRE_KEY)
@ -237,7 +237,7 @@ static bool ipgre_key_match(const struct ip_tunnel_parm *p,
static struct ip_tunnel *ipgre_tunnel_lookup(struct net_device *dev,
__be32 remote, __be32 local,
__u32 flags, __be32 key,
__be16 flags, __be32 key,
__be16 gre_proto)
{
struct net *net = dev_net(dev);