mirror of
https://github.com/torvalds/linux.git
synced 2026-05-23 06:31:58 +02:00
Fix deadlock in ipathfs ->get_sb()
forgot to unlock superblock before calling deactivate_super()... Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
c96f585737
commit
265e771e81
|
|
@ -347,7 +347,7 @@ static int ipathfs_fill_super(struct super_block *sb, void *data,
|
|||
spin_unlock_irqrestore(&ipath_devs_lock, flags);
|
||||
ret = create_device_files(sb, dd);
|
||||
if (ret) {
|
||||
deactivate_super(sb);
|
||||
deactivate_locked_super(sb);
|
||||
goto bail;
|
||||
}
|
||||
spin_lock_irqsave(&ipath_devs_lock, flags);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user