linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Badari Pulavarty <pbadari@gmail.com>
To: Andy Whitcroft <apw@shadowen.org>
Cc: Andrew Morton <akpm@linux-foundation.org>,
	Christoph Lameter <clameter@sgi.com>,
	linux-mm <linux-mm@kvack.org>
Subject: Re: 2.6.21-rc7-mm1 on test.kernel.org
Date: Tue, 24 Apr 2007 18:03:51 -0700	[thread overview]
Message-ID: <1177463032.1281.15.camel@dyn9047017100.beaverton.ibm.com> (raw)
In-Reply-To: <462EA46E.8000307@shadowen.org>

On Wed, 2007-04-25 at 01:44 +0100, Andy Whitcroft wrote:
> Badari Pulavarty wrote:
> > On Wed, 2007-04-25 at 01:16 +0100, Andy Whitcroft wrote:
> >> Andy Whitcroft wrote:
> >>> Andrew Morton wrote:
> >>>> On Tue, 24 Apr 2007 14:30:16 -0700 (PDT) Christoph Lameter <clameter@sgi.com> wrote:
> >>>>
> >>>>> On Tue, 24 Apr 2007, Andrew Morton wrote:
> >>>>>
> >>>>>>> Could we get a .config?
> >>>>>> test.kernel.org configs are subtly hidden on the front page.  Go to
> >>>>>> test.kernel.org, click on the "amd64" or "numaq" links in the title row
> >>>>>> there.
> >>>>>>
> >>>>>> The offending machine is elm3b6.
> >>>>> My x86_64 box boots fine with the indicated .config.
> >>>> So do both of mine.
> >>>>
> >>>>> Hardware related?
> >>>> Well it's AMD64, presumably real NUMA.  Maybe try numa=fake=4?
> >>> Yep real NUMA box.  Will try and get hold of the box to test.
> >>>
> >>> -apw
> >> git bisect points to:
> >>
> >>     quicklist-support-for-x86_64
> >>
> >> Reverting just this patch sorts this problem on the x86_64.
> > 
> > Hmm.. I narrowed it further down to ..
> > 
> > quicklists-for-page-table-pages-avoid-useless-virt_to_page-
> > conversion.patch
> > 
> > Andy, can you try backing out only this and enable QUICK_LIST
> > on your machine ?
> 
> Yep confirmed that reverting that one is enough to fix this machine.
> 
> -apw


Here is the patch to fix it (against -mm) ? 
Works on my machine :)

Thanks,
Badari

Signed-off-by: Badari Pulavarty <pbadari@us.ibm.com>
 include/linux/quicklist.h |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Index: linux-2.6.21-rc7/include/linux/quicklist.h
===================================================================
--- linux-2.6.21-rc7.orig/include/linux/quicklist.h	2007-04-24 19:10:09.000000000 -0700
+++ linux-2.6.21-rc7/include/linux/quicklist.h	2007-04-24 19:10:57.000000000 -0700
@@ -61,7 +61,8 @@ static inline void __quicklist_free(int 
 	if (unlikely(nid != numa_node_id())) {
 		if (dtor)
 			dtor(p);
-		free_hot_page(page);
+		if (put_page_testzero(page))
+			free_hot_page(page);
 		return;
 	}
 


--
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:"dont@kvack.org"> email@kvack.org </a>

  reply	other threads:[~2007-04-25  1:03 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-04-24 20:06 Andrew Morton
2007-04-24 20:21 ` Christoph Lameter
2007-04-24 20:27   ` Andrew Morton
2007-04-24 20:32     ` Christoph Lameter
2007-04-24 20:43       ` Andrew Morton
2007-04-24 20:52         ` Christoph Lameter
2007-04-24 21:12           ` Andy Whitcroft
2007-04-24 21:18           ` Andrew Morton
2007-04-24 21:30             ` Christoph Lameter
2007-04-24 21:36               ` Andrew Morton
2007-04-24 21:46                 ` Andy Whitcroft
2007-04-25  0:16                   ` Andy Whitcroft
2007-04-25  0:34                     ` Badari Pulavarty
2007-04-25  0:44                       ` Andy Whitcroft
2007-04-25  1:03                         ` Badari Pulavarty [this message]
2007-04-25  6:39                       ` Christoph Lameter
2007-04-25  8:21                         ` Andy Whitcroft
2007-04-25  8:40                           ` Andrew Morton
2007-04-25 15:15                             ` Christoph Lameter
2007-04-24 21:53                 ` Christoph Lameter
2007-04-24 22:27 ` Badari Pulavarty
2007-04-24 22:51   ` Andrew Morton
2007-04-24 23:32     ` Andy Whitcroft
2007-04-25  0:07       ` Andy Whitcroft
2007-04-25  0:51     ` Badari Pulavarty
2007-04-25  1:22       ` Andrew Morton
2007-04-25  6:23         ` Christoph Lameter
2007-04-25  6:38           ` Andrew Morton
2007-04-25  6:58         ` Christoph Lameter
2007-04-25  6:21       ` Christoph Lameter
2007-04-24 23:59 ` Badari Pulavarty
2007-04-25  1:26   ` Andrew Morton

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=1177463032.1281.15.camel@dyn9047017100.beaverton.ibm.com \
    --to=pbadari@gmail.com \
    --cc=akpm@linux-foundation.org \
    --cc=apw@shadowen.org \
    --cc=clameter@sgi.com \
    --cc=linux-mm@kvack.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