/Linux-v4.19/drivers/infiniband/hw/mlx5/ |
D | devx.c | 495 void *cmd_in = uverbs_attr_get_alloced_ptr( in UVERBS_HANDLER() local 511 if (!devx_is_general_cmd(cmd_in)) in UVERBS_HANDLER() 518 MLX5_SET(general_obj_in_cmd_hdr, cmd_in, uid, c->devx_uid); in UVERBS_HANDLER() 519 err = mlx5_cmd_exec(dev->mdev, cmd_in, in UVERBS_HANDLER() 718 void *cmd_in = uverbs_attr_get_alloced_ptr(attrs, MLX5_IB_ATTR_DEVX_OBJ_CREATE_CMD_IN); in UVERBS_HANDLER() local 733 if (!devx_is_obj_create_cmd(cmd_in)) in UVERBS_HANDLER() 744 MLX5_SET(general_obj_in_cmd_hdr, cmd_in, uid, c->devx_uid); in UVERBS_HANDLER() 745 err = mlx5_cmd_exec(dev->mdev, cmd_in, in UVERBS_HANDLER() 753 devx_obj_build_destroy_cmd(cmd_in, cmd_out, obj->dinbox, &obj->dinlen, &obj->obj_id); in UVERBS_HANDLER() 772 void *cmd_in = uverbs_attr_get_alloced_ptr(attrs, MLX5_IB_ATTR_DEVX_OBJ_MODIFY_CMD_IN); in UVERBS_HANDLER() local [all …]
|
D | flow.c | 48 void *cmd_in; in UVERBS_HANDLER() local 100 cmd_in = uverbs_attr_get_alloced_ptr( in UVERBS_HANDLER() 106 flow_handler = mlx5_ib_raw_fs_rule_add(dev, fs_matcher, cmd_in, inlen, in UVERBS_HANDLER()
|
D | mlx5_ib.h | 1238 void *cmd_in, int inlen, int dest_id, int dest_type);
|
D | main.c | 3696 void *cmd_in, int inlen) in _create_raw_flow_rule() argument 3713 memcpy(spec->match_value, cmd_in, inlen); in _create_raw_flow_rule() 3782 void *cmd_in, int inlen, int dest_id, in mlx5_ib_raw_fs_rule_add() argument 3802 mcast = raw_fs_is_multicast(fs_matcher, cmd_in); in mlx5_ib_raw_fs_rule_add() 3819 handler = _create_raw_flow_rule(dev, ft_prio, dst, fs_matcher, cmd_in, in mlx5_ib_raw_fs_rule_add()
|
/Linux-v4.19/drivers/scsi/ |
D | st.c | 2695 static int st_int_ioctl(struct scsi_tape *STp, unsigned int cmd_in, unsigned long arg) in st_int_ioctl() argument 2721 switch (cmd_in) { in st_int_ioctl() 2805 if (cmd_in == MTWSM) in st_int_ioctl() 2807 if (cmd_in == MTWEOFI || in st_int_ioctl() 2808 (cmd_in == MTWEOF && STp->immediate_filemark)) in st_int_ioctl() 2815 if (cmd_in != MTWSM) in st_int_ioctl() 2831 at_sm = (cmd_in == MTWSM); in st_int_ioctl() 2897 if ((cmd_in == MTSETBLK || cmd_in == SET_DENS_AND_BLK) && in st_int_ioctl() 2912 if (cmd_in == MTSETDRVBUFFER) in st_int_ioctl() 2918 if (cmd_in == MTSETDENSITY) { in st_int_ioctl() [all …]
|
D | osst.c | 184 unsigned int cmd_in, unsigned long arg); 4058 unsigned int cmd_in, unsigned long arg) in osst_int_ioctl() argument 4071 if (STp->ready != ST_READY && cmd_in != MTLOAD) { in osst_int_ioctl() 4086 switch (cmd_in) { in osst_int_ioctl() 4093 ioctl_result = osst_space_over_filemarks_forward_fast(STp, &SRpnt, cmd_in, arg); in osst_int_ioctl() 4095 ioctl_result = osst_space_over_filemarks_forward_slow(STp, &SRpnt, cmd_in, arg); in osst_int_ioctl() 4107 ioctl_result = osst_space_over_filemarks_backward(STp, &SRpnt, cmd_in, arg); in osst_int_ioctl() 4119 name, arg, cmd_in==MTFSR?"forward":"backward", logical_blk_num); in osst_int_ioctl() 4121 if (cmd_in == MTFSR) { in osst_int_ioctl() 4194 if (cmd_in == MTWSM) in osst_int_ioctl() [all …]
|
D | sg.c | 902 sg_ioctl(struct file *filp, unsigned int cmd_in, unsigned long arg) in sg_ioctl() argument 916 "sg_ioctl: cmd=0x%x\n", (int) cmd_in)); in sg_ioctl() 919 switch (cmd_in) { in sg_ioctl() 1142 cmd_in, filp->f_flags & O_NDELAY); in sg_ioctl() 1145 return scsi_ioctl(sdp->device, cmd_in, p); in sg_ioctl() 1149 static long sg_compat_ioctl(struct file *filp, unsigned int cmd_in, unsigned long arg) in sg_compat_ioctl() argument 1162 ret = sdev->host->hostt->compat_ioctl(sdev, cmd_in, (void __user *)arg); in sg_compat_ioctl()
|