linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* VFS nr_files accounting
@ 2006-03-04 10:25 David S. Miller
  2006-03-04 14:17 ` Dipankar Sarma
  0 siblings, 1 reply; 18+ messages in thread
From: David S. Miller @ 2006-03-04 10:25 UTC (permalink / raw)
  To: linux-kernel; +Cc: dipankar, torvalds, fabbione


I just wanted to report that I am hitting the "VFS: file-max limit xxx
reached" problem quite easily on my 32-cpu Niagara machine with 16GB
of ram with current 2.6.x GIT.

It seems far too easy to get a box into this state due to SLAB
fragmentation and RCU.  And once you get a machine into this state it
is totally unusable.

Our test case is usually a "make -j8192" kernel build along with a
parallel bootstrap of gcc.  That puts about 256 processes on each
cpu's runqueue, I doubt ksoftirqd can run much at all.

I think part of what helps trigger it might be ccache, which we are
using on this machine.  ccache seems to open up a ton of files each
build invocation.

Usually within an hour of that load you'll hit the nr_files limit and
you can't run anything and have to power-cycle.

I think we need to think seriously about this problem.

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: VFS nr_files accounting
  2006-03-04 10:25 VFS nr_files accounting David S. Miller
@ 2006-03-04 14:17 ` Dipankar Sarma
  2006-03-04 22:22   ` David S. Miller
  0 siblings, 1 reply; 18+ messages in thread
From: Dipankar Sarma @ 2006-03-04 14:17 UTC (permalink / raw)
  To: David S. Miller; +Cc: linux-kernel, torvalds, fabbione

On Sat, Mar 04, 2006 at 02:25:46AM -0800, David S. Miller wrote:
> 
> I just wanted to report that I am hitting the "VFS: file-max limit xxx
> reached" problem quite easily on my 32-cpu Niagara machine with 16GB
> of ram with current 2.6.x GIT.
> 
> It seems far too easy to get a box into this state due to SLAB
> fragmentation and RCU.  And once you get a machine into this state it
> is totally unusable.
> 
> Our test case is usually a "make -j8192" kernel build along with a
> parallel bootstrap of gcc.  That puts about 256 processes on each
> cpu's runqueue, I doubt ksoftirqd can run much at all.

Dave, there is a set of patches in -mm that may handle this
better -

http://kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.16-rc5/2.6.16-rc5-mm2/broken-out/rcu-batch-tuning.patch
http://kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.16-rc5/2.6.16-rc5-mm2/broken-out/fix-file-counting.patch
http://kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.16-rc5/2.6.16-rc5-mm2/broken-out/fix-file-counting-fixes.patch

Could you please try this in your setup ?

The rcu-batch tuning patch provides automatic switching to
process as many RCUs as possible if too many of them are queued.
The file counting fixes count the file structures correctly.

Thanks
Dipankar

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: VFS nr_files accounting
  2006-03-04 14:17 ` Dipankar Sarma
@ 2006-03-04 22:22   ` David S. Miller
  2006-03-04 22:28     ` David S. Miller
  0 siblings, 1 reply; 18+ messages in thread
From: David S. Miller @ 2006-03-04 22:22 UTC (permalink / raw)
  To: dipankar; +Cc: linux-kernel, torvalds, fabbione

From: Dipankar Sarma <dipankar@in.ibm.com>
Date: Sat, 4 Mar 2006 19:47:17 +0530

> Dave, there is a set of patches in -mm that may handle this
> better -
> 
> http://kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.16-rc5/2.6.16-rc5-mm2/broken-out/rcu-batch-tuning.patch
> http://kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.16-rc5/2.6.16-rc5-mm2/broken-out/fix-file-counting.patch
> http://kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.16-rc5/2.6.16-rc5-mm2/broken-out/fix-file-counting-fixes.patch
> 
> Could you please try this in your setup ?
> 
> The rcu-batch tuning patch provides automatic switching to
> process as many RCUs as possible if too many of them are queued.
> The file counting fixes count the file structures correctly.

