aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd/ubi
diff options
context:
space:
mode:
authorBoris Brezillon <boris.brezillon@free-electrons.com>2016-09-16 16:59:13 +0200
committerRichard Weinberger <richard@nod.at>2016-10-02 22:48:14 +0200
commit5f09aaa9b30c91e6f72790bfb975240e8116d6db (patch)
treea358799b6ed7c35094488d83f43c53b5ed75025b /drivers/mtd/ubi
parentUBI: fastmap: scrub PEB when bitflips are detected in a free PEB EC header (diff)
downloadlinux-dev-5f09aaa9b30c91e6f72790bfb975240e8116d6db.tar.xz
linux-dev-5f09aaa9b30c91e6f72790bfb975240e8116d6db.zip
UBI: use vol->usable_leb_size instead of (ubi->leb_size - vol->data_pad)
vol->usable_size is already set to ubi->leb_size - vol->data_pad. Use vol->usable_size instead of recalculating it. Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com> Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'drivers/mtd/ubi')
-rw-r--r--drivers/mtd/ubi/cdev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/ubi/cdev.c b/drivers/mtd/ubi/cdev.c
index ee2b74d1d1b5..3490dcd99ad1 100644
--- a/drivers/mtd/ubi/cdev.c
+++ b/drivers/mtd/ubi/cdev.c
@@ -416,7 +416,7 @@ static long vol_cdev_ioctl(struct file *file, unsigned int cmd,
}
rsvd_bytes = (long long)vol->reserved_pebs *
- ubi->leb_size-vol->data_pad;
+ vol->usable_leb_size;
if (bytes < 0 || bytes > rsvd_bytes) {
err = -EINVAL;
break;