ide-disk: lock media before checking for media change
Acked-by: Borislav Petkov <petkovbb@gmail.com> Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
This commit is contained in:
parent
0a70c7f67a
commit
099ed4c2f5
1 changed files with 1 additions and 1 deletions
|
@ -842,7 +842,6 @@ static int idedisk_open(struct inode *inode, struct file *filp)
|
|||
idkp->openers++;
|
||||
|
||||
if ((drive->dev_flags & IDE_DFLAG_REMOVABLE) && idkp->openers == 1) {
|
||||
check_disk_change(inode->i_bdev);
|
||||
/*
|
||||
* Ignore the return code from door_lock,
|
||||
* since the open() has already succeeded,
|
||||
|
@ -851,6 +850,7 @@ static int idedisk_open(struct inode *inode, struct file *filp)
|
|||
if ((drive->dev_flags & IDE_DFLAG_DOORLOCKING) &&
|
||||
idedisk_set_doorlock(drive, 1))
|
||||
drive->dev_flags &= ~IDE_DFLAG_DOORLOCKING;
|
||||
check_disk_change(inode->i_bdev);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue