From patchwork Mon Jan 5 14:05:26 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Corentin Chary X-Patchwork-Id: 16619 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from bombadil.infradead.org (bombadil.infradead.org [18.85.46.34]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 1CC3EDE07C for ; Tue, 6 Jan 2009 01:10:04 +1100 (EST) Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.68 #1 (Red Hat Linux)) id 1LJq6g-0005bk-RI; Mon, 05 Jan 2009 14:07:02 +0000 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 1LJq6e-0005bB-S1 for linux-mtd@lists.infradead.org; Mon, 05 Jan 2009 14:07:01 +0000 Received: by bwz5 with SMTP id 5so16342293bwz.18 for ; Mon, 05 Jan 2009 06:06:59 -0800 (PST) Received: by 10.223.108.15 with SMTP id d15mr6767424fap.62.1231164326109; Mon, 05 Jan 2009 06:05:26 -0800 (PST) Received: by 10.223.113.3 with HTTP; Mon, 5 Jan 2009 06:05:26 -0800 (PST) Message-ID: <71cd59b00901050605s4ec76e9avb146bb61deaf2159@mail.gmail.com> Date: Mon, 5 Jan 2009 15:05:26 +0100 From: "Corentin Chary" To: linux-mtd@lists.infradead.org Subject: [PATCH 1/3] UBI: map operation via ioctl MIME-Version: 1.0 Content-Disposition: inline X-Google-Sender-Auth: 3a4e7aacd4289d6d X-Spam-Score: 0.0 (/) X-BeenThere: linux-mtd@lists.infradead.org X-Mailman-Version: 2.1.9 Precedence: list List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: linux-mtd-bounces@lists.infradead.org Errors-To: linux-mtd-bounces+incoming=patchwork.ozlabs.org@lists.infradead.org From: Corentin Chary UBI: map operation via ioctl Signed-off-by: Corentin Chary --- 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 --- 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 = ubi_wl_flush(ubi); break; } + case UBI_IOMAP: + { + 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: diff --git a/include/mtd/ubi-user.h b/include/mtd/ubi-user.h index ccdc562..8222f12 100644 --- 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) + /* 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)); +/** + * 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__ */