mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 14:42:24 +00:00
bridge: Fix timer typo that may render snooping less effective
In a couple of spots where we are supposed to modify the port group timer (p->timer) we instead modify the bridge interface group timer (mp->timer). The effect of this is mostly harmless. However, it can cause port subscriptions to be longer than they should be, thus making snooping less effective. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
6b0d6a9b42
commit
24f9cdcbd7
@ -1178,7 +1178,7 @@ static int br_ip4_multicast_query(struct net_bridge *br,
|
||||
if (timer_pending(&p->timer) ?
|
||||
time_after(p->timer.expires, now + max_delay) :
|
||||
try_to_del_timer_sync(&p->timer) >= 0)
|
||||
mod_timer(&mp->timer, now + max_delay);
|
||||
mod_timer(&p->timer, now + max_delay);
|
||||
}
|
||||
|
||||
out:
|
||||
@ -1249,7 +1249,7 @@ static int br_ip6_multicast_query(struct net_bridge *br,
|
||||
if (timer_pending(&p->timer) ?
|
||||
time_after(p->timer.expires, now + max_delay) :
|
||||
try_to_del_timer_sync(&p->timer) >= 0)
|
||||
mod_timer(&mp->timer, now + max_delay);
|
||||
mod_timer(&p->timer, now + max_delay);
|
||||
}
|
||||
|
||||
out:
|
||||
|
Loading…
Reference in New Issue
Block a user