An error occurred fetching the project authors.
  1. 09 Jul, 2008 2 commits
  2. 08 Jul, 2008 1 commit
    • David S. Miller's avatar
      netdev: Create netdev_queue abstraction. · bb949fbd
      David S. Miller authored
      A netdev_queue is an entity managed by a qdisc.
      
      Currently there is one RX and one TX queue, and a netdev_queue merely
      contains a backpointer to the net_device.
      
      The Qdisc struct is augmented with a netdev_queue pointer as well.
      
      Eventually the 'dev' Qdisc member will go away and we will have the
      resulting hierarchy:
      
      	net_device --> netdev_queue --> Qdisc
      
      Also, qdisc_alloc() and qdisc_create_dflt() now take a netdev_queue
      pointer argument.
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      bb949fbd
  3. 06 Jul, 2008 4 commits
  4. 02 Jul, 2008 1 commit
  5. 16 Jun, 2008 2 commits
  6. 12 Jun, 2008 1 commit
  7. 04 May, 2008 1 commit
  8. 24 Mar, 2008 1 commit
    • Martin Devera's avatar
      sch_htb: fix "too many events" situation · 8f3ea33a
      Martin Devera authored
      HTB is event driven algorithm and part of its work is to apply
      scheduled events at proper times. It tried to defend itself from
      livelock by processing only limited number of events per dequeue.
      Because of faster computers some users already hit this hardcoded
      limit.
      
      This patch limits processing up to 2 jiffies (why not 1 jiffie ?
      because it might stop prematurely when only fraction of jiffie
      remains).
      Signed-off-by: default avatarMartin Devera <devik@cdi.cz>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      8f3ea33a
  9. 10 Feb, 2008 1 commit
  10. 28 Jan, 2008 6 commits
  11. 10 Oct, 2007 1 commit
  12. 15 Jul, 2007 1 commit
  13. 11 Jul, 2007 3 commits
  14. 24 May, 2007 1 commit
  15. 26 Apr, 2007 7 commits
  16. 27 Mar, 2007 1 commit
  17. 14 Feb, 2007 1 commit
    • Tim Schmielau's avatar
      [PATCH] remove many unneeded #includes of sched.h · cd354f1a
      Tim Schmielau authored
      After Al Viro (finally) succeeded in removing the sched.h #include in module.h
      recently, it makes sense again to remove other superfluous sched.h includes.
      There are quite a lot of files which include it but don't actually need
      anything defined in there.  Presumably these includes were once needed for
      macros that used to live in sched.h, but moved to other header files in the
      course of cleaning it up.
      
      To ease the pain, this time I did not fiddle with any header files and only
      removed #includes from .c-files, which tend to cause less trouble.
      
      Compile tested against 2.6.20-rc2 and 2.6.20-rc2-mm2 (with offsets) on alpha,
      arm, i386, ia64, mips, powerpc, and x86_64 with allnoconfig, defconfig,
      allmodconfig, and allyesconfig as well as a few randconfigs on x86_64 and all
      configs in arch/arm/configs on arm.  I also checked that no new warnings were
      introduced by the patch (actually, some warnings are removed that were emitted
      by unnecessarily included header files).
      Signed-off-by: default avatarTim Schmielau <tim@physik3.uni-rostock.de>
      Acked-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
      Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      cd354f1a
  18. 11 Feb, 2007 1 commit
  19. 09 Dec, 2006 1 commit
  20. 03 Dec, 2006 3 commits