[PATCH v2 2/2] ubi: Implement ioctl for detailed erase counters
Rickard Andersson
rickard.andersson at axis.com
Wed Nov 27 01:10:50 PST 2024
Currently, "max_ec" can be read from sysfs, which provides a limited
view of the flash device’s wear. In certain cases, such as bugs in
the wear-leveling algorithm, specific blocks can be worn down more
than others, resulting in uneven wear distribution. Also some use cases
can wear the erase blocks of the fastmap area more heavily than other
parts of flash.
Providing detailed erase counter values give a better understanding of
the overall flash wear and is needed to be able to calculate for example
expected life time.
There exists more detailed info in debugfs, but this information is
only available for debug builds.
Signed-off-by: Rickard Andersson <rickard.andersson at axis.com>
---
drivers/mtd/ubi/cdev.c | 96 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 96 insertions(+)
diff --git a/drivers/mtd/ubi/cdev.c b/drivers/mtd/ubi/cdev.c
index 0d8f04cf03c5..681cf8526e2f 100644
--- a/drivers/mtd/ubi/cdev.c
+++ b/drivers/mtd/ubi/cdev.c
@@ -828,6 +828,96 @@ static int rename_volumes(struct ubi_device *ubi,
return err;
}
+
+static int ubi_get_ec_info(struct ubi_device *ubi, struct ubi_ecinfo_req __user *ureq)
+{
+ struct ubi_ecinfo_req req;
+ struct ubi_wl_entry *wl;
+ int i;
+ int peb;
+ int end_peb;
+ int err = 0;
+ int max_elem;
+ int32_t *erase_counters;
+
+ /* Copy the input arguments */
+ err = copy_from_user(&req, ureq, sizeof(struct ubi_ecinfo_req));
+ if (err) {
+ err = -EFAULT;
+ goto out;
+ }
+
+ /* Check input arguments */
+ if (req.length <= 0 || req.start < 0) {
+ err = -EINVAL;
+ goto out;
+ }
+
+ max_elem = req.length;
+
+ /* We can not read more than the total amount of PEBs */
+ if (max_elem > ubi->peb_count)
+ max_elem = ubi->peb_count;
+
+ /* Check for overflow */
+ if (req.start + max_elem < req.start) {
+ err = -EINVAL;
+ goto out;
+ }
+
+ erase_counters = kmalloc_array(max_elem,
+ sizeof(int32_t),
+ GFP_KERNEL);
+ if (!erase_counters) {
+ err = -ENOMEM;
+ goto out;
+ }
+
+ end_peb = req.start + max_elem;
+ if (end_peb > ubi->peb_count)
+ end_peb = ubi->peb_count;
+
+ i = 0;
+ for (peb = req.start; peb < end_peb; i++, peb++) {
+ int ec;
+
+ if (ubi_io_is_bad(ubi, peb)) {
+ erase_counters[i] = UBI_UNKNOWN;
+ continue;
+ }
+
+ spin_lock(&ubi->wl_lock);
+
+ wl = ubi->lookuptbl[peb];
+ if (wl)
+ ec = wl->ec;
+ else
+ ec = UBI_UNKNOWN;
+
+ spin_unlock(&ubi->wl_lock);
+
+ erase_counters[i] = ec;
+ }
+
+ /* Return actual read length */
+ req.read_length = i;
+
+ /* Copy everything except erase counter array */
+ if (copy_to_user(ureq, &req, sizeof(struct ubi_ecinfo_req))) {
+ err = -EFAULT;
+ goto out_free;
+ }
+
+ /* Copy erase counter array */
+ if (copy_to_user(ureq->erase_counters, erase_counters, max_elem * sizeof(int32_t)))
+ err = -EFAULT;
+
+ out_free:
+ kfree(erase_counters);
+ out:
+ return err;
+}
+
static long ubi_cdev_ioctl(struct file *file, unsigned int cmd,
unsigned long arg)
{
@@ -991,6 +1081,12 @@ static long ubi_cdev_ioctl(struct file *file, unsigned int cmd,
break;
}
+ case UBI_IOCECNFO:
+ {
+ err = ubi_get_ec_info(ubi, argp);
+ break;
+ }
+
default:
err = -ENOTTY;
break;
--
2.30.2
More information about the linux-mtd
mailing list