1. 04 2月, 2009 1 次提交
  2. 01 2月, 2009 1 次提交
  3. 28 1月, 2009 1 次提交
  4. 22 1月, 2009 2 次提交
  5. 23 12月, 2008 1 次提交
  6. 04 12月, 2008 1 次提交
  7. 27 11月, 2008 1 次提交
  8. 21 11月, 2008 1 次提交
  9. 20 11月, 2008 1 次提交
  10. 16 11月, 2008 1 次提交
  11. 13 11月, 2008 1 次提交
    • W
      netdevice: safe convert to netdev_priv() #part-2 · 4cf1653a
      Wang Chen 提交于
      We have some reasons to kill netdev->priv:
      1. netdev->priv is equal to netdev_priv().
      2. netdev_priv() wraps the calculation of netdev->priv's offset, obviously
         netdev_priv() is more flexible than netdev->priv.
      But we cann't kill netdev->priv, because so many drivers reference to it
      directly.
      
      This patch is a safe convert for netdev->priv to netdev_priv(netdev).
      Since all of the netdev->priv is only for read.
      But it is too big to be sent in one mail.
      I split it to 4 parts and make every part smaller than 100,000 bytes,
      which is max size allowed by vger.
      Signed-off-by: NWang Chen <wangchen@cn.fujitsu.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      4cf1653a
  12. 04 11月, 2008 1 次提交
  13. 31 10月, 2008 1 次提交
  14. 28 10月, 2008 1 次提交
  15. 12 10月, 2008 1 次提交
  16. 10 10月, 2008 1 次提交
  17. 25 9月, 2008 1 次提交
  18. 23 7月, 2008 7 次提交
  19. 19 7月, 2008 1 次提交
  20. 17 7月, 2008 2 次提交
  21. 07 7月, 2008 1 次提交
  22. 28 6月, 2008 2 次提交
  23. 17 4月, 2008 1 次提交
  24. 26 3月, 2008 2 次提交
  25. 12 2月, 2008 1 次提交
  26. 11 2月, 2008 1 次提交
    • B
      e1000: Fix for 32 bits platforms with 64 bits resources · 3c34ac36
      Benjamin Herrenschmidt 提交于
      The e1000 driver stores the content of the PCI resources into
      unsigned long's before ioremapping. This breaks on 32 bits
      platforms that support 64 bits MMIO resources such as ppc 44x.
      
      This fixes it by removing those temporary variables and passing
      directly the result of pci_resource_start/len to ioremap.
      
      The side effect is that I removed the assignments to the netdev
      fields mem_start, mem_end and base_addr, which are totally useless
      for PCI devices.
      Signed-off-by: NBenjamin Herrenschmidt <benh@kernel.crashing.org>
      --
      
       drivers/net/e1000/e1000_main.c |   18 +++++-------------
       1 file changed, 5 insertions(+), 13 deletions(-)
      Signed-off-by: NJeff Garzik <jeff@garzik.org>
      3c34ac36
  27. 03 2月, 2008 1 次提交
  28. 30 1月, 2008 2 次提交
    • L
      [net] Gracefully handle shared e1000/1000e driver PCI ID's · 60e23317
      Linus Torvalds 提交于
      Both the old e1000 driver and the new e1000e driver can drive some
      PCI-Express e1000 cards, and we should avoid ambiguity about which
      driver will pick up the support for those cards when both drivers are
      enabled.
      
      This solves the problem by having the old driver support those cards if
      the new driver isn't configured, but otherwise ceding support for PCI
      Express versions of the e1000 chipset to the newer driver.  Thus
      allowing both legacy configurations where only the old driver is active
      (and handles all chips it knows about) and the new configuration with
      the new driver handling the more modern PCIE variants.
      Acked-by: NJeff Garzik <jeff@garzik.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      60e23317
    • L
      Mostly revert "e1000/e1000e: Move PCI-Express device IDs over to e1000e" · 5b10ca19
      Linus Torvalds 提交于
      The new e1000e driver is apparently not yet suitable for general use, so
      mark it experimental, and re-instate all the PCI-Express device IDs in
      the old and stable e1000 driver so that people (namely me) can continue
      to use a driver that actually works.
      
      Auke & co have been appraised of the situation.
      
      Cc: Auke Kok <auke-jan.h.kok@intel.com>
      Cc: Jeff Garzik <jeff@garzik.org>
      Cc: David Miller <davem@davemloft.net>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      5b10ca19
  29. 29 1月, 2008 1 次提交