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] [thread-next>] [day] [month] [year] [list]
Date:	Fri, 27 Feb 2009 02:10:14 +0100
From:	Hannes Eder <hannes@...neseder.net>
To:	trivial@...nel.org, Al Viro <viro@...iv.linux.org.uk>
Cc:	kernel-janitors@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH 11/16] fs/super.c: fix sparse warning: Using plain integer 
	as NULL pointer

[Added To]

On Sun, Feb 22, 2009 at 1:05 AM, Hannes Eder <hannes@...neseder.net> wrote:
> Fix this sparse warning:
>  fs/super.c:849:26: warning: Using plain integer as NULL pointer
>
> Signed-off-by: Hannes Eder <hannes@...neseder.net>
> ---
>  fs/super.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/fs/super.c b/fs/super.c
> index c38eef4..c6ad02d 100644
> --- a/fs/super.c
> +++ b/fs/super.c
> @@ -846,7 +846,7 @@ void kill_block_super(struct super_block *sb)
>        struct block_device *bdev = sb->s_bdev;
>        fmode_t mode = sb->s_mode;
>
> -       bdev->bd_super = 0;
> +       bdev->bd_super = NULL;
>        generic_shutdown_super(sb);
>        sync_blockdev(bdev);
>        close_bdev_exclusive(bdev, mode);
>
>
--
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