batman-adv: Prefix originator non-static functions with batadv_
[deliverable/linux.git] / net / batman-adv / hard-interface.c
index 4f44f049186fda386a6d1abfd58d95a944a35d9a..1f126cbd2c79d11c9b31efc17db8bd08b88c7bd5 100644 (file)
@@ -312,7 +312,7 @@ int batadv_hardif_enable_interface(struct hard_iface *hard_iface,
        hard_iface->if_num = bat_priv->num_ifaces;
        bat_priv->num_ifaces++;
        hard_iface->if_status = IF_INACTIVE;
-       orig_hash_add_if(hard_iface, bat_priv->num_ifaces);
+       batadv_orig_hash_add_if(hard_iface, bat_priv->num_ifaces);
 
        hard_iface->batman_adv_ptype.type = __constant_htons(ETH_P_BATMAN);
        hard_iface->batman_adv_ptype.func = batman_skb_recv;
@@ -373,7 +373,7 @@ void batadv_hardif_disable_interface(struct hard_iface *hard_iface)
        dev_remove_pack(&hard_iface->batman_adv_ptype);
 
        bat_priv->num_ifaces--;
-       orig_hash_del_if(hard_iface, bat_priv->num_ifaces);
+       batadv_orig_hash_del_if(hard_iface, bat_priv->num_ifaces);
 
        primary_if = primary_if_get_selected(bat_priv);
        if (hard_iface == primary_if) {
@@ -390,7 +390,7 @@ void batadv_hardif_disable_interface(struct hard_iface *hard_iface)
        hard_iface->if_status = IF_NOT_IN_USE;
 
        /* delete all references to this hard_iface */
-       purge_orig_ref(bat_priv);
+       batadv_purge_orig_ref(bat_priv);
        purge_outstanding_packets(bat_priv, hard_iface);
        dev_put(hard_iface->soft_iface);
 
This page took 0.02739 seconds and 5 git commands to generate.