From: Hannes Eder <hannes@hanneseder.net>
To: trivial@kernel.org
Cc: kernel-janitors@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: [PATCH 11/16] fs/super.c: fix sparse warning: Using plain integer as NULL pointer
Date: Sun, 22 Feb 2009 01:05:03 +0100 [thread overview]
Message-ID: <20090222000459.17557.20005.stgit@vmbox.hanneseder.net> (raw)
In-Reply-To: <20090221235706.17557.97714.stgit@vmbox.hanneseder.net>
Fix this sparse warning:
fs/super.c:849:26: warning: Using plain integer as NULL pointer
Signed-off-by: Hannes Eder <hannes@hanneseder.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);
next prev parent reply other threads:[~2009-02-22 0:12 UTC|newest]
Thread overview: 38+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-02-22 0:00 [PATCH 00/16] fix sparse warnings: " Hannes Eder
2009-02-22 0:00 ` [PATCH 01/16] kexec/i386: " Hannes Eder
2009-02-27 0:48 ` Hannes Eder
2009-02-22 0:01 ` [PATCH 02/16] x86, numa_32.c: fix sparse warning: " Hannes Eder
2009-02-27 0:50 ` Hannes Eder
2009-02-22 0:01 ` [PATCH 03/16] drm: radeon: fix sparse warnings: " Hannes Eder
2009-02-27 0:53 ` Hannes Eder
2009-02-22 0:01 ` [PATCH 04/16] ide: " Hannes Eder
2009-02-27 0:58 ` Hannes Eder
2009-02-22 0:02 ` [PATCH 05/16] dvb: " Hannes Eder
2009-02-27 1:00 ` Hannes Eder
2009-02-22 0:02 ` [PATCH 06/16] MTD: tests: " Hannes Eder
2009-02-27 1:02 ` Hannes Eder
2009-02-27 5:07 ` Artem Bityutskiy
2009-02-22 0:02 ` [PATCH 07/16] panasonic-laptop: fix sparse warning: " Hannes Eder
2009-02-27 1:03 ` Hannes Eder
2009-02-22 0:02 ` [PATCH 08/16] [SCSI] FlashPoint: fix sparse warnings: " Hannes Eder
2009-02-22 0:11 ` [PATCH 08/16 v2] " Hannes Eder
2009-02-22 0:04 ` [PATCH 09/16] usb host: fix sparse warning: " Hannes Eder
2009-02-27 1:04 ` Hannes Eder
2009-02-22 0:04 ` [PATCH 10/16] viafb: " Hannes Eder
2009-02-27 1:07 ` Hannes Eder
2009-02-22 0:05 ` Hannes Eder [this message]
2009-02-27 1:10 ` [PATCH 11/16] fs/super.c: " Hannes Eder
2009-02-27 1:28 ` Al Viro
2009-03-02 21:34 ` [PATCH 11/16 v2] NULL noise: drivers/ide/ide-*.c Hannes Eder
2009-03-02 23:53 ` [PATCH 04/16 v3] " Hannes Eder
2009-03-05 13:47 ` Bartlomiej Zolnierkiewicz
2009-02-22 0:05 ` [PATCH 12/16] reiserfs: fix sparse warning: Using plain integer as NULL pointer Hannes Eder
2009-02-27 1:12 ` Hannes Eder
2009-02-22 0:05 ` [PATCH 13/16] kprobes: fix sparse warnings: " Hannes Eder
2009-02-27 1:13 ` Hannes Eder
2009-02-22 0:05 ` [PATCH 14/16] memcg: fix sparse warning: " Hannes Eder
2009-02-27 1:15 ` Hannes Eder
2009-02-27 1:37 ` KAMEZAWA Hiroyuki
2009-02-22 0:05 ` [PATCH 15/16] ipv6: " Hannes Eder
2009-02-22 7:37 ` David Miller
2009-02-22 0:05 ` [PATCH 16/16] ALSA: msnd: " Hannes Eder
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20090222000459.17557.20005.stgit@vmbox.hanneseder.net \
--to=hannes@hanneseder.net \
--cc=kernel-janitors@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=trivial@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome