From: Leon Romanovsky <leonro@xxxxxxxxxxxx> The internal to kernel variable declarations don't need to be declared with user types. This patch converts such occurrences appeared in ib_uverbs_write(). Signed-off-by: Leon Romanovsky <leonro@xxxxxxxxxxxx> --- drivers/infiniband/core/uverbs_main.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/infiniband/core/uverbs_main.c b/drivers/infiniband/core/uverbs_main.c index e07326139ce9..2a6deecf6f76 100644 --- a/drivers/infiniband/core/uverbs_main.c +++ b/drivers/infiniband/core/uverbs_main.c @@ -636,7 +636,7 @@ struct file *ib_uverbs_alloc_async_event_file(struct ib_uverbs_file *uverbs_file } static bool verify_command_mask(struct ib_device *ib_dev, - __u32 command, bool extended) + u32 command, bool extended) { if (!extended) return ib_dev->uverbs_cmd_mask & BIT_ULL(command); @@ -644,7 +644,7 @@ static bool verify_command_mask(struct ib_device *ib_dev, return ib_dev->uverbs_ex_cmd_mask & BIT_ULL(command); } -static bool verify_command_idx(__u32 command, bool extended) +static bool verify_command_idx(u32 command, bool extended) { if (extended) return command < ARRAY_SIZE(uverbs_ex_cmd_table) && @@ -655,11 +655,11 @@ static bool verify_command_idx(__u32 command, bool extended) } static ssize_t process_hdr(struct ib_uverbs_cmd_hdr *hdr, - __u32 *command, bool *extended) + u32 *command, bool *extended) { - __u32 flags; + u32 flags; - if (hdr->command & ~(__u32)(IB_USER_VERBS_CMD_FLAGS_MASK | + if (hdr->command & ~(u32)(IB_USER_VERBS_CMD_FLAGS_MASK | IB_USER_VERBS_CMD_COMMAND_MASK)) return -EINVAL; @@ -721,8 +721,8 @@ static ssize_t ib_uverbs_write(struct file *filp, const char __user *buf, struct ib_device *ib_dev; struct ib_uverbs_cmd_hdr hdr; bool extended; - __u32 command; int srcu_key; + u32 command; ssize_t ret; if (!ib_safe_file_access(filp)) { -- 2.16.1 -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html