We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66dc81e commit 9fbef05Copy full SHA for 9fbef05
net/ipv4/ip_gre.c
@@ -222,7 +222,7 @@ static struct rtnl_link_stats64 *ipgre_get_stats64(struct net_device *dev,
222
223
/* Does key in tunnel parameters match packet */
224
static bool ipgre_key_match(const struct ip_tunnel_parm *p,
225
- __u32 flags, __be32 key)
+ __be16 flags, __be32 key)
226
{
227
if (p->i_flags & GRE_KEY) {
228
if (flags & GRE_KEY)
@@ -237,7 +237,7 @@ static bool ipgre_key_match(const struct ip_tunnel_parm *p,
237
238
static struct ip_tunnel *ipgre_tunnel_lookup(struct net_device *dev,
239
__be32 remote, __be32 local,
240
- __u32 flags, __be32 key,
+ __be16 flags, __be32 key,
241
__be16 gre_proto)
242
243
struct net *net = dev_net(dev);
0 commit comments