Lines Matching refs:command
627 flags = (hdr.command & in ib_uverbs_write()
631 __u32 command; in ib_uverbs_write() local
633 if (hdr.command & ~(__u32)(IB_USER_VERBS_CMD_FLAGS_MASK | in ib_uverbs_write()
637 command = hdr.command & IB_USER_VERBS_CMD_COMMAND_MASK; in ib_uverbs_write()
639 if (command >= ARRAY_SIZE(uverbs_cmd_table) || in ib_uverbs_write()
640 !uverbs_cmd_table[command]) in ib_uverbs_write()
644 command != IB_USER_VERBS_CMD_GET_CONTEXT) in ib_uverbs_write()
647 if (!(file->device->ib_dev->uverbs_cmd_mask & (1ull << command))) in ib_uverbs_write()
653 return uverbs_cmd_table[command](file, in ib_uverbs_write()
659 __u32 command; in ib_uverbs_write() local
667 if (hdr.command & ~(__u32)(IB_USER_VERBS_CMD_FLAGS_MASK | in ib_uverbs_write()
671 command = hdr.command & IB_USER_VERBS_CMD_COMMAND_MASK; in ib_uverbs_write()
673 if (command >= ARRAY_SIZE(uverbs_ex_cmd_table) || in ib_uverbs_write()
674 !uverbs_ex_cmd_table[command]) in ib_uverbs_write()
680 if (!(file->device->ib_dev->uverbs_ex_cmd_mask & (1ull << command))) in ib_uverbs_write()
720 err = uverbs_ex_cmd_table[command](file, in ib_uverbs_write()