forked from Minki/linux
s390/dasd: fix return value for non-existent ioctls
For non-existent ioctls -ENOTTY should be returned. Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
This commit is contained in:
parent
caf757c609
commit
2267a0c85c
@ -292,12 +292,12 @@ out:
|
|||||||
#else
|
#else
|
||||||
static int dasd_ioctl_reset_profile(struct dasd_block *block)
|
static int dasd_ioctl_reset_profile(struct dasd_block *block)
|
||||||
{
|
{
|
||||||
return -ENOSYS;
|
return -ENOTTY;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int dasd_ioctl_read_profile(struct dasd_block *block, void __user *argp)
|
static int dasd_ioctl_read_profile(struct dasd_block *block, void __user *argp)
|
||||||
{
|
{
|
||||||
return -ENOSYS;
|
return -ENOTTY;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user