bridge: Pass net into br_nf_push_frag_xmit
When struct net starts being passed through the ipv4 and ipv6 fragment routines br_nf_push_frag_xmit will need to take a net parameter. Prepare br_nf_push_frag_xmit before that is needed and introduce br_nf_push_frag_xmit_sk for the call sites that still need the old calling conventions. Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
8d4df0b930
commit
6532948b2e
@ -668,7 +668,7 @@ static unsigned int br_nf_forward_arp(const struct nf_hook_ops *ops,
|
|||||||
}
|
}
|
||||||
|
|
||||||
#if IS_ENABLED(CONFIG_NF_DEFRAG_IPV4) || IS_ENABLED(CONFIG_NF_DEFRAG_IPV6)
|
#if IS_ENABLED(CONFIG_NF_DEFRAG_IPV4) || IS_ENABLED(CONFIG_NF_DEFRAG_IPV6)
|
||||||
static int br_nf_push_frag_xmit(struct sock *sk, struct sk_buff *skb)
|
static int br_nf_push_frag_xmit(struct net *net, struct sock *sk, struct sk_buff *skb)
|
||||||
{
|
{
|
||||||
struct brnf_frag_data *data;
|
struct brnf_frag_data *data;
|
||||||
int err;
|
int err;
|
||||||
@ -692,6 +692,11 @@ static int br_nf_push_frag_xmit(struct sock *sk, struct sk_buff *skb)
|
|||||||
nf_bridge_info_free(skb);
|
nf_bridge_info_free(skb);
|
||||||
return br_dev_queue_push_xmit(sk, skb);
|
return br_dev_queue_push_xmit(sk, skb);
|
||||||
}
|
}
|
||||||
|
static int br_nf_push_frag_xmit_sk(struct sock *sk, struct sk_buff *skb)
|
||||||
|
{
|
||||||
|
struct net *net = dev_net(skb_dst(skb)->dev);
|
||||||
|
return br_nf_push_frag_xmit(net, sk, skb);
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if IS_ENABLED(CONFIG_NF_DEFRAG_IPV4)
|
#if IS_ENABLED(CONFIG_NF_DEFRAG_IPV4)
|
||||||
@ -760,7 +765,7 @@ static int br_nf_dev_queue_xmit(struct sock *sk, struct sk_buff *skb)
|
|||||||
skb_copy_from_linear_data_offset(skb, -data->size, data->mac,
|
skb_copy_from_linear_data_offset(skb, -data->size, data->mac,
|
||||||
data->size);
|
data->size);
|
||||||
|
|
||||||
return br_nf_ip_fragment(net, sk, skb, br_nf_push_frag_xmit);
|
return br_nf_ip_fragment(net, sk, skb, br_nf_push_frag_xmit_sk);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
#if IS_ENABLED(CONFIG_NF_DEFRAG_IPV6)
|
#if IS_ENABLED(CONFIG_NF_DEFRAG_IPV6)
|
||||||
@ -783,7 +788,7 @@ static int br_nf_dev_queue_xmit(struct sock *sk, struct sk_buff *skb)
|
|||||||
data->size);
|
data->size);
|
||||||
|
|
||||||
if (v6ops)
|
if (v6ops)
|
||||||
return v6ops->fragment(sk, skb, br_nf_push_frag_xmit);
|
return v6ops->fragment(sk, skb, br_nf_push_frag_xmit_sk);
|
||||||
|
|
||||||
kfree_skb(skb);
|
kfree_skb(skb);
|
||||||
return -EMSGSIZE;
|
return -EMSGSIZE;
|
||||||
|
Loading…
Reference in New Issue
Block a user