[PATCH] missing ERR_PTR in 9fs
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
1dd465cac8
commit
192eaa28ba
1 changed files with 1 additions and 1 deletions
|
@ -129,7 +129,7 @@ static struct super_block *v9fs_get_sb(struct file_system_type
|
||||||
|
|
||||||
if ((newfid = v9fs_session_init(v9ses, dev_name, data)) < 0) {
|
if ((newfid = v9fs_session_init(v9ses, dev_name, data)) < 0) {
|
||||||
dprintk(DEBUG_ERROR, "problem initiating session\n");
|
dprintk(DEBUG_ERROR, "problem initiating session\n");
|
||||||
return newfid;
|
return ERR_PTR(newfid);
|
||||||
}
|
}
|
||||||
|
|
||||||
sb = sget(fs_type, NULL, v9fs_set_super, v9ses);
|
sb = sget(fs_type, NULL, v9fs_set_super, v9ses);
|
||||||
|
|
Loading…
Reference in a new issue