aboutsummaryrefslogtreecommitdiffstats
path: root/net/batman-adv/routing.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/batman-adv/routing.c')
-rw-r--r--net/batman-adv/routing.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/batman-adv/routing.c b/net/batman-adv/routing.c
index 5bc41c896e35..b72d7f3b3c6a 100644
--- a/net/batman-adv/routing.c
+++ b/net/batman-adv/routing.c
@@ -29,7 +29,6 @@
29#include "originator.h" 29#include "originator.h"
30#include "vis.h" 30#include "vis.h"
31#include "unicast.h" 31#include "unicast.h"
32#include "bat_ogm.h"
33 32
34void slide_own_bcast_window(struct hard_iface *hard_iface) 33void slide_own_bcast_window(struct hard_iface *hard_iface)
35{ 34{
@@ -248,6 +247,7 @@ int window_protected(struct bat_priv *bat_priv, int32_t seq_num_diff,
248 247
249int recv_bat_ogm_packet(struct sk_buff *skb, struct hard_iface *hard_iface) 248int recv_bat_ogm_packet(struct sk_buff *skb, struct hard_iface *hard_iface)
250{ 249{
250 struct bat_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
251 struct ethhdr *ethhdr; 251 struct ethhdr *ethhdr;
252 252
253 /* drop packet if it has not necessary minimum size */ 253 /* drop packet if it has not necessary minimum size */
@@ -272,7 +272,7 @@ int recv_bat_ogm_packet(struct sk_buff *skb, struct hard_iface *hard_iface)
272 if (skb_linearize(skb) < 0) 272 if (skb_linearize(skb) < 0)
273 return NET_RX_DROP; 273 return NET_RX_DROP;
274 274
275 bat_ogm_receive(hard_iface, skb); 275 bat_priv->bat_algo_ops->bat_ogm_receive(hard_iface, skb);
276 276
277 kfree_skb(skb); 277 kfree_skb(skb);
278 return NET_RX_SUCCESS; 278 return NET_RX_SUCCESS;