diff options
author | Johannes Berg <johannes.berg@intel.com> | 2015-11-06 11:30:46 +0100 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2015-12-04 14:43:32 +0100 |
commit | d671b2a077a92ff71ad76fba0e8bfd1b7c5ca820 (patch) | |
tree | 4faf4956a7dfd34e0504358c234211a479b0fbcc /net/mac80211 | |
parent | 0483eeac59876ac37d4edbabd48727a468416d5b (diff) | |
download | blackbird-obmc-linux-d671b2a077a92ff71ad76fba0e8bfd1b7c5ca820.tar.gz blackbird-obmc-linux-d671b2a077a92ff71ad76fba0e8bfd1b7c5ca820.zip |
mac80211: mesh: print MAC address instead of pointer
There's no point in printing the mpath pointer since it can't
be used for anything - print the MAC address instead (like in
the forwarding case.)
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Acked-by: Bob Copeland <me@bobcopeland.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211')
-rw-r--r-- | net/mac80211/mesh_pathtbl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/mac80211/mesh_pathtbl.c b/net/mac80211/mesh_pathtbl.c index b3b44a5dd375..dadf8dc6f1cf 100644 --- a/net/mac80211/mesh_pathtbl.c +++ b/net/mac80211/mesh_pathtbl.c @@ -968,8 +968,8 @@ int mesh_path_send_to_gates(struct mesh_path *mpath) copy = true; } else { mpath_dbg(sdata, - "Not forwarding %p (flags %#x)\n", - gate->mpath, gate->mpath->flags); + "Not forwarding to %pM (flags %#x)\n", + gate->mpath->dst, gate->mpath->flags); } } |