Re: [PATCH] bridge: do not call setup_timer() multiple times

2013-07-19 Thread David Miller
From: Eric Dumazet Date: Fri, 19 Jul 2013 20:07:16 -0700 > From: Eric Dumazet > > commit 9f00b2e7cf24 ("bridge: only expire the mdb entry when query is > received") added a nasty bug as an active timer can be reinitialized. > > setup_timer() must be done once, no matter how many time

[PATCH] bridge: do not call setup_timer() multiple times

2013-07-19 Thread Eric Dumazet
From: Eric Dumazet commit 9f00b2e7cf24 ("bridge: only expire the mdb entry when query is received") added a nasty bug as an active timer can be reinitialized. setup_timer() must be done once, no matter how many time mod_timer() is called. br_multicast_new_group() is the right place to do this.

[PATCH] bridge: do not call setup_timer() multiple times

2013-07-19 Thread Eric Dumazet
From: Eric Dumazet eduma...@google.com commit 9f00b2e7cf24 (bridge: only expire the mdb entry when query is received) added a nasty bug as an active timer can be reinitialized. setup_timer() must be done once, no matter how many time mod_timer() is called. br_multicast_new_group() is the right

Re: [PATCH] bridge: do not call setup_timer() multiple times

2013-07-19 Thread David Miller
From: Eric Dumazet eric.duma...@gmail.com Date: Fri, 19 Jul 2013 20:07:16 -0700 From: Eric Dumazet eduma...@google.com commit 9f00b2e7cf24 (bridge: only expire the mdb entry when query is received) added a nasty bug as an active timer can be reinitialized. setup_timer() must be done once,