diff options
author | Corentin Chary <corentincj@iksaif.net> | 2009-01-05 08:48:59 -0500 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2009-01-18 07:02:08 -0500 |
commit | a27ce8f55dd5fddf0b8ea179cce8f399c13dc94f (patch) | |
tree | ce20328f8c29c8ba98446799aeb8412056dcef71 /drivers/mtd/ubi | |
parent | c3da23be1673be4e738aea235604b4e6cb259655 (diff) |
UBI: add ioctl for is_mapped operation
This patch adds ioctl to check if an LEB is mapped or not (as a
debugging option so far).
[Re-named ioctl to make it look the same as the other one and made
some minor stylistic changes. Artem Bityutskiy.]
Signed-off-by: Corentin Chary <corentincj@iksaif.net>
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'drivers/mtd/ubi')
-rw-r--r-- | drivers/mtd/ubi/cdev.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/drivers/mtd/ubi/cdev.c b/drivers/mtd/ubi/cdev.c index fd7e0f923b38..9ddbade72887 100644 --- a/drivers/mtd/ubi/cdev.c +++ b/drivers/mtd/ubi/cdev.c | |||
@@ -546,6 +546,20 @@ static int vol_cdev_ioctl(struct inode *inode, struct file *file, | |||
546 | err = ubi_leb_unmap(desc, lnum); | 546 | err = ubi_leb_unmap(desc, lnum); |
547 | break; | 547 | break; |
548 | } | 548 | } |
549 | |||
550 | /* Check if logical eraseblock is mapped command */ | ||
551 | case UBI_IOCEBISMAP: | ||
552 | { | ||
553 | int32_t lnum; | ||
554 | |||
555 | err = get_user(lnum, (__user int32_t *)argp); | ||
556 | if (err) { | ||
557 | err = -EFAULT; | ||
558 | break; | ||
559 | } | ||
560 | err = ubi_is_mapped(desc, lnum); | ||
561 | break; | ||
562 | } | ||
549 | #endif | 563 | #endif |
550 | 564 | ||
551 | default: | 565 | default: |