aboutsummaryrefslogtreecommitdiffstats
path: root/net/batman-adv/hard-interface.c
diff options
context:
space:
mode:
authorSven Eckelmann <sven@narfation.org>2012-05-11 20:09:24 -0400
committerAntonio Quartulli <ordex@autistici.org>2012-06-20 16:15:15 -0400
commit5853e22c58b318232fd6e15033ccb0852f865c0b (patch)
tree334d4d1072caa23efeff29a105c50d43637f2246 /net/batman-adv/hard-interface.c
parent40a072d777a4f417c0296e06f91297b0f3f2fa36 (diff)
batman-adv: Prefix bat_sysfs non-static functions with batadv_
batman-adv can be compiled as part of the kernel instead of an module. In that case the linker will see all non-static symbols of batman-adv and all other non-static symbols of the kernel. This could lead to symbol collisions. A prefix for the batman-adv symbols that defines their private namespace avoids such a problem. Reported-by: David Miller <davem@davemloft.net> Signed-off-by: Sven Eckelmann <sven@narfation.org>
Diffstat (limited to 'net/batman-adv/hard-interface.c')
-rw-r--r--net/batman-adv/hard-interface.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/batman-adv/hard-interface.c b/net/batman-adv/hard-interface.c
index ce78c6d645c6..380572e721e6 100644
--- a/net/batman-adv/hard-interface.c
+++ b/net/batman-adv/hard-interface.c
@@ -423,7 +423,7 @@ static struct hard_iface *hardif_add_interface(struct net_device *net_dev)
423 if (!hard_iface) 423 if (!hard_iface)
424 goto release_dev; 424 goto release_dev;
425 425
426 ret = sysfs_add_hardif(&hard_iface->hardif_obj, net_dev); 426 ret = batadv_sysfs_add_hardif(&hard_iface->hardif_obj, net_dev);
427 if (ret) 427 if (ret)
428 goto free_if; 428 goto free_if;
429 429
@@ -467,7 +467,7 @@ static void hardif_remove_interface(struct hard_iface *hard_iface)
467 return; 467 return;
468 468
469 hard_iface->if_status = IF_TO_BE_REMOVED; 469 hard_iface->if_status = IF_TO_BE_REMOVED;
470 sysfs_del_hardif(&hard_iface->hardif_obj); 470 batadv_sysfs_del_hardif(&hard_iface->hardif_obj);
471 hardif_free_ref(hard_iface); 471 hardif_free_ref(hard_iface);
472} 472}
473 473