1. 16 7月, 2014 1 次提交
    • T
      net: set name_assign_type in alloc_netdev() · c835a677
      Tom Gundersen 提交于
      Extend alloc_netdev{,_mq{,s}}() to take name_assign_type as argument, and convert
      all users to pass NET_NAME_UNKNOWN.
      
      Coccinelle patch:
      
      @@
      expression sizeof_priv, name, setup, txqs, rxqs, count;
      @@
      
      (
      -alloc_netdev_mqs(sizeof_priv, name, setup, txqs, rxqs)
      +alloc_netdev_mqs(sizeof_priv, name, NET_NAME_UNKNOWN, setup, txqs, rxqs)
      |
      -alloc_netdev_mq(sizeof_priv, name, setup, count)
      +alloc_netdev_mq(sizeof_priv, name, NET_NAME_UNKNOWN, setup, count)
      |
      -alloc_netdev(sizeof_priv, name, setup)
      +alloc_netdev(sizeof_priv, name, NET_NAME_UNKNOWN, setup)
      )
      
      v9: move comments here from the wrong commit
      Signed-off-by: NTom Gundersen <teg@jklm.no>
      Reviewed-by: NDavid Herrmann <dh.herrmann@gmail.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      c835a677
  2. 14 5月, 2014 1 次提交
  3. 22 3月, 2014 7 次提交
  4. 12 1月, 2014 2 次提交
  5. 09 1月, 2014 5 次提交
  6. 28 12月, 2013 3 次提交
  7. 23 10月, 2013 1 次提交
    • M
      batman-adv: limit local translation table max size · a19d3d85
      Marek Lindner 提交于
      The local translation table size is limited by what can be
      transferred from one node to another via a full table request.
      
      The number of entries fitting into a full table request depend
      on whether the fragmentation is enabled or not. Therefore this
      patch introduces a max table size check and refuses to add
      more local clients when that size is reached. Moreover, if the
      max full table packet size changes (MTU change or fragmentation
      is disabled) the local table is downsized instantaneously.
      Signed-off-by: NMarek Lindner <lindner_marek@yahoo.de>
      Acked-by: NAntonio Quartulli <ordex@autistici.org>
      a19d3d85
  8. 19 10月, 2013 5 次提交
  9. 12 10月, 2013 6 次提交
  10. 10 10月, 2013 2 次提交
  11. 18 9月, 2013 1 次提交
  12. 28 8月, 2013 1 次提交
  13. 11 8月, 2013 1 次提交
  14. 29 5月, 2013 2 次提交
  15. 22 5月, 2013 1 次提交
  16. 23 4月, 2013 1 次提交