1. 26 11月, 2012 1 次提交
  2. 14 11月, 2012 1 次提交
  3. 27 10月, 2012 1 次提交
  4. 18 10月, 2012 1 次提交
  5. 17 10月, 2012 3 次提交
  6. 20 9月, 2012 1 次提交
  7. 07 9月, 2012 1 次提交
  8. 20 8月, 2012 1 次提交
  9. 31 7月, 2012 2 次提交
  10. 24 6月, 2012 1 次提交
    • J
      mac80211: clean up debugging · bdcbd8e0
      Johannes Berg 提交于
      There are a few things that make the logging and
      debugging in mac80211 less useful than it should
      be right now:
       * a lot of messages should be pr_info, not pr_debug
       * wholesale use of pr_debug makes it require *both*
         Kconfig and dynamic configuration
       * there are still a lot of ifdefs
       * the style is very inconsistent, sometimes the
         sdata->name is printed in front
      
      Clean up everything, introducing new macros and
      separating out the station MLME debugging into
      a new Kconfig symbol.
      Signed-off-by: NJohannes Berg <johannes.berg@intel.com>
      bdcbd8e0
  11. 22 6月, 2012 1 次提交
  12. 21 6月, 2012 1 次提交
  13. 06 6月, 2012 3 次提交
  14. 17 5月, 2012 1 次提交
  15. 16 5月, 2012 1 次提交
  16. 10 5月, 2012 1 次提交
    • J
      mac80211: Convert compare_ether_addr to ether_addr_equal · b203ca39
      Joe Perches 提交于
      Use the new bool function ether_addr_equal to add
      some clarity and reduce the likelihood for misuse
      of compare_ether_addr for sorting.
      
      Done via cocci script:
      
      $ cat compare_ether_addr.cocci
      @@
      expression a,b;
      @@
      -	!compare_ether_addr(a, b)
      +	ether_addr_equal(a, b)
      
      @@
      expression a,b;
      @@
      -	compare_ether_addr(a, b)
      +	!ether_addr_equal(a, b)
      
      @@
      expression a,b;
      @@
      -	!ether_addr_equal(a, b) == 0
      +	ether_addr_equal(a, b)
      
      @@
      expression a,b;
      @@
      -	!ether_addr_equal(a, b) != 0
      +	!ether_addr_equal(a, b)
      
      @@
      expression a,b;
      @@
      -	ether_addr_equal(a, b) == 0
      +	!ether_addr_equal(a, b)
      
      @@
      expression a,b;
      @@
      -	ether_addr_equal(a, b) != 0
      +	ether_addr_equal(a, b)
      
      @@
      expression a,b;
      @@
      -	!!ether_addr_equal(a, b)
      +	ether_addr_equal(a, b)
      Signed-off-by: NJoe Perches <joe@perches.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      b203ca39
  17. 09 5月, 2012 1 次提交
  18. 18 4月, 2012 1 次提交
  19. 12 4月, 2012 1 次提交
  20. 11 4月, 2012 1 次提交
  21. 10 4月, 2012 1 次提交
  22. 06 3月, 2012 1 次提交
  23. 28 2月, 2012 1 次提交
  24. 07 2月, 2012 1 次提交
  25. 31 1月, 2012 2 次提交
  26. 28 1月, 2012 1 次提交
  27. 25 1月, 2012 6 次提交
  28. 13 1月, 2012 1 次提交
  29. 16 12月, 2011 1 次提交