From: Yasunori Goto <y-goto@jp.fujitsu.com>
To: Mike Kravetz <kravetz@us.ibm.com>
Cc: linux-mm <linux-mm@kvack.org>, "Luck, Tony" <tony.luck@intel.com>,
linux-ia64@vger.kernel.org, "Martin J. Bligh" <mbligh@mbligh.org>
Subject: Re: [PATCH] gurantee DMA area for alloc_bootmem_low()
Date: Wed, 13 Jul 2005 15:34:48 +0900 [thread overview]
Message-ID: <20050713152030.1B11.Y-GOTO@jp.fujitsu.com> (raw)
In-Reply-To: <20050712183021.GC3987@w-mikek2.ibm.com>
> On Tue, Jul 12, 2005 at 03:50:09PM +0900, Yasunori Goto wrote:
> > Index: allocbootmem/mm/bootmem.c
> > ===================================================================
> > --- allocbootmem.orig/mm/bootmem.c 2005-06-30 11:57:13.000000000 +0900
> > +++ allocbootmem/mm/bootmem.c 2005-07-08 20:46:56.209040741 +0900
> > @@ -387,10 +387,16 @@
> > pg_data_t *pgdat = pgdat_list;
> > void *ptr;
> >
> > - for_each_pgdat(pgdat)
> > + for_each_pgdat(pgdat){
> > +
> > + if (goal < __pa(MAX_DMA_ADDRESS) &&
> > + pgdat->bdata->node_boot_start >= __pa(MAX_DMA_ADDRESS))
> > + continue; /* Skip No DMA node */
> > +
> > if ((ptr = __alloc_bootmem_core(pgdat->bdata, size,
> > align, goal)))
> > return(ptr);
> > + }
> >
> > /*
> > * Whoops, we cannot satisfy the allocation request.
>
> Need to be careful about the use of MAX_DMA_ADDRESS. It is not always
> the case that archs define MAX_DMA_ADDRESS as a real address. In some
> cases, MAX_DMA_ADDRESS is defined as something like -1 to indicate that
> all addresses are available for DMA. I'm not sure that the above code
> will always work as desired in such cases.
Hmm... Thanks for your advise.
If MAX_DMA_ADDRESS is like -1, then all of memory can be DMA'ble,
right? How is like this? One more comparison is added.
if (MAX_DMA_ADDRESS != ~0UL &&
goal < __pa(MAX_DMA_ADDRESS) &&
pgdat->bdata->node_boot_start >=
__pa(MAX_DMA_ADDRESS))
Thanks.
--
Yasunori Goto
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"aart@kvack.org"> aart@kvack.org </a>
next prev parent reply other threads:[~2005-07-13 6:34 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-07-12 6:50 Yasunori Goto
2005-07-12 14:39 ` Martin J. Bligh
2005-07-13 5:09 ` Yasunori Goto
2005-07-12 18:30 ` Mike Kravetz
2005-07-12 19:29 ` Dave Hansen
2005-07-12 20:37 ` Mike Kravetz
2005-07-13 6:34 ` Yasunori Goto [this message]
2005-07-13 22:03 ` Mike Kravetz
2005-07-15 2:43 ` Yasunori Goto
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=20050713152030.1B11.Y-GOTO@jp.fujitsu.com \
--to=y-goto@jp.fujitsu.com \
--cc=kravetz@us.ibm.com \
--cc=linux-ia64@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=mbligh@mbligh.org \
--cc=tony.luck@intel.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