1. 21 9月, 2016 2 次提交
  2. 16 7月, 2016 1 次提交
  3. 12 7月, 2016 1 次提交
  4. 10 7月, 2016 3 次提交
  5. 09 7月, 2016 1 次提交
  6. 06 7月, 2016 1 次提交
  7. 01 7月, 2016 1 次提交
  8. 17 6月, 2016 1 次提交
  9. 16 6月, 2016 3 次提交
  10. 15 6月, 2016 3 次提交
  11. 10 6月, 2016 1 次提交
  12. 04 5月, 2016 1 次提交
  13. 09 1月, 2016 3 次提交
  14. 05 1月, 2016 1 次提交
  15. 16 12月, 2015 1 次提交
    • T
      net: Rename NETIF_F_ALL_CSUM to NETIF_F_CSUM_MASK · a188222b
      Tom Herbert 提交于
      The name NETIF_F_ALL_CSUM is a misnomer. This does not correspond to the
      set of features for offloading all checksums. This is a mask of the
      checksum offload related features bits. It is incorrect to set both
      NETIF_F_HW_CSUM and NETIF_F_IP_CSUM or NETIF_F_IPV6 at the same time for
      features of a device.
      
      This patch:
        - Changes instances of NETIF_F_ALL_CSUM to NETIF_F_CSUM_MASK (where
          NETIF_F_ALL_CSUM is being used as a mask).
        - Changes bonding, sfc/efx, ipvlan, macvlan, vlan, and team drivers to
          use NEITF_F_HW_CSUM in features list instead of NETIF_F_ALL_CSUM.
      Signed-off-by: NTom Herbert <tom@herbertland.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      a188222b
  16. 09 12月, 2015 1 次提交
    • P
      r8152: fix lockup when runtime PM is enabled · 90186af4
      Peter Wu 提交于
      When an interface is brought up which was previously suspended (via
      runtime PM), it would hang. This happens because napi_disable is called
      before napi_enable.
      
      Solve this by avoiding napi_enable in the resume during open function
      (netif_running is true when open is called, IFF_UP is set after a
      successful open; netif_running is false when close is called, but IFF_UP
      is then still set).
      
      While at it, remove WORK_ENABLE check from rtl8152_open (introduced with
      the original change) because it cannot happen:
      
       - After this patch, runtime resume will not set it during rtl8152_open.
       - When link is up, rtl8152_open is not called.
       - When link is down during system/auto suspend/resume, it is not set.
      
      Fixes: 41cec84c ("r8152: don't enable napi before rx ready")
      Link: https://lkml.kernel.org/r/20151205105912.GA1766@alSigned-off-by: NPeter Wu <peter@lekensteyn.nl>
      Acked-by: NHayes Wang <hayeswang@realtek.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      90186af4
  17. 10 9月, 2015 2 次提交
  18. 01 8月, 2015 1 次提交
  19. 31 7月, 2015 2 次提交
  20. 27 7月, 2015 3 次提交
  21. 23 7月, 2015 1 次提交
  22. 09 7月, 2015 1 次提交
  23. 10 5月, 2015 1 次提交
  24. 01 4月, 2015 1 次提交
  25. 20 2月, 2015 3 次提交