Re: [PATCH] ARM: Gemini: fix compiler error in copypage-fa.c

Previous thread: git bisect questions... by Valdis.Kletnieks on Tuesday, May 4, 2010 - 7:23 am. (3 messages)

Next thread: Re: [PATCH v3] firmware_class: fix memory leak - free allocated pages by Pavan Savoy on Tuesday, May 4, 2010 - 7:37 am. (2 messages)
From: Hans Ulli Kroll
Date: Tuesday, May 4, 2010 - 7:34 am

Fix compiler error in copypage-fs.c
missing struct vm_area_struct *vma in function
fa_copy_user_highpage

Signed-off-by: Hans Ulli Kroll <ulli.kroll@googlemail.com>
---
 arch/arm/mm/copypage-fa.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/arm/mm/copypage-fa.c b/arch/arm/mm/copypage-fa.c
index b2a6008..d2852e1 100644
--- a/arch/arm/mm/copypage-fa.c
+++ b/arch/arm/mm/copypage-fa.c
@@ -40,7 +40,7 @@ fa_copy_user_page(void *kto, const void *kfrom)
 }
 
 void fa_copy_user_highpage(struct page *to, struct page *from,
-	unsigned long vaddr)
+	unsigned long vaddr, struct vm_area_struct *vma)
 {
 	void *kto, *kfrom;
 
-- 
1.7.0.3

--

From: Russell King - ARM Linux
Date: Tuesday, May 4, 2010 - 9:05 am

Ok.  Please submit to the patch system, thanks.
--

From: Sergei Shtylyov
Date: Wednesday, May 5, 2010 - 2:57 am

Hello.



   And the file name is indeed copypage-fa.c...

WBR, Sergei

--

Previous thread: git bisect questions... by Valdis.Kletnieks on Tuesday, May 4, 2010 - 7:23 am. (3 messages)

Next thread: Re: [PATCH v3] firmware_class: fix memory leak - free allocated pages by Pavan Savoy on Tuesday, May 4, 2010 - 7:37 am. (2 messages)