diff options
Diffstat (limited to 'net/batman-adv/translation-table.c')
-rw-r--r-- | net/batman-adv/translation-table.c | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/net/batman-adv/translation-table.c b/net/batman-adv/translation-table.c index c7416947a4e0..b3c43691bc6c 100644 --- a/net/batman-adv/translation-table.c +++ b/net/batman-adv/translation-table.c | |||
@@ -805,15 +805,17 @@ out: | |||
805 | * If a TT local entry exists for this non-mesh client remove it. | 805 | * If a TT local entry exists for this non-mesh client remove it. |
806 | * | 806 | * |
807 | * The caller must hold orig_node refcount. | 807 | * The caller must hold orig_node refcount. |
808 | * | ||
809 | * Return true if the new entry has been added, false otherwise | ||
808 | */ | 810 | */ |
809 | int batadv_tt_global_add(struct batadv_priv *bat_priv, | 811 | static bool batadv_tt_global_add(struct batadv_priv *bat_priv, |
810 | struct batadv_orig_node *orig_node, | 812 | struct batadv_orig_node *orig_node, |
811 | const unsigned char *tt_addr, uint16_t flags, | 813 | const unsigned char *tt_addr, uint16_t flags, |
812 | uint8_t ttvn) | 814 | uint8_t ttvn) |
813 | { | 815 | { |
814 | struct batadv_tt_global_entry *tt_global_entry; | 816 | struct batadv_tt_global_entry *tt_global_entry; |
815 | struct batadv_tt_local_entry *tt_local_entry; | 817 | struct batadv_tt_local_entry *tt_local_entry; |
816 | int ret = 0; | 818 | bool ret = false; |
817 | int hash_added; | 819 | int hash_added; |
818 | struct batadv_tt_common_entry *common; | 820 | struct batadv_tt_common_entry *common; |
819 | uint16_t local_flags; | 821 | uint16_t local_flags; |
@@ -914,7 +916,7 @@ add_orig_entry: | |||
914 | batadv_dbg(BATADV_DBG_TT, bat_priv, | 916 | batadv_dbg(BATADV_DBG_TT, bat_priv, |
915 | "Creating new global tt entry: %pM (via %pM)\n", | 917 | "Creating new global tt entry: %pM (via %pM)\n", |
916 | common->addr, orig_node->orig); | 918 | common->addr, orig_node->orig); |
917 | ret = 1; | 919 | ret = true; |
918 | 920 | ||
919 | out_remove: | 921 | out_remove: |
920 | 922 | ||