aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Dumazet <[email protected]>2015-05-28 04:42:54 -0700
committerDavid S. Miller <[email protected]>2015-05-30 23:31:28 -0700
commit71d9f6149cac8fc6646adfb2a6f3b0de6ddd23f6 (patch)
treeb2cb34293f904f1346b38770ab223195d466ea2c
parent5aab0e8a45e2c15930af9aea7f461bf57ad8efe3 (diff)
bridge: fix br_multicast_query_expired() bug
br_multicast_query_expired() querier argument is a pointer to a struct bridge_mcast_querier : struct bridge_mcast_querier { struct br_ip addr; struct net_bridge_port __rcu *port; }; Intent of the code was to clear port field, not the pointer to querier. Fixes: 2cd4143192e8 ("bridge: memorize and export selected IGMP/MLD querier port") Signed-off-by: Eric Dumazet <[email protected]> Acked-by: Thadeu Lima de Souza Cascardo <[email protected]> Acked-by: Linus Lüssing <[email protected]> Cc: Linus Lüssing <[email protected]> Cc: Steinar H. Gunderson <[email protected]> Signed-off-by: David S. Miller <[email protected]>
-rw-r--r--net/bridge/br_multicast.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bridge/br_multicast.c b/net/bridge/br_multicast.c
index a3abe6ed111e..22fd0419b314 100644
--- a/net/bridge/br_multicast.c
+++ b/net/bridge/br_multicast.c
@@ -1822,7 +1822,7 @@ static void br_multicast_query_expired(struct net_bridge *br,
if (query->startup_sent < br->multicast_startup_query_count)
query->startup_sent++;
- RCU_INIT_POINTER(querier, NULL);
+ RCU_INIT_POINTER(querier->port, NULL);
br_multicast_send_query(br, NULL, query);
spin_unlock(&br->multicast_lock);
}