aboutsummaryrefslogtreecommitdiffstats
path: root/net/batman-adv/routing.c
diff options
context:
space:
mode:
authorLinus Lüssing <linus.luessing@ascom.ch>2011-03-02 12:39:31 -0500
committerMarek Lindner <lindner_marek@yahoo.de>2011-03-05 06:52:08 -0500
commit7cefb149a6b0e4f7c5adfa27dcf285b729063848 (patch)
tree3b4d041fd21905286602c3319d94f591a344b8f3 /net/batman-adv/routing.c
parente6c10f433af9c98994c94a10ae862c152fcfb2a9 (diff)
batman-adv: Remove unused hdr_size variable in route_unicast_packet()
Signed-off-by: Linus Lüssing <linus.luessing@ascom.ch> Signed-off-by: Marek Lindner <lindner_marek@yahoo.de>
Diffstat (limited to 'net/batman-adv/routing.c')
-rw-r--r--net/batman-adv/routing.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/net/batman-adv/routing.c b/net/batman-adv/routing.c
index 42cb6e2e44f5..c172f5d0e05a 100644
--- a/net/batman-adv/routing.c
+++ b/net/batman-adv/routing.c
@@ -1263,8 +1263,7 @@ static int check_unicast_packet(struct sk_buff *skb, int hdr_size)
1263 return 0; 1263 return 0;
1264} 1264}
1265 1265
1266int route_unicast_packet(struct sk_buff *skb, struct hard_iface *recv_if, 1266int route_unicast_packet(struct sk_buff *skb, struct hard_iface *recv_if)
1267 int hdr_size)
1268{ 1267{
1269 struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface); 1268 struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
1270 struct orig_node *orig_node = NULL; 1269 struct orig_node *orig_node = NULL;
@@ -1365,7 +1364,7 @@ int recv_unicast_packet(struct sk_buff *skb, struct hard_iface *recv_if)
1365 return NET_RX_SUCCESS; 1364 return NET_RX_SUCCESS;
1366 } 1365 }
1367 1366
1368 return route_unicast_packet(skb, recv_if, hdr_size); 1367 return route_unicast_packet(skb, recv_if);
1369} 1368}
1370 1369
1371int recv_ucast_frag_packet(struct sk_buff *skb, struct hard_iface *recv_if) 1370int recv_ucast_frag_packet(struct sk_buff *skb, struct hard_iface *recv_if)
@@ -1398,7 +1397,7 @@ int recv_ucast_frag_packet(struct sk_buff *skb, struct hard_iface *recv_if)
1398 return NET_RX_SUCCESS; 1397 return NET_RX_SUCCESS;
1399 } 1398 }
1400 1399
1401 return route_unicast_packet(skb, recv_if, hdr_size); 1400 return route_unicast_packet(skb, recv_if);
1402} 1401}
1403 1402
1404 1403