Skip to content

Commit

Permalink
UBI: add ioctl for map operation
Browse files Browse the repository at this point in the history
This patch adds ioctl for the LEB map operation (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>
  • Loading branch information
Corentin Chary authored and Artem Bityutskiy committed Jan 18, 2009
1 parent 1de9e8e commit 141e6eb
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
14 changes: 14 additions & 0 deletions drivers/mtd/ubi/cdev.c
Original file line number Diff line number Diff line change
Expand Up @@ -518,6 +518,20 @@ static int vol_cdev_ioctl(struct inode *inode, struct file *file,
err = ubi_wl_flush(ubi);
break;
}

/* Logical eraseblock map command */
case UBI_IOCEBMAP:
{
struct ubi_map_req req;

err = copy_from_user(&req, argp, sizeof(struct ubi_map_req));
if (err) {
err = -EFAULT;
break;
}
err = ubi_leb_map(desc, req.lnum, req.dtype);
break;
}
#endif

default:
Expand Down
15 changes: 15 additions & 0 deletions include/mtd/ubi-user.h
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,9 @@
#define UBI_IOCEBER _IOW(UBI_VOL_IOC_MAGIC, 1, int32_t)
/* An atomic eraseblock change command */
#define UBI_IOCEBCH _IOW(UBI_VOL_IOC_MAGIC, 2, int32_t)
/* Map an eraseblock, used for debugging, disabled by default */
#define UBI_IOCEBMAP _IOW(UBI_VOL_IOC_MAGIC, 3, struct ubi_map_req)


/* Maximum MTD device name length supported by UBI */
#define MAX_UBI_MTD_NAME_LEN 127
Expand Down Expand Up @@ -319,4 +322,16 @@ struct ubi_leb_change_req {
int8_t padding[7];
} __attribute__ ((packed));

/**
* struct ubi_map_req - a data structure used in map eraseblock requests.
* @lnum: logical eraseblock number to unmap
* @dtype: data type (%UBI_LONGTERM, %UBI_SHORTTERM, %UBI_UNKNOWN)
* @padding: reserved for future, not used, has to be zeroed
*/
struct ubi_map_req {
int32_t lnum;
int8_t dtype;
int8_t padding[3];
} __attribute__ ((packed));

#endif /* __UBI_USER_H__ */

0 comments on commit 141e6eb

Please sign in to comment.