linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* Re: patch to remove warning in 2.6.11 + Hirokazu's page migration patches
  2005-03-25 18:05 patch to remove warning in 2.6.11 + Hirokazu's page migration patches Ray Bryant
@ 2005-03-25 18:03 ` Dave Hansen
  0 siblings, 0 replies; 2+ messages in thread
From: Dave Hansen @ 2005-03-25 18:03 UTC (permalink / raw)
  To: Ray Bryant; +Cc: Hirokazu Takahashi, Marcello Tosatti, linux-mm

On Fri, 2005-03-25 at 12:05 -0600, Ray Bryant wrote:
> Hirokazu,
> 
> The attached patch fixes a minor problem with your 2.6.11 page migration
> patches.

Looks fine to me.  Hirokazu, I'll pick this up, unless you see any
problems with it.

-- Dave

--
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>

^ permalink raw reply	[flat|nested] 2+ messages in thread

* patch to remove warning in 2.6.11 + Hirokazu's page migration patches
@ 2005-03-25 18:05 Ray Bryant
  2005-03-25 18:03 ` Dave Hansen
  0 siblings, 1 reply; 2+ messages in thread
From: Ray Bryant @ 2005-03-25 18:05 UTC (permalink / raw)
  To: Hirokazu Takahashi; +Cc: Dave Hansen, Marcello Tosatti, linux-mm

[-- Attachment #1: Type: text/plain, Size: 419 bytes --]

Hirokazu,

The attached patch fixes a minor problem with your 2.6.11 page migration
patches.

-- 
Best Regards,
Ray
-----------------------------------------------
                   Ray Bryant
512-453-9679 (work)         512-507-7807 (cell)
raybry@sgi.com             raybry@austin.rr.com
The box said: "Requires Windows 98 or better",
            so I installed Linux.
-----------------------------------------------

[-- Attachment #2: fix-warning-about-clear_user_pages-in-memory.c.patch --]
[-- Type: text/plain, Size: 1310 bytes --]

This patch fixes a warning in the compilation of mm/memory.c when
Hirokazu's 2.6.11 memory-migration patches are applied.  The warning is
due to the fact that clear_user_pages() below needs to pass a
void * in as its first argument, since, (at least on ia64),
clear_user_pages() is a macro that calls clear_page(first arg to
clear_user_pages()), and clear_page() wants a void * argument.

The change below was suggested by Christoph Lameter and both
avoids this problem and makes the code simpler.

Signed-off-by: Ray Bryant <raybry@sgi.com>

Index: linux-2.6.11-page-migration/mm/memory.c
===================================================================
--- linux-2.6.11-page-migration.orig/mm/memory.c	2005-03-24 11:24:09.000000000 -0800
+++ linux-2.6.11-page-migration/mm/memory.c	2005-03-24 15:01:23.000000000 -0800
@@ -1323,11 +1323,9 @@ static int do_wp_page(struct mm_struct *
 		goto no_new_page;
 
 	if (old_page == ZERO_PAGE(address)) {
-		if (VM_Immovable(vma)) {
-			new_page = alloc_page_vma(GFP_USER, vma, address);
-			if (new_page)
-				clear_user_page(address, address, new_page);
-		} else
+		if (VM_Immovable(vma))
+			new_page = alloc_page_vma(GFP_USER | __GFP_ZERO, vma, address);
+		else
 			new_page = alloc_zeroed_user_highpage(vma, address);
 		if (!new_page)
 			goto no_new_page;

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2005-03-25 18:05 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-03-25 18:05 patch to remove warning in 2.6.11 + Hirokazu's page migration patches Ray Bryant
2005-03-25 18:03 ` Dave Hansen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox