[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <4D5A98C7.3070803@redhat.com>
Date: Tue, 15 Feb 2011 16:16:23 +0100
From: Milan Broz <mbroz@...hat.com>
To: device-mapper development <dm-devel@...hat.com>
CC: Tejun Heo <tj@...nel.org>, Jens Axboe <axboe@...nel.dk>,
Tao Ma <tm@....ma>, linux-kernel@...r.kernel.org
Subject: [PATCH] Return EROFS if read-only detected on block device
This allows userspace to distinguish what is going on.
EACCES is returned when user lacks required capability,
not that device is read-only.
Signed-off-by: Milan Broz <mbroz@...hat.com>
---
fs/block_dev.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/fs/block_dev.c b/fs/block_dev.c
index c9cf9f7..db2c8db 100644
--- a/fs/block_dev.c
+++ b/fs/block_dev.c
@@ -1219,7 +1219,7 @@ int blkdev_get(struct block_device *bdev, fmode_t mode, void *holder)
/* __blkdev_get() may alter read only status, check it afterwards */
if (!res && (mode & FMODE_WRITE) && bdev_read_only(bdev)) {
__blkdev_put(bdev, mode, 0);
- res = -EACCES;
+ res = -EROFS;
}
if (whole) {
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists