]> Pileus Git - ~andy/linux/commit
dev: always advertise rx_flags changes via netlink
authorNicolas Dichtel <nicolas.dichtel@6wind.com>
Wed, 25 Sep 2013 10:02:45 +0000 (12:02 +0200)
committerDavid S. Miller <davem@davemloft.net>
Mon, 30 Sep 2013 19:08:13 +0000 (15:08 -0400)
commit991fb3f74c142e1a1891ff4f7e9a6285a79a8ea1
tree30a883054bf34f8f4d8b52506bc8b844ddd30b83
parenta528c219df2e865e178c538c7178961dfed5a13c
dev: always advertise rx_flags changes via netlink

When flags IFF_PROMISC and IFF_ALLMULTI are changed, netlink messages are not
consistent. For example, if a multicast daemon is running (flag IFF_ALLMULTI
set in dev->flags but not dev->gflags, ie not exported to userspace) and then a
user sets it via netlink (flag IFF_ALLMULTI set in dev->flags and dev->gflags, ie
exported to userspace), no netlink message is sent.
Same for IFF_PROMISC and because dev->promiscuity is exported via
IFLA_PROMISCUITY, we may send a netlink message after each change of this
counter.

Signed-off-by: Nicolas Dichtel <nicolas.dichtel@6wind.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/core/dev.c