lkml.org 
[lkml]   [2019]   [Dec]   [20]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    /
    Date
    From
    SubjectRe: [RFC PATCH v1] devres: align devres.data strictly only for devm_kmalloc()
    On Fri, Dec 20, 2019 at 09:02:24PM +0000, Alexey Brodkin wrote:
    > Hi Peter,
    >
    > > > Well it somehow used to work for quite some time now with the data-buffer
    > > > being allocated with 4 words offset (which is 16 bytes for 32-bit platform
    > >
    > > 3 words, devres_node is 3 words.
    >
    > Correct, but 4th word was implicitly there due to the fact
    > on most of 32-bit arches "long long" is aligned by 2 words.
    >
    > > Which is exactly why we had to change it, the odd alignment caused ARC
    > > to explode.
    >
    > I know that better than anybody else as it was my pain & grief :)
    >
    > > > and 32 for 64-bit which is still much less than mentioned 128 bytes).
    > > > Or we just never managed to identify those rare cases when data corruption
    > > > really happened?
    > >
    > > The races are rather rare methinks, you'd have to get a list-op
    > > concurrently with a DMA.
    > >
    > > If you get the list corrupted, I'm thinking the crash is fairly likely,
    > > albeit really difficuly to debug.
    >
    > So that alone IMHO is a good reason to not allow that thing to happen even
    > in theory.
    >
    > > > > No matter which way round you allocate devres and data, by necessity
    > > > > they're always going to consume the same total amount of memory.
    > > >
    > > > So then the next option I guess is to separate meta-data from data buffers
    > > > completely. Are there any reasons to not do that
    > >
    > > Dunno, should work just fine I think.
    > >
    > > > other than the hack we're
    > > > discussing here (meta-data in the beginning of the buffer) used to work OK-ish?
    > >
    > > If meta-data at the beginngin used to work, I don't see why meta-data at
    > > the end wouldn't work equally well. They'd be equally broken.

    No, not really. With data being ARCH_KMALLOC_MINALIGN and coming after
    the devres private stuff, given that the another allocation will also be
    aligned to ARCH_KMALLOC_MINALIGN (because that's what k*alloc will give
    us) we are guaranteed that DMA will not stomp onto any unrelated data.
    With devres private coming after data and not having any alignment
    constraints we may very well clobber it when doing DMA.

    BTW, I am not sure where the page size restriction you mentioned earlier
    is coming from. We have been using kmalloc()ed memory as buffers
    suitable for DMA since forever, and we only need to make sure such data
    is isolated from other data CPU might be accessing by ARCH_DMA_MINALIGN
    which is usually L1 cache size.

    From Documentation/DMA-API-HOWTO.txt:

    2) ARCH_DMA_MINALIGN

    Architectures must ensure that kmalloc'ed buffer is
    DMA-safe. Drivers and subsystems depend on it. If an architecture
    isn't fully DMA-coherent (i.e. hardware doesn't ensure that data in
    the CPU cache is identical to data in main memory),
    ARCH_DMA_MINALIGN must be set so that the memory allocator
    makes sure that kmalloc'ed buffer doesn't share a cache line with
    the others. See arch/arm/include/asm/cache.h as an example.

    Note that ARCH_DMA_MINALIGN is about DMA memory alignment
    constraints. You don't need to worry about the architecture data
    alignment constraints (e.g. the alignment constraints about 64-bit
    objects).

    >
    > Agree. But if we imagine devm allocations are not used for DMA
    > (which is yet another case of interface usage which was never designed for
    > but alas this happens left and right) then move of the meta-data to the end of
    > the buffers solves [mostly my] problem... but given that DMA case we discuss
    > exists I'm not sure if this move actually worth spending time on.

    Well, there is a metric ton of devm users that do not allocate memory
    buffers, but other objects, and for which we do not need to worry about
    alignment.

    Thanks.

    --
    Dmitry

    \
     
     \ /
      Last update: 2019-12-20 22:49    [W:3.968 / U:0.000 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site