diff options
author | Artem Bityutskiy <artem.bityutskiy@linux.intel.com> | 2014-03-05 06:01:56 -0500 |
---|---|---|
committer | Artem Bityutskiy <artem.bityutskiy@linux.intel.com> | 2014-03-05 08:49:15 -0500 |
commit | 8af871887fcba470ff9265c65cff7d14d9e0e3f9 (patch) | |
tree | 7bd29431422649a5c241b72a746150af10bb76ca /include/uapi/mtd | |
parent | 80744cc92207baa913ac9575374738b6298032eb (diff) |
UBI: rename block device ioctls
Rename the UBI_IOCVOLATTBLK and UBI_IOCVOLDETBLK to UBI_IOCVOLCRBLK and
UBI_IOCVOLRMBLK, because we do not use terms "attach" and "detach" for the R/O
block devices on top of UBI volumes. Instead, we use terms "create" and
"remove". This patch also amends the related commentaries.
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Acked-by: Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
Diffstat (limited to 'include/uapi/mtd')
-rw-r--r-- | include/uapi/mtd/ubi-user.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/include/uapi/mtd/ubi-user.h b/include/uapi/mtd/ubi-user.h index b98585ad3346..9c885e26cc0f 100644 --- a/include/uapi/mtd/ubi-user.h +++ b/include/uapi/mtd/ubi-user.h | |||
@@ -138,9 +138,9 @@ | |||
138 | * Block devices on UBI volumes | 138 | * Block devices on UBI volumes |
139 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | 139 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
140 | * | 140 | * |
141 | * To attach or detach a block device from an UBI volume the %UBI_IOCVOLATTBLK | 141 | * To create or remove a R/O block device on top of an UBI volume the |
142 | * and %UBI_IOCVOLDETBLK ioctl commands should be used, respectively. | 142 | * %UBI_IOCVOLCRBLK and %UBI_IOCVOLRMBLK ioctl commands should be used, |
143 | * These commands take no arguments. | 143 | * respectively. These commands take no arguments. |
144 | */ | 144 | */ |
145 | 145 | ||
146 | /* | 146 | /* |
@@ -198,10 +198,10 @@ | |||
198 | /* Set an UBI volume property */ | 198 | /* Set an UBI volume property */ |
199 | #define UBI_IOCSETVOLPROP _IOW(UBI_VOL_IOC_MAGIC, 6, \ | 199 | #define UBI_IOCSETVOLPROP _IOW(UBI_VOL_IOC_MAGIC, 6, \ |
200 | struct ubi_set_vol_prop_req) | 200 | struct ubi_set_vol_prop_req) |
201 | /* Attach a block device to an UBI volume */ | 201 | /* Create a R/O block device on top of an UBI volume */ |
202 | #define UBI_IOCVOLATTBLK _IO(UBI_VOL_IOC_MAGIC, 7) | 202 | #define UBI_IOCVOLCRBLK _IO(UBI_VOL_IOC_MAGIC, 7) |
203 | /* Detach a block device from an UBI volume */ | 203 | /* Remove the R/O block device */ |
204 | #define UBI_IOCVOLDETBLK _IO(UBI_VOL_IOC_MAGIC, 8) | 204 | #define UBI_IOCVOLRMBLK _IO(UBI_VOL_IOC_MAGIC, 8) |
205 | 205 | ||
206 | /* Maximum MTD device name length supported by UBI */ | 206 | /* Maximum MTD device name length supported by UBI */ |
207 | #define MAX_UBI_MTD_NAME_LEN 127 | 207 | #define MAX_UBI_MTD_NAME_LEN 127 |