Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 12e9a456 authored by Al Viro's avatar Al Viro
Browse files

Fix failure exit in ipathfs



deactivate_locked_super() will be done by caller of fill_super, doing
it there as well is b0rken.

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 083c73c2
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -346,10 +346,8 @@ static int ipathfs_fill_super(struct super_block *sb, void *data,
	list_for_each_entry_safe(dd, tmp, &ipath_dev_list, ipath_list) {
		spin_unlock_irqrestore(&ipath_devs_lock, flags);
		ret = create_device_files(sb, dd);
		if (ret) {
			deactivate_locked_super(sb);
		if (ret)
			goto bail;
		}
		spin_lock_irqsave(&ipath_devs_lock, flags);
	}