Re: 2 times faster rawio and several fixes (2.4.3aa3)

From: Andrea Arcangeli (andrea@suse.de)
Date: Fri Apr 06 2001 - 13:36:21 EDT

  • Next message: Steven Cole: "[PATCH] 2.4.3-ac3 update Documentation/Changes URLs for e2fsprogs"

    On Fri, Apr 06, 2001 at 07:02:32PM +0200, Andi Kleen wrote:
    > On Fri, Apr 06, 2001 at 07:07:01PM +0200, Andrea Arcangeli wrote:
    > > However we can probably stay with the 512k atomic I/O otherwise the iobuf
    > > structure will grow again of an order of 2. With 512k of atomic I/O the kiovec
    > > structure is just 8756 in size (infact probably I should allocate some of the
    > > structures dynamically instead of statics inside the kiobuf.. as it is now
    > > with my patch it's not very reliable as it needs an allocation of order 2).
    >
    > 8756bytes wastes most of an order 2 allocation. Wouldn't it make more sense to
    > round it up to 16k to use the four pages fully ? (if the increased atomic

    I prefer to get rid of the order 2 allocation to avoid having to deal with
    fragmentation. The patch introduces arrays takes 1 page each (on x86 and alpha)
    if the atomic IO is 512k so I can allocate them with a separate kmalloc.

    OTOH on x86-64 we have PAGE_SIZE 4k and 8byte words so maybe I should use
    vmalloc instead? Performance of vmalloc is not an issue because those
    allocations doesn't happen anymore in any fast path, only worry in using
    vmalloc are the additional global 3 tlb entries (but OTOH also with kmalloc
    there's the chance the code will use a few more global tlb entries if the
    memory returned for all the kiovec structures doesn't all fit in the same
    2/4Mbytes naturally aligned area). so probably I will take the vmalloc way
    that is more generic and it shouldn't hurt perormance (I will measure that
    to be sure though).

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



    This archive was generated by hypermail 2b29 : Fri Apr 06 2001 - 13:21:24 EDT