linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ARM: Gemini: fix compiler error in copypage-fa.c
@ 2010-05-04 14:34 Hans Ulli Kroll
  2010-05-04 16:05 ` Russell King - ARM Linux
  2010-05-05  9:57 ` [PATCH] " Sergei Shtylyov
  0 siblings, 2 replies; 5+ messages in thread
From: Hans Ulli Kroll @ 2010-05-04 14:34 UTC (permalink / raw)
  To: linux-arm-kernel

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

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

* [PATCH] ARM: Gemini: fix compiler error in copypage-fa.c
  2010-05-04 14:34 [PATCH] ARM: Gemini: fix compiler error in copypage-fa.c Hans Ulli Kroll
@ 2010-05-04 16:05 ` Russell King - ARM Linux
  2010-05-07 11:30   ` [GIT-PULL] " Hans Ulli Kroll
  2010-05-05  9:57 ` [PATCH] " Sergei Shtylyov
  1 sibling, 1 reply; 5+ messages in thread
From: Russell King - ARM Linux @ 2010-05-04 16:05 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, May 04, 2010 at 04:34:15PM +0200, Hans Ulli Kroll wrote:
> Fix compiler error in copypage-fs.c
> missing struct vm_area_struct *vma in function
> fa_copy_user_highpage

Ok.  Please submit to the patch system, thanks.

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

* [PATCH] ARM: Gemini: fix compiler error in copypage-fa.c
  2010-05-04 14:34 [PATCH] ARM: Gemini: fix compiler error in copypage-fa.c Hans Ulli Kroll
  2010-05-04 16:05 ` Russell King - ARM Linux
@ 2010-05-05  9:57 ` Sergei Shtylyov
  1 sibling, 0 replies; 5+ messages in thread
From: Sergei Shtylyov @ 2010-05-05  9:57 UTC (permalink / raw)
  To: linux-arm-kernel

Hello.

Hans Ulli Kroll wrote:

> Fix compiler error in copypage-fs.c
>   

   You've called it copypage-fa.c in the subject.

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

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

WBR, Sergei

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

* [GIT-PULL] ARM: Gemini: fix compiler error in copypage-fa.c
  2010-05-04 16:05 ` Russell King - ARM Linux
@ 2010-05-07 11:30   ` Hans Ulli Kroll
  2010-05-07 20:27     ` Paulius Zaleckas
  0 siblings, 1 reply; 5+ messages in thread
From: Hans Ulli Kroll @ 2010-05-07 11:30 UTC (permalink / raw)
  To: linux-arm-kernel

Here you call pull ...


Ulli

The following changes since commit 
352d4657b23fbd329efccc396000a549e0150907:
   Linus Torvalds (1):
         Merge branch 'for-linus' of 
git://git.kernel.org/.../mattst88/alpha-2.6

are available in the git repository at:

   git://git.berlios.de/gemini-board gemini_fix

Hans Ulli Kroll (1):
       ARM: Gemini: fix compiler error in copypage-fa.c

  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;

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

* [GIT-PULL] ARM: Gemini: fix compiler error in copypage-fa.c
  2010-05-07 11:30   ` [GIT-PULL] " Hans Ulli Kroll
@ 2010-05-07 20:27     ` Paulius Zaleckas
  0 siblings, 0 replies; 5+ messages in thread
From: Paulius Zaleckas @ 2010-05-07 20:27 UTC (permalink / raw)
  To: linux-arm-kernel

On 05/07/2010 02:30 PM, Hans Ulli Kroll wrote:
> Here you call pull ...

Hmm... Please include original message (or par of it) when replying.
It was from Russell:

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

His patch system is at http://www.arm.linux.org.uk/developer/patches/
He may however pull from your branch. It is up to him.

Other thing...

I see you have some interest in gemini (from personal e-mails).
Maybe you would like/agree to take maintainership from me?
I am fully open and I promise to help you with any questions about
gemini, but I have no hardware and my priorities are different now.

Paulius

> Ulli
>
> The following changes since commit
> 352d4657b23fbd329efccc396000a549e0150907:
> Linus Torvalds (1):
> Merge branch 'for-linus' of git://git.kernel.org/.../mattst88/alpha-2.6
>
> are available in the git repository at:
>
> git://git.berlios.de/gemini-board gemini_fix
>
> Hans Ulli Kroll (1):
> ARM: Gemini: fix compiler error in copypage-fa.c
>
> 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;
>
>

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

end of thread, other threads:[~2010-05-07 20:27 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-04 14:34 [PATCH] ARM: Gemini: fix compiler error in copypage-fa.c Hans Ulli Kroll
2010-05-04 16:05 ` Russell King - ARM Linux
2010-05-07 11:30   ` [GIT-PULL] " Hans Ulli Kroll
2010-05-07 20:27     ` Paulius Zaleckas
2010-05-05  9:57 ` [PATCH] " Sergei Shtylyov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).