1. 11 10月, 2007 2 次提交
    • D
      drivers/net/cxgb3: removed several unneeded zero initilization · c54f5c24
      Denis Cheng 提交于
      Cc: linux-bugs@chelsio.com
      Signed-off-by: NDenis Cheng <crquan@gmail.com>
      Signed-off-by: NJeff Garzik <jeff@garzik.org>
      c54f5c24
    • 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
  2. 31 8月, 2007 2 次提交
  3. 01 8月, 2007 1 次提交
  4. 27 7月, 2007 1 次提交
  5. 11 7月, 2007 1 次提交
  6. 10 7月, 2007 1 次提交
    • S
      RDMA/cxgb3: Streaming -> RDMA mode transition fixes · de3d3530
      Steve Wise 提交于
      Due to a HW issue, our current scheme to transition the connection from
      streaming to rdma mode is broken on the passive side.  The firmware
      and driver now support a new transition scheme for the passive side:
      
       - driver posts rdma_init_wr (now including the initial receive seqno)
       - driver posts last streaming message via TX_DATA message (MPA start
         response)
       - uP atomically sends the last streaming message and transitions the
         tcb to rdma mode.
       - driver waits for wr_ack indicating the last streaming message was ACKed.
      
      NOTE: This change also bumps the required firmware version to 4.3.
      Signed-off-by: NSteve Wise <swise@opengridcomputing.com>
      Signed-off-by: NRoland Dreier <rolandd@cisco.com>
      de3d3530
  7. 09 7月, 2007 3 次提交
  8. 27 6月, 2007 1 次提交
  9. 21 6月, 2007 5 次提交
  10. 03 6月, 2007 1 次提交
  11. 07 5月, 2007 1 次提交
  12. 26 4月, 2007 12 次提交
  13. 20 4月, 2007 2 次提交
  14. 11 4月, 2007 3 次提交
  15. 04 4月, 2007 4 次提交