Thanks, I'll give these patches a spin.

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: VFS nr_files accounting
  2006-03-04 22:22   ` David S. Miller
@ 2006-03-04 22:28     ` David S. Miller
  2006-03-04 22:32       ` David S. Miller
  0 siblings, 1 reply; 18+ messages in thread
From: David S. Miller @ 2006-03-04 22:28 UTC (permalink / raw)
  To: dipankar; +Cc: linux-kernel, torvalds, fabbione

From: "David S. Miller" <davem@davemloft.net>
Date: Sat, 04 Mar 2006 14:22:02 -0800 (PST)

> From: Dipankar Sarma <dipankar@in.ibm.com>
> Date: Sat, 4 Mar 2006 19:47:17 +0530
> 
> > Dave, there is a set of patches in -mm that may handle this
> > better -
> > 
> > http://kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.16-rc5/2.6.16-rc5-mm2/broken-out/rcu-batch-tuning.patch
> > http://kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.16-rc5/2.6.16-rc5-mm2/broken-out/fix-file-counting.patch
> > http://kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.16-rc5/2.6.16-rc5-mm2/broken-out/fix-file-counting-fixes.patch
> > 
> > Could you please try this in your setup ?
> > 
> > The rcu-batch tuning patch provides automatic switching to
> > process as many RCUs as possible if too many of them are queued.
> > The file counting fixes count the file structures correctly.
> 
> Thanks, I'll give these patches a spin.

Sigh, this is going to take a while, because there are -mm
dependencies in these patches such as percpu_counter_sum().

I'll have to fish those out of -mm before I can start testing
this.

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: VFS nr_files accounting
  2006-03-04 22:28     ` David S. Miller
@ 2006-03-04 22:32       ` David S. Miller
  2006-03-05  7:05         ` Dipankar Sarma
  0 siblings, 1 reply; 18+ messages in thread
From: David S. Miller @ 2006-03-04 22:32 UTC (permalink / raw)
  To: dipankar; +Cc: linux-kernel, torvalds, fabbione

From: "David S. Miller" <davem@davemloft.net>
Date: Sat, 04 Mar 2006 14:28:21 -0800 (PST)

> Sigh, this is going to take a while, because there are -mm
> dependencies in these patches such as percpu_counter_sum().
> 
> I'll have to fish those out of -mm before I can start testing
> this.

And now that I've sucked in percpu_counter_sum.patch, the
rcu-batch-tuning.patch gets a bunch of rejects.

Sorry, I really can't test this.  Can you by chance put together a
patch against vanilla 2.6.16-GIT?  We'll need that to put a fix
for this bug into Linus's tree anyways.

Thanks.

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: VFS nr_files accounting
  2006-03-04 22:32       ` David S. Miller
@ 2006-03-05  7:05         ` Dipankar Sarma
  2006-03-05  7:37           ` David S. Miller
  0 siblings, 1 reply; 18+ messages in thread
From: Dipankar Sarma @ 2006-03-05  7:05 UTC (permalink / raw)
  To: David S. Miller; +Cc: linux-kernel, torvalds, fabbione

On Sat, Mar 04, 2006 at 02:32:22PM -0800, David S. Miller wrote:
> From: "David S. Miller" <davem@davemloft.net>
> Date: Sat, 04 Mar 2006 14:28:21 -0800 (PST)
> 
> And now that I've sucked in percpu_counter_sum.patch, the
> rcu-batch-tuning.patch gets a bunch of rejects.
> 
> Sorry, I really can't test this.  Can you by chance put together a
> patch against vanilla 2.6.16-GIT?  We'll need that to put a fix
> for this bug into Linus's tree anyways.

Dave,

Can you check if the following patchset applies to the latest git ?
These were against 2.6.16-rc3.

http://www.hill9.org/linux/kernel/patches/2.6.16-rc3/rcu-batch-tuning.patch
http://www.hill9.org/linux/kernel/patches/2.6.16-rc3/percpu-counter-sum.patch
http://www.hill9.org/linux/kernel/patches/2.6.16-rc3/fix-file-counting.patch

Thanks
Dipankar

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: VFS nr_files accounting
  2006-03-05  7:05         ` Dipankar Sarma
@ 2006-03-05  7:37           ` David S. Miller
  2006-03-05 11:38             ` Dipankar Sarma
  0 siblings, 1 reply; 18+ messages in thread
From: David S. Miller @ 2006-03-05  7:37 UTC (permalink / raw)
  To: dipankar; +Cc: linux-kernel, torvalds, fabbione

