From: Vlastimil Babka <vbabka@suse.cz>
To: Gabriel Krisman Bertazi <krisman@collabora.com>, linux-mm@kvack.org
Cc: labbott@redhat.com, kernel@collabora.com,
gael.portay@collabora.com, mike.kravetz@oracle.com,
m.szyprowski@samsung.com, Michal Hocko <mhocko@kernel.org>
Subject: Re: [PATCH 0/6] Improve handling of GFP flags in the CMA allocator
Date: Thu, 21 Feb 2019 13:39:19 +0100 [thread overview]
Message-ID: <64c93a1e-8a8f-56f3-df1a-c0d85ef9f702@suse.cz> (raw)
In-Reply-To: <20190218210715.1066-1-krisman@collabora.com>
On 2/18/19 10:07 PM, Gabriel Krisman Bertazi wrote:
> Hi,
>
> The main goal of this patchset is to solve a deadlock in the CMA
> allocator, which happens because cma_alloc tries to sleep waiting for an
> IO in the GFP_NOIO path. This issue, which was reported by Gael Portay
> was discussed here:
>
> https://groups.google.com/a/lists.one-eyed-alien.net/forum/#!topic/usb-storage/BXpAsg-G1us
>
> My proposed requires reverting the patches that removed the gfp flags
> information from cma_alloc() (patches 1 to 3). According to the author,
> that parameter was removed because it misleads developers about what
> cma_alloc actually supports. In his specific case he had problems with
> GFP_ZERO. With that in mind I gave a try at implementing GFP_ZERO in a
> quite trivial way in patch 4. Finally, patches 5 and 6 attempt to fix
> the issue by avoiding the unecessary serialization done around
> alloc_contig_range.
I haven't checked in detail yet, but for GFP_NOIO, we have
memalloc_noio_save() / memalloc_noio_restore() which adds implicit
GFP_NOIO for the whole call stack. So that could be perhaps used to
avoid adding the gfp flags back to function signatures. Since you are
adding a new test for __GFP_IO in cma_alloc() in patch 6, you would use
e.g. current_gfp_context(GFP_KERNEL) first to add __GFP_NOIO based on
the implicit context. As for the arm64 caller, maybe it already is in
noio context (ideal world), or would add it based on test before calling
dma_alloc_from_contiguous(). There's also some documentation in
Documentation/core-api/gfp_mask-from-fs-io.rst
CCing Michal for opinion since he authored this
> This is my first adventure in the mm subsystem, so I hope I didn't screw
> up something very obvious. I tested this on the workload that was
> deadlocking (arm board, with CMA intensive operations from the GPU and
> USB), as well as some scripting on top of debugfs. Is there any
> regression test I should be running, which specially applies to the CMA
> code?
>
>
> Gabriel Krisman Bertazi (6):
> Revert "kernel/dma: remove unsupported gfp_mask parameter from
> dma_alloc_from_contiguous()"
> Revert "mm/cma: remove unsupported gfp_mask parameter from
> cma_alloc()"
> cma: Warn about callers requesting unsupported flags
> cma: Add support for GFP_ZERO
> page_isolation: Propagate temporary pageblock isolation error
> cma: Isolate pageblocks speculatively during allocation
>
> arch/arm/mm/dma-mapping.c | 5 +--
> arch/arm64/mm/dma-mapping.c | 2 +-
> arch/powerpc/kvm/book3s_hv_builtin.c | 2 +-
> arch/xtensa/kernel/pci-dma.c | 2 +-
> drivers/iommu/amd_iommu.c | 2 +-
> drivers/iommu/intel-iommu.c | 3 +-
> drivers/s390/char/vmcp.c | 2 +-
> drivers/staging/android/ion/ion_cma_heap.c | 2 +-
> include/linux/cma.h | 2 +-
> include/linux/dma-contiguous.h | 4 +-
> kernel/dma/contiguous.c | 6 +--
> kernel/dma/direct.c | 3 +-
> kernel/dma/remap.c | 2 +-
> mm/cma.c | 51 ++++++++++++++++++----
> mm/cma_debug.c | 2 +-
> mm/page_isolation.c | 20 ++++++---
> 16 files changed, 74 insertions(+), 36 deletions(-)
>
next prev parent reply other threads:[~2019-02-21 12:39 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-02-18 21:07 [PATCH 0/6] Improve handling of GFP flags in the CMA allocator Gabriel Krisman Bertazi
2019-02-18 21:07 ` [PATCH 1/6] Revert "kernel/dma: remove unsupported gfp_mask parameter from dma_alloc_from_contiguous()" Gabriel Krisman Bertazi
2019-02-18 21:07 ` [PATCH 2/6] Revert "mm/cma: remove unsupported gfp_mask parameter from cma_alloc()" Gabriel Krisman Bertazi
2019-02-18 21:07 ` [PATCH 3/6] cma: Warn about callers requesting unsupported flags Gabriel Krisman Bertazi
2019-02-18 21:07 ` [PATCH 4/6] cma: Add support for GFP_ZERO Gabriel Krisman Bertazi
2019-02-18 21:07 ` [PATCH 5/6] page_isolation: Propagate temporary pageblock isolation error Gabriel Krisman Bertazi
2019-02-18 21:07 ` [PATCH 6/6] cma: Isolate pageblocks speculatively during allocation Gabriel Krisman Bertazi
2019-02-21 12:39 ` Vlastimil Babka [this message]
2019-02-26 14:29 ` [PATCH 0/6] Improve handling of GFP flags in the CMA allocator Christoph Hellwig
2019-02-28 0:12 ` Laura Abbott
2019-02-28 8:46 ` Michal Hocko
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=64c93a1e-8a8f-56f3-df1a-c0d85ef9f702@suse.cz \
--to=vbabka@suse.cz \
--cc=gael.portay@collabora.com \
--cc=kernel@collabora.com \
--cc=krisman@collabora.com \
--cc=labbott@redhat.com \
--cc=linux-mm@kvack.org \
--cc=m.szyprowski@samsung.com \
--cc=mhocko@kernel.org \
--cc=mike.kravetz@oracle.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).