Re: [patch 07/21] Xen-paravirt: remove ctor for pgd cache



Christoph Lameter wrote:
On Thu, 15 Feb 2007, Jeremy Fitzhardinge wrote:


Remove the ctor for the pgd cache. There's no point in having the
cache machinery do this via an indirect call when all pgd are freed in
the one place anyway.


Great. We finally get rid of this evil .....

On second throughts:

Are you sure that you understand what you are modifying? The ctor is not
called when you allocate an object but when the slab allocates it. Freeing
an object does not make the slab free it. It will hold it for the next
kmalloc. So you may just have reduced performance somewhat by addiung
additional ctor processing and possibly disturbed the preservation of
cache hot pgds.
It's true I wrote this patch as a result of accidentally reading slob.c
rather than slab.c, which was mostly as a result of hopeful thinking (I
knew that there has been discussion about removing all the slab cache
stuff, and I assumed that it had already happened). As a result I'm
withdrawing this patch for now, but with any luck it will be useful at
some point.

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



Relevant Pages

  • Re: [Bug #13319] Page allocation failures with b43 and p54usb
    ... You could even boot with `slub_nomerge' to determine whether cache merging ... I wasn't sure whether you were proposing the patch as an addition to slub ... they should be exhausted if we're allocating a new slab if the ... we expect the partial lists to be ...
    (Linux-Kernel)
  • Re: [00/41] Large Blocksize Support V7 (adds memmap support)
    ... I rather assume all slab allocations aren't movable. ... memcpyoperations when moving dentries from one cache to the other. ... Upside is that a fair amount of slab cache can be made movable. ... Most likely the current reaction to such a patch would be to shoot it ...
    (Linux-Kernel)
  • Re: quicklists confuse meminfo
    ... I was surprised about the pgd page allocation. ... but I think we can just allocate that out of the cache too. ... At the moment we rely on page-sized pgds for two things: ... would be validated as pgd entries). ...
    (Linux-Kernel)
  • [patch 10/10] Remove slab in 2.6.24
    ... The SLAB functionality has been supplanted by SLUB. ... The memory is set to zero. ... SLUB has extensive debug support features. ... no support for cache validation etc. ...
    (Linux-Kernel)
  • [PATCH v3 0/7] fs: Scalability of sockets/pipes allocation/deallocation on SMP
    ... Take v2 of this patch serie got no new feedback, ... All these are in different cache lines unfortunatly. ... Currently we schedule RCU frees for each file we free separately. ... allocator by specifying SLAB_DESTROY_BY_RCU as an option at slab creation ...
    (Linux-Kernel)