From: Dipankar Sarma <dipankar@in.ibm.com>
Date: Sun, 5 Mar 2006 12:35:38 +0530

> Can you check if the following patchset applies to the latest git ?
> These were against 2.6.16-rc3.
> 
> http://www.hill9.org/linux/kernel/patches/2.6.16-rc3/rcu-batch-tuning.patch
> http://www.hill9.org/linux/kernel/patches/2.6.16-rc3/percpu-counter-sum.patch
> http://www.hill9.org/linux/kernel/patches/2.6.16-rc3/fix-file-counting.patch

Applies with some fuzz to kernel/sysctl.c

Thanks a lot!

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: VFS nr_files accounting
  2006-03-05  7:37           ` David S. Miller
@ 2006-03-05 11:38             ` Dipankar Sarma
  2006-03-06 20:39               ` David S. Miller
  0 siblings, 1 reply; 18+ messages in thread
From: Dipankar Sarma @ 2006-03-05 11:38 UTC (permalink / raw)
  To: David S. Miller; +Cc: linux-kernel, torvalds, fabbione

On Sat, Mar 04, 2006 at 11:37:25PM -0800, David S. Miller wrote:
> From: Dipankar Sarma <dipankar@in.ibm.com>
> Date: Sun, 5 Mar 2006 12:35:38 +0530
> 
> > Can you check if the following patchset applies to the latest git ?
> > These were against 2.6.16-rc3.
> > 
> > http://www.hill9.org/linux/kernel/patches/2.6.16-rc3/rcu-batch-tuning.patch
> > http://www.hill9.org/linux/kernel/patches/2.6.16-rc3/percpu-counter-sum.patch
> > http://www.hill9.org/linux/kernel/patches/2.6.16-rc3/fix-file-counting.patch
> 
> Applies with some fuzz to kernel/sysctl.c

Great. I look forward to hearing from you about the results
with your test case.

Thanks
Dipankar

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: VFS nr_files accounting
  2006-03-05 11:38             ` Dipankar Sarma
@ 2006-03-06 20:39               ` David S. Miller
  2006-03-07  6:41                 ` Dipankar Sarma
  0 siblings, 1 reply; 18+ messages in thread
From: David S. Miller @ 2006-03-06 20:39 UTC (permalink / raw)
  To: dipankar; +Cc: linux-kernel, torvalds, fabbione

From: Dipankar Sarma <dipankar@in.ibm.com>
Date: Sun, 5 Mar 2006 17:08:47 +0530

> Great. I look forward to hearing from you about the results
> with your test case.

It works quite fine so far, I haven't seen the filp exhaustion
nor a highly fragmented filp SLAB.

Instead, I'm not hitting other bugs that are of my own doing
on Niagara, which is what I wanted to accomplish with these
stress tests in the first place :-)

I think we should seriously consider these patches for 2.6.16

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: VFS nr_files accounting
  2006-03-06 20:39               ` David S. Miller
@ 2006-03-07  6:41                 ` Dipankar Sarma
  2006-03-07  6:47                   ` David S. Miller
                                     ` (2 more replies)
  0 siblings, 3 replies; 18+ messages in thread
From: Dipankar Sarma @ 2006-03-07  6:41 UTC (permalink / raw)
  To: David S. Miller; +Cc: linux-kernel, torvalds, fabbione, Andrew Morton

On Mon, Mar 06, 2006 at 12:39:04PM -0800, David S. Miller wrote:
> From: Dipankar Sarma <dipankar@in.ibm.com>
> Date: Sun, 5 Mar 2006 17:08:47 +0530
> 
> > Great. I look forward to hearing from you about the results
> > with your test case.
> 
> It works quite fine so far, I haven't seen the filp exhaustion
> nor a highly fragmented filp SLAB.

Good to hear that.

> Instead, I'm not hitting other bugs that are of my own doing
> on Niagara, which is what I wanted to accomplish with these
> stress tests in the first place :-)

Not good :)

> I think we should seriously consider these patches for 2.6.16

Isn't it a little too late in the 2.6.16 cycle ? I would have
liked a little more time in -mm. Anyway, it is Linus' call. 
I can refresh the patches and submit against latest mainline
if Linus and Andrew want.

