[PATCH] propagate mode through open_bdev_excl/close_bdev_excl

replace open_bdev_excl/close_bdev_excl with variants taking fmode_t.
superblock gets the value used to mount it stored in sb->s_mode

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
Al Viro
2008-02-22 19:50:45 -05:00
parent 9a1c354276
commit 30c40d2c01
6 changed files with 31 additions and 24 deletions

View File

@@ -2628,7 +2628,8 @@ static int journal_init_dev(struct super_block *super,
return 0;
}
journal->j_dev_bd = open_bdev_excl(jdev_name, 0, journal);
journal->j_dev_bd = open_bdev_exclusive(jdev_name,
FMODE_READ|FMODE_WRITE, journal);
if (IS_ERR(journal->j_dev_bd)) {
result = PTR_ERR(journal->j_dev_bd);
journal->j_dev_bd = NULL;