mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] Alpha: Fix a missing comma in sys_osf_statfs()
@ 2010-08-26 16:44 David Howells
  2010-08-26 18:21 ` Matt Turner
  0 siblings, 1 reply; 2+ messages in thread
From: David Howells @ 2010-08-26 16:44 UTC (permalink / raw)
  To: hch, torvalds, akpm; +Cc: viro, linux-alpha, linux-kernel

Fix a comma that got accidentally deleted from sys_osf_statfs() leading to the
following warning:

	arch/alpha/kernel/osf_sys.c: In function 'SYSC_osf_statfs':
	arch/alpha/kernel/osf_sys.c:255: error: syntax error before 'buffer'

Signed-off-by: David Howells <dhowells@redhat.com>
---

 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;


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

* Re: [PATCH] Alpha: Fix a missing comma in sys_osf_statfs()
  2010-08-26 16:44 [PATCH] Alpha: Fix a missing comma in sys_osf_statfs() David Howells
@ 2010-08-26 18:21 ` Matt Turner
  0 siblings, 0 replies; 2+ messages in thread
From: Matt Turner @ 2010-08-26 18:21 UTC (permalink / raw)
  To: David Howells; +Cc: hch, torvalds, akpm, viro, linux-alpha, linux-kernel

On Thu, Aug 26, 2010 at 12:44 PM, David Howells <dhowells@redhat.com> wrote:
> Fix a comma that got accidentally deleted from sys_osf_statfs() leading to the
> following warning:
>
>        arch/alpha/kernel/osf_sys.c: In function 'SYSC_osf_statfs':
>        arch/alpha/kernel/osf_sys.c:255: error: syntax error before 'buffer'
>
> Signed-off-by: David Howells <dhowells@redhat.com>
> ---
>
>  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;
>
> --
> 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
>

Thanks, but Michael Cree already sent an identical patch. I've just
been slow to vacuum it up and send it on to Linus. I'll do this ASAP.

Matt

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

end of thread, other threads:[~2010-08-26 18:22 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-08-26 16:44 [PATCH] Alpha: Fix a missing comma in sys_osf_statfs() David Howells
2010-08-26 18:21 ` Matt Turner

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

all inboxes | Powered by JetHome®