diff options
Diffstat (limited to 'net/ipv4/fou.c')
| -rw-r--r-- | net/ipv4/fou.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv4/fou.c b/net/ipv4/fou.c index cf50f7e2b012..030d1531e897 100644 --- a/net/ipv4/fou.c +++ b/net/ipv4/fou.c @@ -249,7 +249,7 @@ static struct sk_buff **fou_gro_receive(struct sock *sk,  	if (!ops || !ops->callbacks.gro_receive)  		goto out_unlock; -	pp = ops->callbacks.gro_receive(head, skb); +	pp = call_gro_receive(ops->callbacks.gro_receive, head, skb);  out_unlock:  	rcu_read_unlock(); @@ -441,7 +441,7 @@ next_proto:  	if (WARN_ON_ONCE(!ops || !ops->callbacks.gro_receive))  		goto out_unlock; -	pp = ops->callbacks.gro_receive(head, skb); +	pp = call_gro_receive(ops->callbacks.gro_receive, head, skb);  	flush = 0;  out_unlock:  | 

