1. 04 1月, 2008 1 次提交
    • M
      [INET]: Fix netdev renaming and inet address labels · 44344b2a
      Mark McLoughlin 提交于
      When re-naming an interface, the previous secondary address
      labels get lost e.g.
      
        $> brctl addbr foo
        $> ip addr add 192.168.0.1 dev foo
        $> ip addr add 192.168.0.2 dev foo label foo:00
        $> ip addr show dev foo | grep inet
          inet 192.168.0.1/32 scope global foo
          inet 192.168.0.2/32 scope global foo:00
        $> ip link set foo name bar
        $> ip addr show dev bar | grep inet
          inet 192.168.0.1/32 scope global bar
          inet 192.168.0.2/32 scope global bar:2
      
      Turns out to be a simple thinko in inetdev_changename() - clearly we
      want to look at the address label, rather than the device name, for
      a suffix to retain.
      Signed-off-by: NMark McLoughlin <markmc@redhat.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      44344b2a
  2. 11 12月, 2007 1 次提交
  3. 11 10月, 2007 5 次提交
  4. 11 9月, 2007 1 次提交
  5. 31 7月, 2007 1 次提交
  6. 09 6月, 2007 1 次提交
  7. 08 6月, 2007 5 次提交
  8. 04 5月, 2007 1 次提交
  9. 26 4月, 2007 3 次提交
  10. 10 3月, 2007 1 次提交
  11. 27 2月, 2007 1 次提交
  12. 15 2月, 2007 3 次提交
  13. 11 2月, 2007 1 次提交
  14. 09 2月, 2007 1 次提交
    • P
      [NETLINK]: Don't BUG on undersized allocations · 26932566
      Patrick McHardy 提交于
      Currently netlink users BUG when the allocated skb for an event
      notification is undersized. While this is certainly a kernel bug,
      its not critical and crashing the kernel is too drastic, especially
      when considering that these errors have appeared multiple times in
      the past and it BUGs even if no listeners are present.
      
      This patch replaces BUG by WARN_ON and changes the notification
      functions to inform potential listeners of undersized allocations
      using a unique error code (EMSGSIZE).
      Signed-off-by: NPatrick McHardy <kaber@trash.net>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      26932566
  15. 10 1月, 2007 1 次提交
  16. 05 1月, 2007 1 次提交
  17. 11 12月, 2006 1 次提交
  18. 03 12月, 2006 3 次提交
  19. 29 9月, 2006 5 次提交
  20. 23 9月, 2006 3 次提交