1. 29 11月, 2009 3 次提交
  2. 09 11月, 2009 4 次提交
  3. 13 10月, 2009 1 次提交
  4. 05 10月, 2009 1 次提交
  5. 23 9月, 2009 1 次提交
  6. 15 9月, 2009 1 次提交
  7. 04 9月, 2009 2 次提交
  8. 01 9月, 2009 1 次提交
  9. 13 8月, 2009 1 次提交
  10. 20 7月, 2009 1 次提交
  11. 09 7月, 2009 1 次提交
  12. 06 7月, 2009 2 次提交
  13. 13 6月, 2009 1 次提交
  14. 02 5月, 2009 1 次提交
  15. 21 4月, 2009 1 次提交
  16. 07 4月, 2009 1 次提交
  17. 30 3月, 2009 1 次提交
  18. 22 3月, 2009 11 次提交
  19. 04 3月, 2009 1 次提交
    • R
      net pcmcia: worklimit reaches -1 · b9bdcd9b
      Roel Kluin 提交于
      with while (--worklimit >= 0); worklimit reaches -1 after the loop. In
      3c589_cs.c this caused a warning not to be printed.
      
      In 3c574_cs.c contrastingly, el3_rx() treats worklimit differently:
      
      static int el3_rx(struct net_device *dev, int worklimit)
      {
      	while (--worklimit >= 0) { ... }
      	return worklimit;
      }
      
      el3_rx() is only called by function el3_interrupt(): twice:
      
      static irqreturn_t el3_interrupt(int irq, void *dev_id)
      {
              int work_budget = max_interrupt_work;
      	while(...) {
      		if (...)
      			work_budget = el3_rx(dev, work_budget);
      		if (...)
      			work_budget = el3_rx(dev, work_budget);
      		if (--work_budget < 0) {
      		        ...
      		        break;
      		}
      	}
      }
      The error path can occur 2 too early.
      Signed-off-by: NRoel Kluin <roel.kluin@gmail.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      b9bdcd9b
  20. 18 2月, 2009 1 次提交
  21. 04 2月, 2009 1 次提交
  22. 01 12月, 2008 1 次提交
  23. 24 11月, 2008 1 次提交