Skip to content

Commit

Permalink
UBI: rename block device ioctls
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Artem Bityutskiy committed Mar 5, 2014
1 parent 80744cc commit 8af8718
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion drivers/mtd/ubi/block.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* This feature is compiled in the UBI core, and adds a 'block' parameter
* to allow early creation of block devices on top of UBI volumes. Runtime
* block creation/removal for UBI volumes is provided through two UBI ioctls:
* UBI_IOCVOLATTBLK and UBI_IOCVOLDETBLK.
* UBI_IOCVOLCRBLK and UBI_IOCVOLRMBLK.
*/

#include <linux/module.h>
Expand Down
8 changes: 4 additions & 4 deletions drivers/mtd/ubi/cdev.c
Original file line number Diff line number Diff line change
Expand Up @@ -561,8 +561,8 @@ static long vol_cdev_ioctl(struct file *file, unsigned int cmd,
break;
}

/* Attach a block device to an UBI volume */
case UBI_IOCVOLATTBLK:
/* Create a R/O block device on top of the UBI volume */
case UBI_IOCVOLCRBLK:
{
struct ubi_volume_info vi;

Expand All @@ -571,8 +571,8 @@ static long vol_cdev_ioctl(struct file *file, unsigned int cmd,
break;
}

/* Dettach a block device from an UBI volume */
case UBI_IOCVOLDETBLK:
/* Remove the R/O block device */
case UBI_IOCVOLRMBLK:
{
struct ubi_volume_info vi;

Expand Down
14 changes: 7 additions & 7 deletions include/uapi/mtd/ubi-user.h
Original file line number Diff line number Diff line change
Expand Up @@ -138,9 +138,9 @@
* Block devices on UBI volumes
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*
* To attach or detach a block device from an UBI volume the %UBI_IOCVOLATTBLK
* and %UBI_IOCVOLDETBLK ioctl commands should be used, respectively.
* These commands take no arguments.
* To create or remove a R/O block device on top of an UBI volume the
* %UBI_IOCVOLCRBLK and %UBI_IOCVOLRMBLK ioctl commands should be used,
* respectively. These commands take no arguments.
*/

/*
Expand Down Expand Up @@ -198,10 +198,10 @@
/* Set an UBI volume property */
#define UBI_IOCSETVOLPROP _IOW(UBI_VOL_IOC_MAGIC, 6, \
struct ubi_set_vol_prop_req)
/* Attach a block device to an UBI volume */
#define UBI_IOCVOLATTBLK _IO(UBI_VOL_IOC_MAGIC, 7)
/* Detach a block device from an UBI volume */
#define UBI_IOCVOLDETBLK _IO(UBI_VOL_IOC_MAGIC, 8)
/* Create a R/O block device on top of an UBI volume */
#define UBI_IOCVOLCRBLK _IO(UBI_VOL_IOC_MAGIC, 7)
/* Remove the R/O block device */
#define UBI_IOCVOLRMBLK _IO(UBI_VOL_IOC_MAGIC, 8)

/* Maximum MTD device name length supported by UBI */
#define MAX_UBI_MTD_NAME_LEN 127
Expand Down

0 comments on commit 8af8718

Please sign in to comment.