lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <AANLkTi=bbu2HSzZTc5_aBeS_emoXB0YO4KUSgwwTEnuH@mail.gmail.com>
Date:	Mon, 16 Aug 2010 09:06:49 -0400
From:	Matt Turner <mattst88@...il.com>
To:	Michael Cree <mcree@...on.net.nz>
Cc:	linux-kernel@...r.kernel.org, Richard Henderson <rth@...ddle.net>,
	Ivan Kokshaysky <ink@...assic.park.msu.ru>,
	Andrew Morton <akpm@...ux-foundation.org>,
	Christoph Hellwig <hch@....de>,
	Al Viro <viro@...iv.linux.org.uk>, linux-alpha@...r.kernel.org
Subject: Re: [PATCH] alpha: Fix compile error due to typo in call of do_osf_statfs()

On Mon, Aug 16, 2010 at 4:18 AM, Michael Cree <mcree@...on.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@...on.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-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