Re: [patch] tlb flush_data: replace per_cpu with an array

From: Andi Kleen
Date: Mon Jan 12 2009 - 21:29:20 EST


> No distro kernel will build with less than 8 CPUs anyway so this point is
> moot.

It has nothing to do with what the distro kernel builds with. As I stated
clearly in my review the per cpu data is sized based on the possible map,
which is discovered from the BIOS at runtime. So if your system has two cores
only you will only have two copies of per cpu data.

With this patch on the other hand you will always have 8 copies
of this data; aka 1K no matter how many CPUs you have.

So the description that it saves memory is flat out
wrong on any system with less than 8 threads (which
is by far the biggest majority of systems currently
and in the forseeable future)

> > You would need to cache line pad each entry then, otherwise you risk
> > false sharing. [...]
>
> They are already cache line padded.

Yes that's the problem here.

>
> > [...] That would make the array 1K on 128 bytes cache line system.
>
> 512 bytes.

8 * 128 = 1024

Ok the real waste is a little less because you need at least one copy,
but still considerable. (896 bytes on UP, 768 bytes on 2C)


>
> > [...] This means on small systems this would actually waste much more
> > memory.
>
> Really small systems will be UP and wont do cross-CPU TLB flushes, so if
> they are a worry the flush code can be UP optimized. (Nobody bothered so
> far.)

The SMP flush code shouldn't be called at all on UP because the "other cpu"
mask is always empty.

Just talking about the memory. Sure it's only 1K (or 896 bytes), but if you
add up a lot of little 896byte wastes you eventually get a lot of waste all over.

Anyways if you wanted to do this without using per cpu data you
could use alloc_percpu(), but that would be much more complicated
code.

-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/