aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorAntonio Quartulli <ordex@autistici.org>2011-04-25 16:44:32 -0400
committerSven Eckelmann <sven@narfation.org>2011-05-01 16:49:03 -0400
commit71e4aa9c465fd66c110667ab5d620fb6a4ef2157 (patch)
tree2abf828534472096dab635786c24a69c49b8965e /net
parent5f657ec0d2103571a31707711926b443a27b0c66 (diff)
batman-adv: fix gw_node_update() and gw_election()
This is a regression from c4aac1ab9b973798163b34939b522f01e4d28ac9 - gw_node_update() doesn't add a new gw_node in case of empty curr_gw. This means that at the beginning no gw_node is added, leading to an empty gateway list. - gw_election() is terminating in case of curr_gw == NULL. It has to terminate in case of curr_gw != NULL Signed-off-by: Antonio Quartulli <ordex@autistici.org> Signed-off-by: Sven Eckelmann <sven@narfation.org>
Diffstat (limited to 'net')
-rw-r--r--net/batman-adv/gateway_client.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/net/batman-adv/gateway_client.c b/net/batman-adv/gateway_client.c
index 2acd7a666bda..af128eff2edf 100644
--- a/net/batman-adv/gateway_client.c
+++ b/net/batman-adv/gateway_client.c
@@ -127,7 +127,7 @@ void gw_election(struct bat_priv *bat_priv)
127 return; 127 return;
128 128
129 curr_gw = gw_get_selected_gw_node(bat_priv); 129 curr_gw = gw_get_selected_gw_node(bat_priv);
130 if (!curr_gw) 130 if (curr_gw)
131 goto out; 131 goto out;
132 132
133 rcu_read_lock(); 133 rcu_read_lock();
@@ -310,9 +310,13 @@ void gw_node_update(struct bat_priv *bat_priv,
310 struct hlist_node *node; 310 struct hlist_node *node;
311 struct gw_node *gw_node, *curr_gw; 311 struct gw_node *gw_node, *curr_gw;
312 312
313 /**
314 * Note: We don't need a NULL check here, since curr_gw never gets
315 * dereferenced. If curr_gw is NULL we also should not exit as we may
316 * have this gateway in our list (duplication check!) even though we
317 * have no currently selected gateway.
318 */
313 curr_gw = gw_get_selected_gw_node(bat_priv); 319 curr_gw = gw_get_selected_gw_node(bat_priv);
314 if (!curr_gw)
315 goto out;
316 320
317 rcu_read_lock(); 321 rcu_read_lock();
318 hlist_for_each_entry_rcu(gw_node, node, &bat_priv->gw_list, list) { 322 hlist_for_each_entry_rcu(gw_node, node, &bat_priv->gw_list, list) {
@@ -350,7 +354,7 @@ deselect:
350 gw_deselect(bat_priv); 354 gw_deselect(bat_priv);
351unlock: 355unlock:
352 rcu_read_unlock(); 356 rcu_read_unlock();
353out: 357
354 if (curr_gw) 358 if (curr_gw)
355 gw_node_free_ref(curr_gw); 359 gw_node_free_ref(curr_gw);
356} 360}