From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Date: Tue, 25 Sep 2018 08:20:58 +0800 From: Ming Lei To: Christopher Lameter Cc: Bart Van Assche , Andrey Ryabinin , Vitaly Kuznetsov , Christoph Hellwig , Ming Lei , linux-block , linux-mm , Linux FS Devel , "open list:XFS FILESYSTEM" , Dave Chinner , Linux Kernel Mailing List , Jens Axboe , Linus Torvalds , Greg Kroah-Hartman Subject: Re: block: DMA alignment of IO buffer allocated from slab Message-ID: <20180925002057.GB14386@ming.t460p> References: <20180920063129.GB12913@lst.de> <87h8ij0zot.fsf@vitty.brq.redhat.com> <20180923224206.GA13618@ming.t460p> <38c03920-0fd0-0a39-2a6e-70cd8cb4ef34@virtuozzo.com> <20a20568-5089-541d-3cee-546e549a0bc8@acm.org> <010001660c27f079-7ba54431-6f0c-430a-8db5-2398a8e761f0-000000@email.amazonses.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <010001660c27f079-7ba54431-6f0c-430a-8db5-2398a8e761f0-000000@email.amazonses.com> Sender: owner-linux-mm@kvack.org List-ID: On Mon, Sep 24, 2018 at 03:17:16PM +0000, Christopher Lameter wrote: > On Mon, 24 Sep 2018, Bart Van Assche wrote: > > > /* > > * kmalloc and friends return ARCH_KMALLOC_MINALIGN aligned > > * pointers. kmem_cache_alloc and friends return ARCH_SLAB_MINALIGN > > * aligned pointers. > > */ > > kmalloc alignment is only guaranteed to ARCH_KMALLOC_MINALIGN. That power > of 2 byte caches (without certain options) are aligned to the power of 2 > is due to the nature that these objects are stored in SLUB. Other > allocators may behave different and actually different debug options > result in different alignments. You cannot rely on that. > > ARCH_KMALLOC minalign shows the mininum alignment guarantees. If that is > not sufficient and you do not want to change the arch guarantees then you > can open you own slab cache with kmem_cache_create() where you can specify > different alignment requirements. Christopher, thank you for clarifying the point! Then looks it should be reasonable for XFS to switch to kmem_cache_create() for addressing this issue. Thanks, Ming