public inbox for linux-ia64@vger.kernel.org
 help / color / mirror / Atom feed
From: Andrew Morton <akpm@osdl.org>
To: Josh Aas <josha@sgi.com>
Cc: linux-kernel@vger.kernel.org, linux-ia64@vger.kernel.org
Subject: Re: [PATCH] improve speed of freeing bootmem
Date: Fri, 06 Aug 2004 19:52:16 +0000	[thread overview]
Message-ID: <20040806125216.30405230.akpm@osdl.org> (raw)
In-Reply-To: <4113DB63.9020706@sgi.com>

Josh Aas <josha@sgi.com> wrote:
>
> Attached is a patch that greatly improves the speed of freeing boot 
> memory.

hm, OK.  I have a vague feeling that Bill Irwin had patches to fix this up
ages ago.


A few nits:

> --- a/mm/bootmem.c	2004-08-05 15:33:39.000000000 -0500
> +++ b/mm/bootmem.c	2004-08-06 13:42:33.000000000 -0500
> @@ -259,6 +259,7 @@ static unsigned long __init free_all_boo
>  	unsigned long i, count, total = 0;
>  	unsigned long idx;
>  	unsigned long *map; 
> +	int gofast = 0;
>  
>  	BUG_ON(!bdata->node_bootmem_map);
>  
> @@ -267,14 +268,32 @@ static unsigned long __init free_all_boo
>  	page = virt_to_page(phys_to_virt(bdata->node_boot_start));
>  	idx = bdata->node_low_pfn - (bdata->node_boot_start >> PAGE_SHIFT);
>  	map = bdata->node_bootmem_map;
> +	if (bdata->node_boot_start = 0 ||
> +	    ffs(bdata->node_boot_start) - PAGE_SHIFT > ffs(BITS_PER_LONG))
> +		gofast = 1;

A comment describing the above reasoning would be nice.

>  	for (i = 0; i < idx; ) {
>  		unsigned long v = ~map[i / BITS_PER_LONG];
> -		if (v) {
> +		if (gofast && v = ~0UL) {
> +			int j;
> +
> +			count += BITS_PER_LONG;
> +			ClearPageReservedNoAtomic(page);
> +			set_page_count(page, 1);
> +			for (j = 1; j < BITS_PER_LONG; j++) {
> +				if (j + 16 < BITS_PER_LONG) {
> +                      			prefetchw(page + j + 16);
> +                                }

The whitespace/tabbing has gone funny here.

> +#define ClearPageReservedNoAtomic(page)	(page)->flags &= ~(1UL << PG_reserved)

The naming convention we used in 2.4 for the nonatomic operation was
__ClearPageReserved(), so can we please stick with that?

And this macro can use __clear_bit() rather than open-coding it.

  reply	other threads:[~2004-08-06 19:52 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-08-06 19:26 [PATCH] improve speed of freeing bootmem Josh Aas
2004-08-06 19:52 ` Andrew Morton [this message]
2004-08-06 20:46   ` William Lee Irwin III
2004-08-06 22:02   ` Josh Aas

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=20040806125216.30405230.akpm@osdl.org \
    --to=akpm@osdl.org \
    --cc=josha@sgi.com \
    --cc=linux-ia64@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    /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