1. 15 8月, 2009 1 次提交
  2. 04 8月, 2009 1 次提交
    • M
      sky2: Avoid transmits during sky2_down() · f6caa14a
      Mike McCormack 提交于
      This patch supersedes my previous patch "sky2: Avoid transmitting
      during sky2_restart".
      
      I have reworked the patch to avoid crashes during both sky2_restart()
      and sky2_set_ringparam().
      
      Without this patch, the sky2 driver can be crashed by doing:
      
      # pktgen eth1 &    (transmit many packets on eth1)
      # ethtool -G eth1 tx 510
      
      I am aware you object to storing extra state, but I can't see a way
      around this. Without remembering that we're restarting,
      netif_wake_queue() is called in the ISR from sky2_tx_complete(), and
      netif_tx_lock() is used in sky2_tx_done().  If anybody can see a way
      around this, please let me know.
      Signed-off-by: NMike McCormack <mikem@ring3k.org>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      f6caa14a
  3. 18 6月, 2009 1 次提交
  4. 07 8月, 2008 1 次提交
  5. 18 6月, 2008 1 次提交
  6. 31 5月, 2008 2 次提交
  7. 13 5月, 2008 1 次提交
  8. 24 2月, 2008 1 次提交
  9. 06 2月, 2008 1 次提交
  10. 29 1月, 2008 1 次提交
  11. 13 1月, 2008 1 次提交
  12. 02 12月, 2007 1 次提交
  13. 10 11月, 2007 1 次提交
  14. 12 10月, 2007 1 次提交
  15. 11 10月, 2007 4 次提交
    • S
      sky2: use pci_config access functions · 167f53d0
      Stephen Hemminger 提交于
      Use the PCI layer config access functions. The driver was using the
      memory mapped window in device, to workaround issues accessing the
      advanced error reporting registers.
      Signed-off-by: NStephen Hemminger <shemminger@linux-foundation.org>
      Signed-off-by: NJeff Garzik <jeff@garzik.org>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      167f53d0
    • S
      sky2: advanced error reporting · 555382cb
      Stephen Hemminger 提交于
      Use the kernel interfaces for advanced error reporting.
      This should be cleaner and clear up errors on boot.
      
      For those systems with busted BIOS's that don't correctly
      support mmconfig, advanced error reporting will be disabled.
      The PCI registers for advanced error reporting start at 0x100 which
      is too large to be accessed by legacy functions.
      Signed-off-by: NStephen Hemminger <shemminger@linux-foundation.org>
      Signed-off-by: NJeff Garzik <jeff@garzik.org>
      555382cb
    • S
      sky2: document GPHY_CTRL bits · efcf6e2f
      Stephen Hemminger 提交于
      Add documentation of GPHY_CTRL register bits even if driver
      is not using them (yet).
      Signed-off-by: NStephen Hemminger <shemminger@linux-foundation.org>
      Signed-off-by: NJeff Garzik <jeff@garzik.org>
      efcf6e2f
    • S
      [NET]: Make NAPI polling independent of struct net_device objects. · bea3348e
      Stephen Hemminger 提交于
      Several devices have multiple independant RX queues per net
      device, and some have a single interrupt doorbell for several
      queues.
      
      In either case, it's easier to support layouts like that if the
      structure representing the poll is independant from the net
      device itself.
      
      The signature of the ->poll() call back goes from:
      
      	int foo_poll(struct net_device *dev, int *budget)
      
      to
      
      	int foo_poll(struct napi_struct *napi, int budget)
      
      The caller is returned the number of RX packets processed (or
      the number of "NAPI credits" consumed if you want to get
      abstract).  The callee no longer messes around bumping
      dev->quota, *budget, etc. because that is all handled in the
      caller upon return.
      
      The napi_struct is to be embedded in the device driver private data
      structures.
      
      Furthermore, it is the driver's responsibility to disable all NAPI
      instances in it's ->stop() device close handler.  Since the
      napi_struct is privatized into the driver's private data structures,
      only the driver knows how to get at all of the napi_struct instances
      it may have per-device.
      
      With lots of help and suggestions from Rusty Russell, Roland Dreier,
      Michael Chan, Jeff Garzik, and Jamal Hadi Salim.
      
      Bug fixes from Thomas Graf, Roland Dreier, Peter Zijlstra,
      Joseph Fannin, Scott Wood, Hans J. Koch, and Michael Chan.
      
      [ Ported to current tree and all drivers converted.  Integrated
        Stephen's follow-on kerneldoc additions, and restored poll_list
        handling to the old style to fix mutual exclusion issues.  -DaveM ]
      Signed-off-by: NStephen Hemminger <shemminger@linux-foundation.org>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      bea3348e
  16. 25 9月, 2007 1 次提交
  17. 21 9月, 2007 4 次提交
  18. 25 8月, 2007 1 次提交
  19. 11 7月, 2007 1 次提交
  20. 09 7月, 2007 4 次提交
  21. 30 5月, 2007 2 次提交
  22. 20 4月, 2007 2 次提交
  23. 18 2月, 2007 2 次提交
  24. 08 2月, 2007 2 次提交
  25. 06 2月, 2007 1 次提交
  26. 07 12月, 2006 1 次提交