public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Yinghai Lu <yinghai@kernel.org>
To: Jan Beulich <JBeulich@novell.com>
Cc: hpa@zytor.com, teheo@suse.de, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] free_early_partial() should permit start == end
Date: Fri, 26 Mar 2010 13:39:14 -0700	[thread overview]
Message-ID: <4BAD1B72.9040002@kernel.org> (raw)
In-Reply-To: <4BACF0E60200007800037373@vpn.id2.novell.com>

On 03/26/2010 09:37 AM, Jan Beulich wrote:
> The per-CPU allocator, when using atom_size == PAGE_SIZE, may call
> free_area_init_partial() this way.
> 
> Signed-off-by: Jan Beulich <jbeulich@novell.com>
> 
> ---
>  kernel/early_res.c |    4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> --- linux-2.6.34-rc2/kernel/early_res.c	2010-03-25 15:23:45.000000000 +0100
> +++ 2.6.34-rc2-free_early_partial-zero-size/kernel/early_res.c	2010-03-26 14:49:41.000000000 +0100
> @@ -335,10 +335,10 @@ void __init free_early_partial(u64 start
>  
>  try_next:
>  	i = find_overlapped_early(start, end);
> -	if (i >= max_early_res)
> +	r = &early_res[i];
> +	if (i >= max_early_res || !r->end)
>  		return;
>  
> -	r = &early_res[i];
>  	/* hole ? */
>  	if (r->end >= end && r->start <= start) {
>  		drop_range_partial(i, start, end);
> 
> 

can you check if this patch work for you?

Thanks

Yinghai Lu

Subject: [PATCH -v6] x86: do not free zero sized per cpu areas
From: Ian Campbell <ian.campbell@citrix.com>

This avoids an infinite loop in free_early_partial().

Add a warning to free_early_partial to catch future problems.

-v5: put back start > end back into WARN_ONCE()
-v6: use one line for if according to linus

Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
Signed-off-by: Yinghai Lu <yinghai@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Ingo Molnar <mingo@elte.hu>
---
 kernel/early_res.c |    6 ++++++
 1 file changed, 6 insertions(+)

Index: linux-2.6/kernel/early_res.c
===================================================================
--- linux-2.6.orig/kernel/early_res.c
+++ linux-2.6/kernel/early_res.c
@@ -333,6 +333,12 @@ void __init free_early_partial(u64 start
 	struct early_res *r;
 	int i;
 
+	if (start == end)
+		return;
+
+	if (WARN_ONCE(start > end, "free_early_partial: wrong range [%#llx, %#llx]\n", start, end))
+		return;
+
 try_next:
 	i = find_overlapped_early(start, end);
 	if (i >= max_early_res)

  reply	other threads:[~2010-03-26 20:40 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-03-26 16:37 [PATCH] free_early_partial() should permit start == end Jan Beulich
2010-03-26 20:39 ` Yinghai Lu [this message]
2010-03-29  6:37   ` Jan Beulich

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=4BAD1B72.9040002@kernel.org \
    --to=yinghai@kernel.org \
    --cc=JBeulich@novell.com \
    --cc=hpa@zytor.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=teheo@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