Repository : ssh://git@open-mesh.org/batman-adv
On branch : master
commit ca32543d6ad096dcc0ccb0379e2e80dc06bdf0ad Author: Antonio Quartulli antonio@open-mesh.com Date: Mon Mar 25 13:54:45 2013 +0100
batman-adv: slightly improve neighbor creation debug message
print the interface along with the new neighbor mac address
Signed-off-by: Antonio Quartulli antonio@open-mesh.com Signed-off-by: Marek Lindner lindner_marek@yahoo.de
ca32543d6ad096dcc0ccb0379e2e80dc06bdf0ad originator.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/originator.c b/originator.c index ddd417c..e8a54a8 100644 --- a/originator.c +++ b/originator.c @@ -110,7 +110,8 @@ batadv_neigh_node_new(struct batadv_hard_iface *hard_iface, atomic_set(&neigh_node->refcount, 2);
batadv_dbg(BATADV_DBG_BATMAN, bat_priv, - "Creating new neighbor %pM\n", neigh_addr); + "Creating new neighbor %pM on interface %s\n", neigh_addr, + hard_iface->net_dev->name);
out: return neigh_node;