aboutsummaryrefslogtreecommitdiffstats
path: root/net/batman-adv/unicast.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/batman-adv/unicast.c')
-rw-r--r--net/batman-adv/unicast.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/net/batman-adv/unicast.c b/net/batman-adv/unicast.c
index e9d3bdd4e3d6..b2b76df69607 100644
--- a/net/batman-adv/unicast.c
+++ b/net/batman-adv/unicast.c
@@ -1,5 +1,4 @@
1/* 1/* Copyright (C) 2010-2012 B.A.T.M.A.N. contributors:
2 * Copyright (C) 2010-2012 B.A.T.M.A.N. contributors:
3 * 2 *
4 * Andreas Langer 3 * Andreas Langer
5 * 4 *
@@ -16,7 +15,6 @@
16 * along with this program; if not, write to the Free Software 15 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18 * 02110-1301, USA 17 * 02110-1301, USA
19 *
20 */ 18 */
21 19
22#include "main.h" 20#include "main.h"
@@ -300,12 +298,12 @@ int batadv_unicast_send_skb(struct sk_buff *skb, struct bat_priv *bat_priv)
300 } 298 }
301 299
302 /* check for tt host - increases orig_node refcount. 300 /* check for tt host - increases orig_node refcount.
303 * returns NULL in case of AP isolation */ 301 * returns NULL in case of AP isolation
302 */
304 orig_node = batadv_transtable_search(bat_priv, ethhdr->h_source, 303 orig_node = batadv_transtable_search(bat_priv, ethhdr->h_source,
305 ethhdr->h_dest); 304 ethhdr->h_dest);
306find_router: 305find_router:
307 /** 306 /* find_router():
308 * find_router():
309 * - if orig_node is NULL it returns NULL 307 * - if orig_node is NULL it returns NULL
310 * - increases neigh_nodes refcount if found. 308 * - increases neigh_nodes refcount if found.
311 */ 309 */