|
@@ -3327,7 +3327,10 @@ static inline int set_geometry(unsigned int cmd, struct floppy_struct *g,
|
|
if (!capable(CAP_SYS_ADMIN))
|
|
if (!capable(CAP_SYS_ADMIN))
|
|
return -EPERM;
|
|
return -EPERM;
|
|
mutex_lock(&open_lock);
|
|
mutex_lock(&open_lock);
|
|
- LOCK_FDC(drive, 1);
|
|
|
|
|
|
+ if (lock_fdc(drive, 1)) {
|
|
|
|
+ mutex_unlock(&open_lock);
|
|
|
|
+ return -EINTR;
|
|
|
|
+ }
|
|
floppy_type[type] = *g;
|
|
floppy_type[type] = *g;
|
|
floppy_type[type].name = "user format";
|
|
floppy_type[type].name = "user format";
|
|
for (cnt = type << 2; cnt < (type << 2) + 4; cnt++)
|
|
for (cnt = type << 2; cnt < (type << 2) + 4; cnt++)
|