Re: [PATCH v2 1/2] tmpfs: Quick token library to allow scalableretrieval of tokens from token jar

From: Andi Kleen
Date: Sat Jun 12 2010 - 03:36:49 EST


On Fri, Jun 11, 2010 at 04:54:25PM -0700, Andrew Morton wrote:
> > > spin_lock(&sbinfo->stat_lock);
> > > - if (sbinfo->free_blocks <= 1) {
> > > + if (percpu_counter_read(&sbinfo->free_blocks) <= 1) {
> > > spin_unlock(&sbinfo->stat_lock);
> >
> > Thanks for pointing me to look at this alternative implementation.
> >
> > However, looking at the percpu counter code, it appears that the
> > percpu_counter_read is imprecise.
>
> Sure, that's inevitable if we want to avoid one-atomic-op-per-operation.

Only if you use the wrong primitive.
It's not inevitable as qtoken has proven.

> percpu_counters have a precise limit too! It's
> percpu_counter_batch*num_online_cpus. You can implement your own
> tolerance by not using percpu_counter_batch: pass your own batch into
> __percpu_counter_add().

Such a batch could be rather large on a large system.

e.g. on a 32 CPU system with batch 16 it's already 2MB.

> There's a trick that can be done to improve accuracy. When checking to
> see if the fs is full, use percpu_counter_read(). If the number that
> percpu_counter_read() returns is "close" to max_blocks, then start
> using the more expensive percpu_counter_sum(). So the kernel will be
> fast, until the disk gets to within (batch*num_online_cpus) blocks of
> being full.

Ok it would work, but you would get a big dip in performance
once you're near the limit.

And the more CPUs you have the larger this window of slowness becomes.

>
> This is not the first time I've seen that requirement, and it would be
> a good idea to implement the concept within an addition to the
> percpu_counter library. Say, percpu_counter_compare().

But why not just use qtoken which solves this without any hacks?

I still think qtoken is a better proposal. Even if it's a bit more
code, but at least it solves this all cleanly without hacks and
arbitary limits.

Given perhaps it needs other users to really pay of its code weight.
I'll see if I can find any others.

-Andi
--
ak@xxxxxxxxxxxxxxx -- Speaking for myself only.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/