Thanks
Dipankar

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: VFS nr_files accounting
  2006-03-07  6:41                 ` Dipankar Sarma
@ 2006-03-07  6:47                   ` David S. Miller
  2006-03-07  8:02                     ` Dipankar Sarma
  2006-03-07  6:53                   ` Nick Piggin
  2006-03-07  7:06                   ` Andrew Morton
  2 siblings, 1 reply; 18+ messages in thread
From: David S. Miller @ 2006-03-07  6:47 UTC (permalink / raw)
  To: dipankar; +Cc: linux-kernel, torvalds, fabbione, akpm

From: Dipankar Sarma <dipankar@in.ibm.com>
Date: Tue, 7 Mar 2006 12:11:20 +0530

> On Mon, Mar 06, 2006 at 12:39:04PM -0800, David S. Miller wrote:
> > I think we should seriously consider these patches for 2.6.16
> 
> Isn't it a little too late in the 2.6.16 cycle ? I would have
> liked a little more time in -mm. Anyway, it is Linus' call. 
> I can refresh the patches and submit against latest mainline
> if Linus and Andrew want.

Users can run widely published programs to make one's system run out
of file descriptors and make the machine totaly unusable.

If that doesn't qualify for something to fix for 2.6.16 I don't know
what does.  :-)

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: VFS nr_files accounting
  2006-03-07  6:41                 ` Dipankar Sarma
  2006-03-07  6:47                   ` David S. Miller
@ 2006-03-07  6:53                   ` Nick Piggin
  2006-03-07  7:00                     ` David S. Miller
  2006-03-07  7:06                   ` Andrew Morton
  2 siblings, 1 reply; 18+ messages in thread
From: Nick Piggin @ 2006-03-07  6:53 UTC (permalink / raw)
  To: dipankar; +Cc: David S. Miller, linux-kernel, torvalds, fabbione, Andrew Morton

Dipankar Sarma wrote:
> On Mon, Mar 06, 2006 at 12:39:04PM -0800, David S. Miller wrote:

>>I think we should seriously consider these patches for 2.6.16
> 
> 
> Isn't it a little too late in the 2.6.16 cycle ? I would have
> liked a little more time in -mm. Anyway, it is Linus' call. 
> I can refresh the patches and submit against latest mainline
> if Linus and Andrew want.
> 

If it is making the machine unusable then it is a bug rather than
just poor behaviour, and definitely a regression.

I think this is very good grounds to get into 2.6.16, even if it
does mean pushing the release back.

The other thing that is typically done for regressions like these
close to release time is to revert the offending changes. I figure
that in this case, such an option is probably _more_ risky.

-- 
SUSE Labs, Novell Inc.
Send instant messages to your online friends http://au.messenger.yahoo.com 

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: VFS nr_files accounting
  2006-03-07  6:53                   ` Nick Piggin
@ 2006-03-07  7:00                     ` David S. Miller
  2006-03-07  8:09                       ` Dipankar Sarma
  0 siblings, 1 reply; 18+ messages in thread
From: David S. Miller @ 2006-03-07  7:00 UTC (permalink / raw)
  To: nickpiggin; +Cc: dipankar, linux-kernel, torvalds, fabbione, akpm

From: Nick Piggin <nickpiggin@yahoo.com.au>
Date: Tue, 07 Mar 2006 17:53:14 +1100

> The other thing that is typically done for regressions like these
> close to release time is to revert the offending changes. I figure
> that in this case, such an option is probably _more_ risky.

Especially since we're talking about something that went into
2.6.14

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: VFS nr_files accounting
  2006-03-07  6:41                 ` Dipankar Sarma
  2006-03-07  6:47                   ` David S. Miller
  2006-03-07  6:53                   ` Nick Piggin
@ 2006-03-07  7:06                   ` Andrew Morton
  2006-03-07 12:09                     ` Dipankar Sarma
  2 siblings, 1 reply; 18+ messages in thread
From: Andrew Morton @ 2006-03-07  7:06 UTC (permalink / raw)
  To: dipankar; +Cc: davem, linux-kernel, torvalds, fabbione

Dipankar Sarma <dipankar@in.ibm.com> wrote:
>
>  > I think we should seriously consider these patches for 2.6.16
> 
>  Isn't it a little too late in the 2.6.16 cycle ? I would have
>  liked a little more time in -mm. Anyway, it is Linus' call. 
>  I can refresh the patches and submit against latest mainline
>  if Linus and Andrew want.

