diff options
author | Antonio Quartulli <antonio@open-mesh.com> | 2013-03-25 13:54:45 +0100 |
---|---|---|
committer | Antonio Quartulli <ordex@autistici.org> | 2013-05-29 02:44:53 +0200 |
commit | d1dc30739c587fe65f4120c045258ab01c79db1b (patch) | |
tree | 813b62eb6485088909fb2c8786e2314648e5d68d /net/batman-adv | |
parent | 863dd7a82a2fba3e1a094c3d10a9cc8d1afd10d6 (diff) | |
download | op-kernel-dev-d1dc30739c587fe65f4120c045258ab01c79db1b.zip op-kernel-dev-d1dc30739c587fe65f4120c045258ab01c79db1b.tar.gz |
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>
Diffstat (limited to 'net/batman-adv')
-rw-r--r-- | net/batman-adv/originator.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/batman-adv/originator.c b/net/batman-adv/originator.c index ddf5634..f50553a 100644 --- a/net/batman-adv/originator.c +++ b/net/batman-adv/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; |