From: Vlastimil Babka <vbabka@suse.cz>
To: Jonathan Richardson <jonathan.richardson@broadcom.com>,
linux-mm@kvack.org, akpm@linux-foundation.org,
"linux-arm-kernel@lists.infradead.org"
<linux-arm-kernel@lists.infradead.org>,
Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
Subject: Re: cma can't activate area on arm64
Date: Thu, 27 Feb 2020 10:56:12 +0100 [thread overview]
Message-ID: <8f82edf2-7313-eb4c-f68e-ff18f7a5e919@suse.cz> (raw)
In-Reply-To: <CAHrpVsXay=8q6a9Vee3wnLVAKHdd_c5+miHbvz+1uqJAEoRZ0A@mail.gmail.com>
On 2/22/20 12:42 AM, Jonathan Richardson wrote:
> Hi,
> As of the 5.5 kernel I see boot errors in cma. It reserves 1G and then can't
> activate an area. I added some prints. It's trying to activate the DMA
> zone. This causes a driver to fail allocating a dma pool later on. The
> coherent pool is the default 256MB. If I reduce cma from 1G to 512M
> then it only tries activates DMA32 zone. I assume there was not enough cma
> memory for DMA zone? Are there any configuration changes required due
> to the DMA_ZONE and DMA_ZONE32 changes? I've attached my boot log.
I think this question is better for the ARM guys. CC'd
> [ 0.000000] cma: Reserved 1024 MiB at 0x00000000a0000000
> ...
> [ 0.390448] Activating cma name: reserved, zone name: DMA
> [ 0.396564] pfn = 0xa0000
> [ 0.399522] cma->count = 262144
> [ 0.406244] pfn failed on = c0000
> [ 0.410002] cma: CMA area reserved could not be activated
>
> static int __init cma_activate_area(struct cma *cma)
> {
> ...
> printk("Activating cma name: %s, zone name: %s\n", cma->name, zone->name);
> printk("pfn = 0x%lx\n", pfn);
> printk("cma->count = %lu\n", cma->count);
>
> do {
> unsigned j;
>
> base_pfn = pfn;
> for (j = pageblock_nr_pages; j; --j, pfn++) {
> WARN_ON_ONCE(!pfn_valid(pfn));
> /*
> * alloc_contig_range requires the pfn range
> * specified to be in the same zone. Make this
> * simple by forcing the entire CMA resv range
> * to be in the same zone.
> */
> if (page_zone(pfn_to_page(pfn)) != zone) {
> printk("pfn failed on = 0x%lx\n", pfn);
> goto not_in_zone;
> }
> }
> init_cma_reserved_pageblock(pfn_to_page(base_pfn));
> } while (--i);
>
> Thanks.
>
next prev parent reply other threads:[~2020-02-27 9:56 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-02-21 23:42 Jonathan Richardson
2020-02-27 9:56 ` Vlastimil Babka [this message]
2020-02-27 17:48 ` Catalin Marinas
2020-02-28 19:56 ` Jonathan Richardson
2020-02-28 20:16 ` Nicolas Saenz Julienne
2020-02-28 20:34 ` Jonathan Richardson
2020-02-28 21:00 ` Robin Murphy
2020-02-28 23:04 ` Jonathan Richardson
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=8f82edf2-7313-eb4c-f68e-ff18f7a5e919@suse.cz \
--to=vbabka@suse.cz \
--cc=akpm@linux-foundation.org \
--cc=jonathan.richardson@broadcom.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-mm@kvack.org \
--cc=nsaenzjulienne@suse.de \
/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