diff options
| author | Sukadev Bhattiprolu <[email protected]> | 2009-03-04 20:06:34 +0000 |
|---|---|---|
| committer | Al Viro <[email protected]> | 2009-03-27 18:44:03 +0000 |
| commit | a3ec947c85ec339884b30ef6a08133e9311fdae1 (patch) | |
| tree | c3cc5859a6b6d8986547405b6c5bd11bc8916114 /fs/proc/root.c | |
| parent | fs: move bdev code out of buffer.c (diff) | |
| download | kernel-a3ec947c85ec339884b30ef6a08133e9311fdae1.tar.gz kernel-a3ec947c85ec339884b30ef6a08133e9311fdae1.zip | |
vfs: simple_set_mnt() should return void
simple_set_mnt() is defined as returning 'int' but always returns 0.
Callers assume simple_set_mnt() never fails and don't properly cleanup if
it were to _ever_ fail. For instance, get_sb_single() and get_sb_nodev()
should:
up_write(sb->s_unmount);
deactivate_super(sb);
if simple_set_mnt() fails.
Since simple_set_mnt() never fails, would be cleaner if it did not
return anything.
[[email protected]: fix build]
Signed-off-by: Sukadev Bhattiprolu <[email protected]>
Acked-by: Serge Hallyn <[email protected]>
Cc: Al Viro <[email protected]>
Cc: Christoph Hellwig <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Al Viro <[email protected]>
Diffstat (limited to 'fs/proc/root.c')
| -rw-r--r-- | fs/proc/root.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/proc/root.c b/fs/proc/root.c index f6299a25594e..1e15a2b176e8 100644 --- a/fs/proc/root.c +++ b/fs/proc/root.c @@ -83,7 +83,8 @@ static int proc_get_sb(struct file_system_type *fs_type, ns->proc_mnt = mnt; } - return simple_set_mnt(mnt, sb); + simple_set_mnt(mnt, sb); + return 0; } static void proc_kill_sb(struct super_block *sb) |
