1. 09 1月, 2008 1 次提交
    • M
      [NIU]: Fix slowpath interrupt handling. · 406f353c
      Matheos Worku 提交于
      niu_slowpath_interrupt() expects values to be setup in lp->{v0,v1,v2}
      but they aren't.  That's only done by niu_schedule_napi() which is
      done later in the interrupt path.
      
      If niu_rx_error() returns zero, and v0 is clear, hit the
      RX_DMA_CTL_STATE register with a RX_DMA_CTL_STAT_MEX.
      
      Only emit verbose RX error logs if a fatal channel or port error is
      signalled.  Other cases will be recorded into statistics by
      niu_log_rxchan_errors().
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      406f353c
  2. 07 12月, 2007 1 次提交
  3. 22 10月, 2007 1 次提交
    • O
      [NIU]: Cleanup PAGE_SIZE checks a bit · 81429973
      Olof Johansson 提交于
      I get the following warning from a powerpc allyesconfig of current
      mainline:
      
      drivers/net/niu.c: In function 'niu_size_rbr':
      drivers/net/niu.c:3113: warning: large integer implicitly truncated to unsigned type
      
      PAGE_SIZE in this case is 64KB, so I don't quite get why gcc can't
      tell that the line in question will never be reached.
      
      I suggest the following instead, but I can unfortunately not do
      anything but build test it.
      
      Also, the driver does some other checks to make sure that PAGE_SIZE is
      a power of two (BUILD_BUG_ON() in niu_init()), doesn't seem like that
      could ever be untrue? Or are there really archs with non-power-of-two
      PAGE_SIZE?
      Signed-off-by: NOlof Johansson <olof@lixom.net>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      81429973
  4. 16 10月, 2007 2 次提交
  5. 11 10月, 2007 1 次提交