I'd view a 2.6.16 merge as relatively low-risk.  My main concern would be
possible breakage of those whacky route-cache workloads.

(I've consoldidated the patches and rebased them against mainline).

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: VFS nr_files accounting
  2006-03-07  6:47                   ` David S. Miller
@ 2006-03-07  8:02                     ` Dipankar Sarma
  0 siblings, 0 replies; 18+ messages in thread
From: Dipankar Sarma @ 2006-03-07  8:02 UTC (permalink / raw)
  To: David S. Miller; +Cc: linux-kernel, torvalds, fabbione, akpm

On Mon, Mar 06, 2006 at 10:47:48PM -0800, David S. Miller wrote:
> From: Dipankar Sarma <dipankar@in.ibm.com>
> Date: Tue, 7 Mar 2006 12:11:20 +0530
> 
> > On Mon, Mar 06, 2006 at 12:39:04PM -0800, David S. Miller wrote:
> > > I think we should seriously consider these patches for 2.6.16
> > 
> > Isn't it a little too late in the 2.6.16 cycle ? I would have
> > liked a little more time in -mm. Anyway, it is Linus' call. 
> > I can refresh the patches and submit against latest mainline
> > if Linus and Andrew want.
> 
> Users can run widely published programs to make one's system run out
> of file descriptors and make the machine totaly unusable.
> 
> If that doesn't qualify for something to fix for 2.6.16 I don't know
> what does.  :-)

Not many people have access to shiny new 8-core 32-thread CPUs
(/me turns green saying this) :-)

To be honest I thought Linus' earlier fix that increased
RCU maximum batch size to 1000 had more or less fixed
the issue for most people. I haven't seen it in my testing,
but I agree that we have to take OOMs seriously. I am just being
paranoic here.

Thanks
Dipankar

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: VFS nr_files accounting
  2006-03-07  7:00                     ` David S. Miller
@ 2006-03-07  8:09                       ` Dipankar Sarma
  2006-03-07  8:55                         ` Fabio Massimo Di Nitto
  0 siblings, 1 reply; 18+ messages in thread
From: Dipankar Sarma @ 2006-03-07  8:09 UTC (permalink / raw)
  To: David S. Miller; +Cc: nickpiggin, linux-kernel, torvalds, fabbione, akpm

On Mon, Mar 06, 2006 at 11:00:30PM -0800, David S. Miller wrote:
> From: Nick Piggin <nickpiggin@yahoo.com.au>
> Date: Tue, 07 Mar 2006 17:53:14 +1100
> 
> > The other thing that is typically done for regressions like these
> > close to release time is to revert the offending changes. I figure
> > that in this case, such an option is probably _more_ risky.
> 
> Especially since we're talking about something that went into
> 2.6.14

Without a doubt, yes. Waaaay more risky. Compared to that the
rcu-batch-tuning and fix-file-counting are a cakewalk. It would
however be nice if Christoph or Viro gives the file counting
patch a look-over just so that I didn't break any sysctl
stuff.

Thanks
Dipankar

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: VFS nr_files accounting
  2006-03-07  8:09                       ` Dipankar Sarma
@ 2006-03-07  8:55                         ` Fabio Massimo Di Nitto
  0 siblings, 0 replies; 18+ messages in thread
From: Fabio Massimo Di Nitto @ 2006-03-07  8:55 UTC (permalink / raw)
  To: dipankar; +Cc: David S. Miller, nickpiggin, linux-kernel, torvalds, akpm

Dipankar Sarma wrote:
> On Mon, Mar 06, 2006 at 11:00:30PM -0800, David S. Miller wrote:
>> From: Nick Piggin <nickpiggin@yahoo.com.au>
>> Date: Tue, 07 Mar 2006 17:53:14 +1100
>>
>>> The other thing that is typically done for regressions like these
>>> close to release time is to revert the offending changes. I figure
>>> that in this case, such an option is probably _more_ risky.
>> Especially since we're talking about something that went into
>> 2.6.14
> 
> Without a doubt, yes. Waaaay more risky. Compared to that the
> rcu-batch-tuning and fix-file-counting are a cakewalk. It would
> however be nice if Christoph or Viro gives the file counting
> patch a look-over just so that I didn't break any sysctl
> stuff.
> 
> Thanks
> Dipankar

Considering the impact of the problem, wouldn't be wise to push
the fix to -stable as well?

Thanks
Fabio

-- 
I'm going to make him an offer he can't refuse.

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: VFS nr_files accounting
  2006-03-07  7:06                   ` Andrew Morton
