1. 18 6月, 2015 3 次提交
  2. 26 5月, 2015 1 次提交
  3. 15 1月, 2015 1 次提交
  4. 19 12月, 2014 1 次提交
  5. 10 12月, 2014 2 次提交
  6. 13 11月, 2014 1 次提交
  7. 11 11月, 2014 1 次提交
  8. 09 11月, 2014 1 次提交
  9. 07 11月, 2014 1 次提交
  10. 31 10月, 2014 1 次提交
  11. 29 10月, 2014 2 次提交
  12. 27 10月, 2014 4 次提交
  13. 25 10月, 2014 2 次提交
  14. 02 10月, 2014 4 次提交
  15. 29 9月, 2014 3 次提交
  16. 09 9月, 2014 3 次提交
  17. 14 8月, 2014 1 次提交
  18. 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
  19. 03 7月, 2014 4 次提交
  20. 31 5月, 2014 1 次提交
    • J
      Bluetooth: 6LoWPAN: Fix MAC address universal/local bit handling · 62bbd5b3
      Jukka Rissanen 提交于
      The universal/local bit handling was incorrectly done in the code.
      
      So when setting EUI address from BD address we do this:
      - If BD address type is PUBLIC, then we clear the universal bit
        in EUI address. If the address type is RANDOM, then the universal
        bit is set (BT 6lowpan draft chapter 3.2.2)
      - After this we invert the universal/local bit according to RFC 2464
      
      When figuring out BD address we do the reverse:
      - Take EUI address from stateless IPv6 address, invert the
        universal/local bit according to RFC 2464
      - If universal bit is 1 in this modified EUI address, then address
        type is set to RANDOM, otherwise it is PUBLIC
      
      Note that 6lowpan_iphc.[ch] does the final toggling of U/L bit
      before sending or receiving the network packet.
      Signed-off-by: NJukka Rissanen <jukka.rissanen@linux.intel.com>
      Signed-off-by: NMarcel Holtmann <marcel@holtmann.org>
      Cc: stable@vger.kernel.org
      62bbd5b3
  21. 07 3月, 2014 1 次提交
  22. 07 1月, 2014 1 次提交