aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'net/ipv4/fou.c')
-rw-r--r--net/ipv4/fou.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv4/fou.c b/net/ipv4/fou.c
index 4b67937692c9..b22a75c0a3d9 100644
--- a/net/ipv4/fou.c
+++ b/net/ipv4/fou.c
@@ -188,7 +188,7 @@ static struct sk_buff **fou_gro_receive(struct sk_buff **head,
188 if (!ops || !ops->callbacks.gro_receive) 188 if (!ops || !ops->callbacks.gro_receive)
189 goto out_unlock; 189 goto out_unlock;
190 190
191 pp = ops->callbacks.gro_receive(head, skb); 191 pp = call_gro_receive(ops->callbacks.gro_receive, head, skb);
192 192
193out_unlock: 193out_unlock:
194 rcu_read_unlock(); 194 rcu_read_unlock();
@@ -355,7 +355,7 @@ static struct sk_buff **gue_gro_receive(struct sk_buff **head,
355 if (WARN_ON(!ops || !ops->callbacks.gro_receive)) 355 if (WARN_ON(!ops || !ops->callbacks.gro_receive))
356 goto out_unlock; 356 goto out_unlock;
357 357
358 pp = ops->callbacks.gro_receive(head, skb); 358 pp = call_gro_receive(ops->callbacks.gro_receive, head, skb);
359 359
360out_unlock: 360out_unlock:
361 rcu_read_unlock(); 361 rcu_read_unlock();