Alpha arch development list
 help / color / mirror / Atom feed
* [PATCH] alpha: Fix compile error due to typo in call of do_osf_statfs()
@ 2010-08-16  8:18 Michael Cree
  2010-08-16 13:06 ` Matt Turner
  0 siblings, 1 reply; 2+ messages in thread
From: Michael Cree @ 2010-08-16  8:18 UTC (permalink / raw)
  To: linux-kernel
  Cc: Michael Cree, Richard Henderson, Ivan Kokshaysky, Matt Turner,
	Andrew Morton, Christoph Hellwig, Al Viro, linux-alpha

Typo, i.e., missing comma in argument list of call of do_osf_statfs(),
was introduced by commit ebabe9a9001af0af56c0c2780ca1576246e7a74b.

Signed-off-by: Michael Cree <mcree@orcon.net.nz>
---
 arch/alpha/kernel/osf_sys.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/alpha/kernel/osf_sys.c b/arch/alpha/kernel/osf_sys.c
index fb58150..5d1e6d6 100644
--- a/arch/alpha/kernel/osf_sys.c
+++ b/arch/alpha/kernel/osf_sys.c
@@ -252,7 +252,7 @@ SYSCALL_DEFINE3(osf_statfs, const char __user *, pathname,
 
 	retval = user_path(pathname, &path);
 	if (!retval) {
-		retval = do_osf_statfs(&path buffer, bufsiz);
+		retval = do_osf_statfs(&path, buffer, bufsiz);
 		path_put(&path);
 	}
 	return retval;
-- 
1.7.1


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

* Re: [PATCH] alpha: Fix compile error due to typo in call of do_osf_statfs()
  2010-08-16  8:18 [PATCH] alpha: Fix compile error due to typo in call of do_osf_statfs() Michael Cree
@ 2010-08-16 13:06 ` Matt Turner
  0 siblings, 0 replies; 2+ messages in thread
From: Matt Turner @ 2010-08-16 13:06 UTC (permalink / raw)
  To: Michael Cree
  Cc: linux-kernel, Richard Henderson, Ivan Kokshaysky, Andrew Morton,
	Christoph Hellwig, Al Viro, linux-alpha

On Mon, Aug 16, 2010 at 4:18 AM, Michael Cree <mcree@orcon.net.nz> wrote:
> Typo, i.e., missing comma in argument list of call of do_osf_statfs(),
> was introduced by commit ebabe9a9001af0af56c0c2780ca1576246e7a74b.
>
> Signed-off-by: Michael Cree <mcree@orcon.net.nz>
> ---
>  arch/alpha/kernel/osf_sys.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/arch/alpha/kernel/osf_sys.c b/arch/alpha/kernel/osf_sys.c
> index fb58150..5d1e6d6 100644
> --- a/arch/alpha/kernel/osf_sys.c
> +++ b/arch/alpha/kernel/osf_sys.c
> @@ -252,7 +252,7 @@ SYSCALL_DEFINE3(osf_statfs, const char __user *, pathname,
>
>        retval = user_path(pathname, &path);
>        if (!retval) {
> -               retval = do_osf_statfs(&path buffer, bufsiz);
> +               retval = do_osf_statfs(&path, buffer, bufsiz);
>                path_put(&path);
>        }
>        return retval;
> --
> 1.7.1

Thanks Michael. Will apply.
--
To unsubscribe from this list: send the line "unsubscribe linux-alpha" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2010-08-16 13:06 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-16  8:18 [PATCH] alpha: Fix compile error due to typo in call of do_osf_statfs() Michael Cree
2010-08-16 13:06 ` Matt Turner

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