Messages in this thread |  | | | Date | Mon, 12 Jan 2009 11:23:27 -0600 (CST) | | From | Christoph Lameter <> | | Subject | Re: regarding the x86_64 zero-based percpu patches |
| |
On Sat, 10 Jan 2009, Rusty Russell wrote:
> > As I was trying to do more stuff per-cpu > > (not putting a lot of stuff into per-cpu area but even with small > > things limited per-cpu area poses scalability problems), cpu_alloc > > seems to fit the bill better. > > Unfortunately cpu_alloc didn't solve this problem either. > > We need to grow the areas, but for NUMA layouts it's non-trivial. I don't > like the idea of remapping: one TLB entry per page per cpu is going to suck. > Finding pages which are "congruent" with the original percpu pages is more > promising, but it will almost certainly need to elbow pages out the way to > have a chance of succeeding on a real system.
An allocation automatically falls back to the nearest node on NUMA cpu_to_node() gives you the current node.
There are 2M TLB entries on x86_64. If we really get into a high usage scenario then the 2M entry makes sense. Average server memory sizes likely already are way beyond 10G per box. The higher that goes the more reasonable the 2M TLB entry will be.
|  |