lkml.org 
[lkml]   [2015]   [May]   [20]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [RFC PATCH net-next] bridge: allow setting hash_max + multicast_router if interface is down
On Thu, May 21, 2015 at 04:59:22AM +0200, Linus Lüssing wrote:
>
> * For i=br_multicast_init(), e=br_multicast_enable() and
> s=br_multicast_stop() is the order i->e->s->e->s->e->... always
> ensured by the netdev API? Will this work even if I have

br_multicast_init always happens first obviously. But there is
no ordering requirement between e and s.

> many fast and wild calls to "ip link set up dev br0" and
> "ip link set down dev br0" and some changes to hash_max and
> multicast_router in between?

The timer operations are all supposed to be idempotent. So enabling
a port twice or stopping it twice should be OK.

> * Might calls to br_multicast_add_router() via br_multicast_enable_port()
> cause unintended side-effects?

What do you mean? How does add_router get called from enable_port?

> * (maybe independent of this patch: )
> Can fast changes to the multicast_router attribute of a bridge (port)
> cause race conditions because a del_timer() instead of a
> del_timer_sync() is used in br_multicast_set_{port,}router()?
> (or: why does br_multicast_stop() use del_timer_sync() while
> br_multicast_disable_port() doesn't?)

I don't think so. Firstly everything should happen under the
multicast lock except for stop/del_port. The latter rely on
those adding timers to check netif_running and port != disabled
to avoid races.

Apart from that you can always mod_timer twice or del_timer
twice so that's not really an issue.

> * @Herbert: Do you remember whether there was a reason for
> checking netif_running() or the bridge port state which
> I might have overlooked?

See above. It's there so that you don't readd a timer when we're
calling del_timer_sync. del_timer_sync has to be called without
the multicast lock so that's why we need another mechanism to
prevent the timers from being readded.

AFAICS the spots you patched aren't adding timers so they *should*
be OK.

Cheers,
--
Email: Herbert Xu <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt


\
 
 \ /
  Last update: 2015-05-21 06:21    [W:0.052 / U:0.056 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site