@ 2006-03-07 12:09                     ` Dipankar Sarma
  0 siblings, 0 replies; 18+ messages in thread
From: Dipankar Sarma @ 2006-03-07 12:09 UTC (permalink / raw)
  To: Andrew Morton; +Cc: davem, linux-kernel, torvalds, fabbione

On Mon, Mar 06, 2006 at 11:06:39PM -0800, Andrew Morton wrote:
> Dipankar Sarma <dipankar@in.ibm.com> wrote:
> >
> >  > I think we should seriously consider these patches for 2.6.16
> > 
> >  Isn't it a little too late in the 2.6.16 cycle ? I would have
> >  liked a little more time in -mm. Anyway, it is Linus' call. 
> >  I can refresh the patches and submit against latest mainline
> >  if Linus and Andrew want.
> 
> I'd view a 2.6.16 merge as relatively low-risk.  My main concern would be
> possible breakage of those whacky route-cache workloads.

Yes, I was hoping that more time in -mm would bring out those
whacky corner case OOM/latency problems. 

Anyway, here is the kernel paramenter documentation patch.
I am not sure if I got the restrictions in square bracket
right.

Thanks
Dipankar



Update kernel paramenters documentation for new RCU tuning
paramenters.

Signed-off-by: Dipankar Sarma <dipankar@in.ibm.com>
---


 Documentation/kernel-parameters.txt |   13 +++++++++++++
 1 files changed, 13 insertions(+)

diff -puN Documentation/kernel-parameters.txt~rcu-tuning-parm-doc Documentation/kernel-parameters.txt
--- linux-2.6.16-rc3-rcu/Documentation/kernel-parameters.txt~rcu-tuning-parm-doc	2006-03-07 17:23:52.000000000 +0530
+++ linux-2.6.16-rc3-rcu-dipankar/Documentation/kernel-parameters.txt	2006-03-07 17:33:59.000000000 +0530
@@ -1280,6 +1280,19 @@ running once the system is up.
 			New name for the ramdisk parameter.
 			See Documentation/ramdisk.txt.
 
+	rcu.blimit=	[KNL,BOOT] Set maximum number of finished
+			RCU callbacks to process in one batch.
+
+	rcu.qhimark=	[KNL,BOOT] Set threshold of queued
+			RCU callbacks over which batch limiting is disabled.
+
+	rcu.qlowmark=	[KNL,BOOT] Set threshold of queued
+			RCU callbacks below which batch limiting is re-enabled.
+
+	rcu.rsinterval=	[KNL,BOOT,SMP] Set the number of additional
+			RCU callbacks to queued before forcing reschedule
+			on all cpus.
+
 	rdinit=		[KNL]
 			Format: <full_path>
 			Run specified binary instead of /init from the ramdisk,

_

^ permalink raw reply	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2006-03-07 12:10 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-03-04 10:25 VFS nr_files accounting David S. Miller
2006-03-04 14:17 ` Dipankar Sarma
2006-03-04 22:22   ` David S. Miller
2006-03-04 22:28     ` David S. Miller
2006-03-04 22:32       ` David S. Miller
2006-03-05  7:05         ` Dipankar Sarma
2006-03-05  7:37           ` David S. Miller
2006-03-05 11:38             ` Dipankar Sarma
2006-03-06 20:39               ` David S. Miller
2006-03-07  6:41                 ` Dipankar Sarma
2006-03-07  6:47                   ` David S. Miller
2006-03-07  8:02                     ` Dipankar Sarma
2006-03-07  6:53                   ` Nick Piggin
2006-03-07  7:00                     ` David S. Miller
2006-03-07  8:09                       ` Dipankar Sarma
2006-03-07  8:55                         ` Fabio Massimo Di Nitto
2006-03-07  7:06                   ` Andrew Morton
2006-03-07 12:09                     ` Dipankar Sarma

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).