mtd: blktrans: use better error code for unimplemented ioctl()
Linux-MTD Mailing List
linux-mtd at lists.infradead.org
Tue Jun 23 10:59:06 PDT 2015
Gitweb: http://git.infradead.org/?p=mtd-2.6.git;a=commit;h=c4a3f13c2ab997617eaf7020af33b057a68285fd
Commit: c4a3f13c2ab997617eaf7020af33b057a68285fd
Parent: 01d0afddf37cbb4da8581d6dc9bfa5b63bae3390
Author: Brian Norris <computersforpeace at gmail.com>
AuthorDate: Thu May 21 10:44:32 2015 -0700
Committer: Brian Norris <computersforpeace at gmail.com>
CommitDate: Thu May 21 10:44:32 2015 -0700
mtd: blktrans: use better error code for unimplemented ioctl()
In commit 50183936254b ("mtd: blktrans: change blktrans_getgeo return
value") we fixed the problem that ioctl(HDIO_GETGEO) might return 0
(success) for mtdblock devices which did not implement the feature and
would leave a blank (zero) result.
But now, let's get the error code right. Other code paths on this ioctl
tend to use -ENOTTY to notify the user that the ioctl() is not supported
for the device, so let's use that instead of -EOPNOTSUPP.
Suggested-by: Richard Weinberger <richard at nod.at>
Signed-off-by: Brian Norris <computersforpeace at gmail.com>
---
drivers/mtd/mtd_blkdevs.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/mtd/mtd_blkdevs.c b/drivers/mtd/mtd_blkdevs.c
index c545c93..41acc50 100644
--- a/drivers/mtd/mtd_blkdevs.c
+++ b/drivers/mtd/mtd_blkdevs.c
@@ -278,7 +278,7 @@ static int blktrans_getgeo(struct block_device *bdev, struct hd_geometry *geo)
if (!dev->mtd)
goto unlock;
- ret = dev->tr->getgeo ? dev->tr->getgeo(dev, geo) : -EOPNOTSUPP;
+ ret = dev->tr->getgeo ? dev->tr->getgeo(dev, geo) : -ENOTTY;
unlock:
mutex_unlock(&dev->lock);
blktrans_dev_put(dev);
More information about the linux-mtd-cvs
mailing list