1. 10 1月, 2017 5 次提交
  2. 07 1月, 2017 2 次提交
  3. 05 1月, 2017 4 次提交
  4. 30 12月, 2016 1 次提交
  5. 03 12月, 2016 2 次提交
  6. 30 11月, 2016 1 次提交
  7. 16 11月, 2016 1 次提交
  8. 13 10月, 2016 1 次提交
    • J
      net: deprecate eth_change_mtu, remove usage · a52ad514
      Jarod Wilson 提交于
      With centralized MTU checking, there's nothing productive done by
      eth_change_mtu that isn't already done in dev_set_mtu, so mark it as
      deprecated and remove all usage of it in the kernel. All callers have been
      audited for calls to alloc_etherdev* or ether_setup directly, which means
      they all have a valid dev->min_mtu and dev->max_mtu. Now eth_change_mtu
      prints out a netdev_warn about being deprecated, for the benefit of
      out-of-tree drivers that might be utilizing it.
      
      Of note, dvb_net.c actually had dev->mtu = 4096, while using
      eth_change_mtu, meaning that if you ever tried changing it's mtu, you
      couldn't set it above 1500 anymore. It's now getting dev->max_mtu also set
      to 4096 to remedy that.
      
      v2: fix up lantiq_etop, missed breakage due to drive not compiling on x86
      
      CC: netdev@vger.kernel.org
      Signed-off-by: NJarod Wilson <jarod@redhat.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      a52ad514
  9. 28 9月, 2016 1 次提交
  10. 11 9月, 2016 1 次提交
  11. 31 8月, 2016 1 次提交
  12. 21 8月, 2016 2 次提交
  13. 11 8月, 2016 3 次提交
  14. 10 8月, 2016 1 次提交
    • N
      ravb: add sleep PM suspend/resume support · 0184165b
      Niklas Söderlund 提交于
      The interface would not function after the system had been woken up
      after have been suspended (echo mem > /sys/power/state) cycle. The
      reason for this is that all device registers have been reset to its
      default values. This patch adds sleep suspend and resume functions that
      detached the interface at suspend and restore the registers and reattach
      the interface at resume.
      
      Only the registers that are only configured at probe time needs to be
      explicitly restored by the resume handler. All other registers are
      reconfigured by either reopening the device in the resume handler (if
      the device was running when the system was suspended) or when the
      interface is opened by a user at a later time.
      Signed-off-by: NNiklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      0184165b
  15. 02 8月, 2016 2 次提交
  16. 20 7月, 2016 2 次提交
  17. 02 6月, 2016 3 次提交
  18. 18 5月, 2016 1 次提交
  19. 10 5月, 2016 1 次提交
  20. 09 5月, 2016 2 次提交
  21. 04 5月, 2016 1 次提交
  22. 27 4月, 2016 2 次提交