diff options
| -rw-r--r-- | net/batman-adv/gateway_client.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/batman-adv/gateway_client.c b/net/batman-adv/gateway_client.c index b421cc49d2cd..fc866f2e4528 100644 --- a/net/batman-adv/gateway_client.c +++ b/net/batman-adv/gateway_client.c | |||
| @@ -200,11 +200,11 @@ void batadv_gw_election(struct batadv_priv *bat_priv) | |||
| 200 | if (atomic_read(&bat_priv->gw_mode) != BATADV_GW_MODE_CLIENT) | 200 | if (atomic_read(&bat_priv->gw_mode) != BATADV_GW_MODE_CLIENT) |
| 201 | goto out; | 201 | goto out; |
| 202 | 202 | ||
| 203 | if (!batadv_atomic_dec_not_zero(&bat_priv->gw_reselect)) | ||
| 204 | goto out; | ||
| 205 | |||
| 206 | curr_gw = batadv_gw_get_selected_gw_node(bat_priv); | 203 | curr_gw = batadv_gw_get_selected_gw_node(bat_priv); |
| 207 | 204 | ||
| 205 | if (!batadv_atomic_dec_not_zero(&bat_priv->gw_reselect) && curr_gw) | ||
| 206 | goto out; | ||
| 207 | |||
| 208 | next_gw = batadv_gw_get_best_gw_node(bat_priv); | 208 | next_gw = batadv_gw_get_best_gw_node(bat_priv); |
| 209 | 209 | ||
| 210 | if (curr_gw == next_gw) | 210 | if (curr_gw == next_gw) |
