1. 18 12月, 2015 10 次提交
  2. 17 12月, 2015 2 次提交
    • H
      net: Pass ndm_state to route netlink FDB notifications. · b3379041
      Hubert Sokolowski 提交于
      Before this change applications monitoring FDB notifications
      were not able to determine whether a new FDB entry is permament
      or not:
      bridge fdb add f1:f2:f3:f4:f5:f8 dev sw0p1 temp self
      bridge fdb add f1:f2:f3:f4:f5:f9 dev sw0p1 self
      
      bridge monitor fdb
      
      f1:f2:f3:f4:f5:f8 dev sw0p1 self permanent
      f1:f2:f3:f4:f5:f9 dev sw0p1 self permanent
      
      With this change ndm_state from the original netlink message
      is passed to the new netlink message sent as notification.
      
      bridge fdb add f1:f2:f3:f4:f5:f6 dev sw0p1 self
      bridge fdb add f1:f2:f3:f4:f5:f7 dev sw0p1 temp self
      
      bridge monitor fdb
      f1:f2:f3:f4:f5:f6 dev sw0p1 self permanent
      f1:f2:f3:f4:f5:f7 dev sw0p1 self static
      Signed-off-by: NHubert Sokolowski <hubert.sokolowski@intel.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      b3379041
    • D
      Merge tag 'batman-adv-for-davem' of git://git.open-mesh.org/linux-merge · 04ad3783
      David S. Miller 提交于
      Antonio Quartulli says:
      
      ====================
      Included changes:
      - change my email in MAINTAINERS and Doc files
      - create and export list of single hop neighs per interface
      - protect CRC in the BLA code by means of its own lock
      - minor fixes and code cleanups
      ====================
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      04ad3783
  3. 16 12月, 2015 28 次提交