batman-adv: Prefix translation-table 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>
This commit is contained in:

committed by
Antonio Quartulli

parent
04b482a21a
commit
08c36d3e8a
@@ -301,9 +301,8 @@ int unicast_send_skb(struct sk_buff *skb, struct bat_priv *bat_priv)
|
||||
|
||||
/* check for tt host - increases orig_node refcount.
|
||||
* returns NULL in case of AP isolation */
|
||||
orig_node = transtable_search(bat_priv, ethhdr->h_source,
|
||||
ethhdr->h_dest);
|
||||
|
||||
orig_node = batadv_transtable_search(bat_priv, ethhdr->h_source,
|
||||
ethhdr->h_dest);
|
||||
find_router:
|
||||
/**
|
||||
* find_router():
|
||||
@@ -335,7 +334,7 @@ find_router:
|
||||
* try to reroute it because the ttvn contained in the header is less
|
||||
* than the current one
|
||||
*/
|
||||
if (tt_global_client_is_roaming(bat_priv, ethhdr->h_dest))
|
||||
if (batadv_tt_global_client_is_roaming(bat_priv, ethhdr->h_dest))
|
||||
unicast_packet->ttvn = unicast_packet->ttvn - 1;
|
||||
|
||||
if (atomic_read(&bat_priv->fragmentation) &&
|
||||
|
Reference in New Issue
Block a user