projects
/
firefly-linux-kernel-4.4.55.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4571b82
)
nilfs2: replace MS_VERBOSE with MS_SILENT
author
Ryusuke Konishi
<konishi.ryusuke@lab.ntt.co.jp>
Sun, 9 May 2010 00:48:31 +0000
(09:48 +0900)
committer
Ryusuke Konishi
<konishi.ryusuke@lab.ntt.co.jp>
Mon, 10 May 2010 02:32:34 +0000
(11:32 +0900)
MS_VERBOSE is deprecated. This replaces it with MS_SILENT in
reference to get_sb_bdev function.
Signed-off-by: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
fs/nilfs2/super.c
patch
|
blob
|
history
diff --git
a/fs/nilfs2/super.c
b/fs/nilfs2/super.c
index 16939b37b7d6b323fa22db77c5912a61b2f0b74f..6b05771d120a393cece042f0888bfff242c9fa00 100644
(file)
--- a/
fs/nilfs2/super.c
+++ b/
fs/nilfs2/super.c
@@
-1076,7
+1076,8
@@
nilfs_get_sb(struct file_system_type *fs_type, int flags,
strlcpy(s->s_id, bdevname(sd.bdev, b), sizeof(s->s_id));
sb_set_blocksize(s, block_size(sd.bdev));
- err = nilfs_fill_super(s, data, flags & MS_VERBOSE, nilfs);
+ err = nilfs_fill_super(s, data, flags & MS_SILENT ? 1 : 0,
+ nilfs);
if (err)
goto cancel_new;