From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail-bw0-f12.google.com ([209.85.218.12]) by bombadil.infradead.org with esmtp (Exim 4.68 #1 (Red Hat Linux)) id 1LKFhw-0004ek-Ak for linux-mtd@lists.infradead.org; Tue, 06 Jan 2009 17:27:12 +0000 Received: by bwz5 with SMTP id 5so17615176bwz.18 for ; Tue, 06 Jan 2009 09:27:10 -0800 (PST) Sender: Corentin Chary From: Corentin Chary To: dedekind@infradead.org Subject: Re: [PATCH 1/3] UBI: map operation via ioctl Date: Tue, 6 Jan 2009 18:20:30 +0100 References: <71cd59b00901050605s4ec76e9avb146bb61deaf2159@mail.gmail.com> <1231256293.6608.55.camel@localhost.localdomain> In-Reply-To: <1231256293.6608.55.camel@localhost.localdomain> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200901061820.30465.corentincj@iksaif.net> Cc: linux-mtd@lists.infradead.org List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , =46rom bafefa6ed036173c65b7f51c6a4a4ce5004ad09f Mon Sep 17 00:00:00 2001 =46rom: Corentin Chary Date: Mon, 5 Jan 2009 14:44:11 +0100 Subject: [PATCH 1/3] UBI: map operation via ioctl UBI: map operation via ioctl Signed-off-by: Corentin Chary =2D-- drivers/mtd/ubi/cdev.c | 13 +++++++++++++ include/mtd/ubi-user.h | 16 ++++++++++++++++ 2 files changed, 29 insertions(+), 0 deletions(-) diff --git a/drivers/mtd/ubi/cdev.c b/drivers/mtd/ubi/cdev.c index 98cf31e..db47121 100644 =2D-- a/drivers/mtd/ubi/cdev.c +++ b/drivers/mtd/ubi/cdev.c @@ -518,6 +518,19 @@ static int vol_cdev_ioctl(struct inode *inode, struct = file *file, err =3D ubi_wl_flush(ubi); break; } + case UBI_IOMAP: + { + struct ubi_map_req req; + err =3D copy_from_user(&req, argp, + sizeof(struct ubi_map_req)); + if (err) { + err =3D -EFAULT; + break; + } + err =3D ubi_leb_map(desc, req.lnum, req.dtype); + break; + } + #endif =20 default: diff --git a/include/mtd/ubi-user.h b/include/mtd/ubi-user.h index ccdc562..8222f12 100644 =2D-- a/include/mtd/ubi-user.h +++ b/include/mtd/ubi-user.h @@ -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 */ +#define UBI_IOMAP _IOW(UBI_VOL_IOC_MAGIC, 3, struct ubi_map_req) + =20 /* Maximum MTD device name length supported by UBI */ #define MAX_UBI_MTD_NAME_LEN 127 @@ -319,4 +322,17 @@ struct ubi_leb_change_req { int8_t padding[7]; } __attribute__ ((packed)); =20 +/** + * struct ubi_map_req - a data structure used in map + * eraseblock requests. + * @lnum: logical eraseblock number to change + * @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__ */ =2D-=20 1.6.0.6