[PATCH net-next 15/15] batman-adv: tt: simplify NEW flag transition code
From: Simon Wunderlich <sw@simonwunderlich.de>
Date: 2026-07-28 13:39:34
Also in:
batman
Subsystem:
batman advanced, the rest · Maintainers:
Marek Lindner, Simon Wunderlich, Antonio Quartulli, Sven Eckelmann, Linus Torvalds
From: Sven Eckelmann <sven@narfation.org> The function batadv_tt_local_set_flags() implements support for various flags and to set/unset them. It is also possible to decide whether this change should increase the TT size or not. But in reality, this function is only used to transition tt local entries from the NEW state and count these entries. Remove the rest of the code to simplify the function. Signed-off-by: Sven Eckelmann <sven@narfation.org> Signed-off-by: Simon Wunderlich <sw@simonwunderlich.de> --- net/batman-adv/translation-table.c | 37 ++++++++---------------------- 1 file changed, 9 insertions(+), 28 deletions(-)
diff --git a/net/batman-adv/translation-table.c b/net/batman-adv/translation-table.c
index 5295e3a59906f..5e10e6bb7bd6a 100644
--- a/net/batman-adv/translation-table.c
+++ b/net/batman-adv/translation-table.c@@ -3853,15 +3853,11 @@ void batadv_tt_free(struct batadv_priv *bat_priv) } /** - * batadv_tt_local_set_flags() - set or unset the specified flags on the local - * table and possibly count them in the TT size + * batadv_tt_local_transition_new() - unset the NEW flag on the local + * table and count them in the TT size * @bat_priv: the bat priv with all the mesh interface information - * @flags: the flag to switch - * @enable: whether to set or unset the flag - * @count: whether to increase the TT size by the number of changed entries */ -static void batadv_tt_local_set_flags(struct batadv_priv *bat_priv, u16 flags, - bool enable, bool count) +static void batadv_tt_local_transition_new(struct batadv_priv *bat_priv) { struct batadv_hashtable *hash = bat_priv->tt.local_hash; struct batadv_tt_common_entry *tt_common_entry;
@@ -3882,27 +3878,12 @@ static void batadv_tt_local_set_flags(struct batadv_priv *bat_priv, u16 flags, entry_flags = &tt_common_entry->flags; old_flags = atomic_read(entry_flags); - /* the old_flags value of the atomic test-and- - * set/clear decides whether this entry counts as - * changed. - */ - if (enable) { - if ((old_flags & flags) == flags) - continue; - - old_flags = atomic_fetch_or(flags, entry_flags); - if ((old_flags & flags) == flags) - continue; - } else { - if (!(old_flags & flags)) - continue; - - old_flags = atomic_fetch_andnot(flags, entry_flags); - if (!(old_flags & flags)) - continue; - } + if (!(old_flags & BATADV_TT_CLIENT_NEW)) + continue; - if (!count) + old_flags = atomic_fetch_andnot(BATADV_TT_CLIENT_NEW, + entry_flags); + if (!(old_flags & BATADV_TT_CLIENT_NEW)) continue; batadv_tt_local_size_inc(bat_priv,
@@ -3977,7 +3958,7 @@ static void batadv_tt_local_commit_changes_nolock(struct batadv_priv *bat_priv) return; } - batadv_tt_local_set_flags(bat_priv, BATADV_TT_CLIENT_NEW, false, true); + batadv_tt_local_transition_new(bat_priv); batadv_tt_local_purge_pending_clients(bat_priv); batadv_tt_local_update_crc(bat_priv);
--
2.47.3