1. 17 11月, 2019 4 次提交
  2. 16 11月, 2019 8 次提交
  3. 07 11月, 2019 1 次提交
  4. 30 10月, 2019 1 次提交
  5. 26 10月, 2019 2 次提交
  6. 25 10月, 2019 1 次提交
    • T
      net: remove unnecessary variables and callback · f3b0a18b
      Taehee Yoo 提交于
      This patch removes variables and callback these are related to the nested
      device structure.
      devices that can be nested have their own nest_level variable that
      represents the depth of nested devices.
      In the previous patch, new {lower/upper}_level variables are added and
      they replace old private nest_level variable.
      So, this patch removes all 'nest_level' variables.
      
      In order to avoid lockdep warning, ->ndo_get_lock_subclass() was added
      to get lockdep subclass value, which is actually lower nested depth value.
      But now, they use the dynamic lockdep key to avoid lockdep warning instead
      of the subclass.
      So, this patch removes ->ndo_get_lock_subclass() callback.
      Signed-off-by: NTaehee Yoo <ap420073@gmail.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      f3b0a18b
  7. 23 10月, 2019 8 次提交
  8. 11 10月, 2019 3 次提交
  9. 10 10月, 2019 5 次提交
  10. 21 8月, 2019 1 次提交
    • J
      net/smc: make sure EPOLLOUT is raised · 4651d180
      Jason Baron 提交于
      Currently, we are only explicitly setting SOCK_NOSPACE on a write timeout
      for non-blocking sockets. Epoll() edge-trigger mode relies on SOCK_NOSPACE
      being set when -EAGAIN is returned to ensure that EPOLLOUT is raised.
      Expand the setting of SOCK_NOSPACE to non-blocking sockets as well that can
      use SO_SNDTIMEO to adjust their write timeout. This mirrors the behavior
      that Eric Dumazet introduced for tcp sockets.
      Signed-off-by: NJason Baron <jbaron@akamai.com>
      Cc: Eric Dumazet <edumazet@google.com>
      Cc: Ursula Braun <ubraun@linux.ibm.com>
      Cc: Karsten Graul <kgraul@linux.ibm.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      4651d180
  11. 06 8月, 2019 2 次提交
  12. 28 6月, 2019 1 次提交
  13. 27 6月, 2019 2 次提交
  14. 03 6月, 2019 1 次提交