1. 16 11月, 2019 4 次提交
  2. 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
  3. 23 10月, 2019 8 次提交
  4. 11 10月, 2019 1 次提交
  5. 10 10月, 2019 4 次提交
  6. 27 6月, 2019 1 次提交
  7. 13 4月, 2019 3 次提交
  8. 13 2月, 2019 1 次提交
  9. 08 2月, 2019 1 次提交
  10. 05 2月, 2019 1 次提交
  11. 02 2月, 2019 1 次提交
  12. 24 11月, 2018 3 次提交
  13. 22 11月, 2018 2 次提交
  14. 27 10月, 2018 1 次提交
  15. 17 8月, 2018 1 次提交
  16. 26 7月, 2018 2 次提交
  17. 30 6月, 2018 3 次提交
  18. 19 6月, 2018 1 次提交
  19. 24 5月, 2018 1 次提交
    • U
      net/smc: longer delay when freeing client link groups · 7f58a1ad
      Ursula Braun 提交于
      Client link group creation always follows the server linkgroup creation.
      If peer creates a new server link group, client has to create a new
      client link group. If peer reuses a server link group for a new
      connection, client has to reuse its client link group as well. To
      avoid out-of-sync conditions for link groups a longer delay for
      for client link group removal is defined to make sure this link group
      still exists, once the peer decides to reuse a server link group.
      
      Currently the client link group delay time is just 10 jiffies larger
      than the server link group delay time. This patch increases the delay
      difference to 10 seconds to have a better protection against
      out-of-sync link groups.
      Signed-off-by: NUrsula Braun <ubraun@linux.ibm.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      7f58a1ad