Merge branch 'bridge-sysfs-rtnl-notifications'
authorDavid S. Miller <davem@davemloft.net>
Thu, 14 Apr 2016 02:42:33 +0000 (22:42 -0400)
committerDavid S. Miller <davem@davemloft.net>
Thu, 14 Apr 2016 02:42:33 +0000 (22:42 -0400)
commit079adf6c53e8b791ca569314ebee631bb68fbb31
tree3149a56ac7c7d066bb6c2ca2667fbd3f4e9a5e5e
parentf9a7cbbf18f1640907d6ca345b8337e4b50ea56f
parentbf871ad792e3c9f5dda0ef5bd519e0a2f1564001
Merge branch 'bridge-sysfs-rtnl-notifications'

Xin Long says:

====================
bridge: support sending rntl info when we set attributes through sysfs/ioctl

This patchset is used to support sending rntl info to user in some places,
and ensure that whenever those attributes change internally or from sysfs,
that a netlink notification is sent out to listeners.

It also make some adjustment in bridge sysfs so that we can implement this
easily.

I've done some tests on this patchset, like:
[br_sysfs]
  1. change all the attribute values of br or brif:
  $ echo $value > /sys/class/net/br0/bridge/{*}
  $ echo $value > /sys/class/net/br0/brif/eth1/{*}

  2. meanwhile, on another terminal to observe the msg:
  $ bridge monitor

[br_ioctl]
  1. in bridge-utils package, do some changes in br_set, let brctl command
  use ioctl to set attribute:
         if ((ret = set_sysfs(path, value)) < 0) { -->
         if (1) {

  $ brctl set*

  2. meanwhile, on another terminal to observe the msg:
  $ bridge monitor

This test covers all the attributes that brctl and sysfs support to set.
====================

Signed-off-by: David S. Miller <davem@davemloft.net>