/linux/drivers/net/wireless/silabs/wfx/ |
H A D | hif_tx_mib.c | 19 struct wfx_hif_mib_current_tx_power_level arg = { in wfx_hif_set_output_power() local 24 &arg, sizeof(arg)); in wfx_hif_set_output_power() 30 struct wfx_hif_mib_beacon_wake_up_period arg = { in wfx_hif_set_beacon_wakeup_period() local 39 &arg, sizeof(arg)); in wfx_hif_set_beacon_wakeup_period() 44 struct wfx_hif_mib_rcpi_rssi_threshold arg = { in wfx_hif_set_rcpi_rssi_threshold() local 50 arg.upperthresh = 1; in wfx_hif_set_rcpi_rssi_threshold() 51 arg.lowerthresh = 1; in wfx_hif_set_rcpi_rssi_threshold() 53 arg.upper_threshold = rssi_thold + rssi_hyst; in wfx_hif_set_rcpi_rssi_threshold() 54 arg.upper_threshold = (arg.upper_threshold + 110) * 2; in wfx_hif_set_rcpi_rssi_threshold() 55 arg.lower_threshold = rssi_thold; in wfx_hif_set_rcpi_rssi_threshold() [all …]
|
/linux/drivers/gpu/drm/amd/display/dc/spl/ |
H A D | spl_fixpt31_32.h | 67 * result = arg 69 static inline struct spl_fixed31_32 spl_fixpt_from_int(int arg) in spl_fixpt_from_int() argument 73 res.value = (long long) arg << FIXED31_32_BITS_PER_FRACTIONAL_PART; in spl_fixpt_from_int() 85 * result = -arg 87 static inline struct spl_fixed31_32 spl_fixpt_neg(struct spl_fixed31_32 arg) in spl_fixpt_neg() argument 91 res.value = -arg.value; in spl_fixpt_neg() 98 * result = abs(arg) := (arg >= 0) ? arg : -arg 100 static inline struct spl_fixed31_32 spl_fixpt_abs(struct spl_fixed31_32 arg) in spl_fixpt_abs() argument 102 if (arg.value < 0) in spl_fixpt_abs() 103 return spl_fixpt_neg(arg); in spl_fixpt_abs() [all …]
|
H A D | spl_fixpt31_32.c | 12 long long arg) in abs_i64() argument 14 if (arg > 0) in abs_i64() 15 return (unsigned long long)arg; in abs_i64() 17 return (unsigned long long)(-arg); in abs_i64() 152 struct spl_fixed31_32 spl_fixpt_sqr(struct spl_fixed31_32 arg) in spl_fixpt_sqr() argument 156 unsigned long long arg_value = abs_i64(arg.value); in spl_fixpt_sqr() 192 struct spl_fixed31_32 spl_fixpt_recip(struct spl_fixed31_32 arg) in spl_fixpt_recip() argument 199 SPL_ASSERT(arg.value); in spl_fixpt_recip() 203 arg.value); in spl_fixpt_recip() 206 struct spl_fixed31_32 spl_fixpt_sinc(struct spl_fixed31_32 arg) in spl_fixpt_sinc() argument [all …]
|
/linux/fs/bcachefs/ |
H A D | chardev.c | 57 struct bch_ioctl_assemble arg; 64 if (copy_from_user(&arg, user_arg, sizeof(arg))) 67 if (arg.flags || arg.pad) 70 user_devs = kmalloc_array(arg.nr_devs, sizeof(u64), GFP_KERNEL); 74 devs = kcalloc(arg.nr_devs, sizeof(char *), GFP_KERNEL); 77 sizeof(u64) * arg.nr_devs)) 80 for (i = 0; i < arg.nr_devs; i++) { 89 c = bch2_fs_open(devs, arg.nr_devs, bch2_opts_empty()); 95 for (i = 0; i < arg.nr_devs; i++) 103 struct bch_ioctl_incremental arg; [all …]
|
H A D | fs-ioctl.c | 69 static int bch2_ioc_getflags(struct bch_inode_info *inode, int __user *arg) in bch2_ioc_getflags() argument 73 return put_user(flags, arg); in bch2_ioc_getflags() 79 void __user *arg) in bch2_ioc_setflags() argument 85 if (get_user(uflags, (int __user *) arg)) in bch2_ioc_setflags() 115 struct fsxattr __user *arg) in bch2_ioc_fsgetxattr() argument 126 if (copy_to_user(arg, &fa, sizeof(fa))) in bch2_ioc_fsgetxattr() 150 struct fsxattr __user *arg) in bch2_ioc_fssetxattr() argument 156 if (copy_from_user(&fa, arg, sizeof(fa))) in bch2_ioc_fssetxattr() 275 static int bch2_ioc_getversion(struct bch_inode_info *inode, u32 __user *arg) in bch2_ioc_getversion() argument 277 return put_user(inode->v.i_generation, arg); in bch2_ioc_getversion() [all …]
|
/linux/drivers/gpu/drm/amd/display/include/ |
H A D | fixed31_32.h | 85 * result = arg 87 static inline struct fixed31_32 dc_fixpt_from_int(int arg) in dc_fixpt_from_int() argument 91 res.value = (long long) arg << FIXED31_32_BITS_PER_FRACTIONAL_PART; in dc_fixpt_from_int() 103 * result = -arg 105 static inline struct fixed31_32 dc_fixpt_neg(struct fixed31_32 arg) in dc_fixpt_neg() argument 109 res.value = -arg.value; in dc_fixpt_neg() 116 * result = abs(arg) := (arg >= 0) ? arg : -arg 118 static inline struct fixed31_32 dc_fixpt_abs(struct fixed31_32 arg) in dc_fixpt_abs() argument 120 if (arg.value < 0) in dc_fixpt_abs() 121 return dc_fixpt_neg(arg); in dc_fixpt_abs() [all …]
|
/linux/drivers/tee/optee/ |
H A D | rpc.c | 16 static void handle_rpc_func_cmd_get_time(struct optee_msg_arg *arg) in handle_rpc_func_cmd_get_time() argument 20 if (arg->num_params != 1) in handle_rpc_func_cmd_get_time() 22 if ((arg->params[0].attr & OPTEE_MSG_ATTR_TYPE_MASK) != in handle_rpc_func_cmd_get_time() 27 arg->params[0].u.value.a = ts.tv_sec; in handle_rpc_func_cmd_get_time() 28 arg->params[0].u.value.b = ts.tv_nsec; in handle_rpc_func_cmd_get_time() 30 arg->ret = TEEC_SUCCESS; in handle_rpc_func_cmd_get_time() 33 arg->ret = TEEC_ERROR_BAD_PARAMETERS; in handle_rpc_func_cmd_get_time() 38 struct optee_msg_arg *arg) in handle_rpc_func_cmd_i2c_transfer() argument 53 if (arg->num_params != ARRAY_SIZE(attr)) { in handle_rpc_func_cmd_i2c_transfer() 54 arg->ret = TEEC_ERROR_BAD_PARAMETERS; in handle_rpc_func_cmd_i2c_transfer() [all …]
|
/linux/tools/perf/trace/beauty/ |
H A D | fcntl.c | 18 static size_t syscall_arg__scnprintf_fcntl_getfd(char *bf, size_t size, struct syscall_arg *arg) in syscall_arg__scnprintf_fcntl_getfd() argument 20 return fcntl__scnprintf_getfd(arg->val, bf, size, arg->show_string_prefix); in syscall_arg__scnprintf_fcntl_getfd() 31 static size_t syscall_arg__scnprintf_fcntl_getlease(char *bf, size_t size, struct syscall_arg *arg) in syscall_arg__scnprintf_fcntl_getlease() argument 33 return fcntl__scnprintf_getlease(arg->val, bf, size, arg->show_string_prefix); in syscall_arg__scnprintf_fcntl_getlease() 36 size_t syscall_arg__scnprintf_fcntl_cmd(char *bf, size_t size, struct syscall_arg *arg) in syscall_arg__scnprintf_fcntl_cmd() argument 38 if (arg->val == F_GETFL) { in syscall_arg__scnprintf_fcntl_cmd() 39 syscall_arg__set_ret_scnprintf(arg, syscall_arg__scnprintf_open_flags); in syscall_arg__scnprintf_fcntl_cmd() 42 if (arg in syscall_arg__scnprintf_fcntl_cmd() 70 syscall_arg__scnprintf_fcntl_arg(char * bf,size_t size,struct syscall_arg * arg) syscall_arg__scnprintf_fcntl_arg() argument [all...] |
H A D | beauty.h | 79 * @size: 8 if all we need is an integer, otherwise all of the augmented arg. 93 …or tracepoint dynamic arrays, if fmt->nr_entries == 0, then its not a fixed array, look at arg->len 94 * @args: All the args, use syscall_args__val(arg, nth) to access one 100 * @idx: syscall arg idx (is this the first?) 101 * @mask: a syscall arg may mask another arg, see syscall_arg__scnprintf_futex_op 123 unsigned long syscall_arg__val(struct syscall_arg *arg, u8 idx); 125 size_t syscall_arg__scnprintf_strarray_flags(char *bf, size_t size, struct syscall_arg *arg); 128 bool syscall_arg__strtoul_strarray(char *bf, size_t size, struct syscall_arg *arg, u64 *ret); 131 bool syscall_arg__strtoul_strarray_flags(char *bf, size_t size, struct syscall_arg *arg, u64 *ret); 134 bool syscall_arg__strtoul_strarrays(char *bf, size_t size, struct syscall_arg *arg, u64 *ret); [all …]
|
/linux/drivers/scsi/elx/libefc/ |
H A D | efc_fabric.h | 19 enum efc_sm_event evt, void *arg); 22 enum efc_sm_event evt, void *arg); 25 enum efc_sm_event evt, void *arg); 28 enum efc_sm_event evt, void *arg); 32 enum efc_sm_event evt, void *arg); 35 enum efc_sm_event evt, void *arg); 38 enum efc_sm_event evt, void *arg); 41 __efc_ns_init(struct efc_sm_ctx *ctx, enum efc_sm_event evt, void *arg); 44 enum efc_sm_event evt, void *arg); 47 enum efc_sm_event evt, void *arg); [all …]
|
H A D | efc_device.h | 26 enum efc_sm_event evt, void *arg); 29 enum efc_sm_event evt, void *arg); 31 __efc_d_init(struct efc_sm_ctx *ctx, enum efc_sm_event evt, void *arg); 34 enum efc_sm_event evt, void *arg); 37 enum efc_sm_event evt, void *arg); 40 enum efc_sm_event evt, void *arg); 43 enum efc_sm_event evt, void *arg); 46 enum efc_sm_event evt, void *arg); 49 enum efc_sm_event evt, void *arg); 52 enum efc_sm_event evt, void *arg); [all …]
|
/linux/drivers/infiniband/sw/rxe/ |
H A D | rxe_hdr.h | 84 static inline u8 __bth_opcode(void *arg) in __bth_opcode() argument 86 struct rxe_bth *bth = arg; in __bth_opcode() 91 static inline void __bth_set_opcode(void *arg, u8 opcode) in __bth_set_opcode() argument 93 struct rxe_bth *bth = arg; in __bth_set_opcode() 98 static inline u8 __bth_se(void *arg) in __bth_se() argument 100 struct rxe_bth *bth = arg; in __bth_se() 105 static inline void __bth_set_se(void *arg, int se) in __bth_set_se() argument 107 struct rxe_bth *bth = arg; in __bth_set_se() 115 static inline u8 __bth_mig(void *arg) in __bth_mig() argument 117 struct rxe_bth *bth = arg; in __bth_mig() [all …]
|
/linux/drivers/gpu/drm/amd/display/dc/basics/ |
H A D | fixpt31_32.c | 34 long long arg) in abs_i64() argument 36 if (arg > 0) in abs_i64() 37 return (unsigned long long)arg; in abs_i64() 39 return (unsigned long long)(-arg); in abs_i64() 172 struct fixed31_32 dc_fixpt_sqr(struct fixed31_32 arg) in dc_fixpt_sqr() argument 176 unsigned long long arg_value = abs_i64(arg.value); in dc_fixpt_sqr() 210 struct fixed31_32 dc_fixpt_recip(struct fixed31_32 arg) in dc_fixpt_recip() argument 217 ASSERT(arg.value); in dc_fixpt_recip() 221 arg.value); in dc_fixpt_recip() 224 struct fixed31_32 dc_fixpt_sinc(struct fixed31_32 arg) in dc_fixpt_sinc() argument [all …]
|
/linux/arch/powerpc/perf/ |
H A D | hv-gpci.c | 134 size_t *n, struct hv_gpci_request_buffer *arg) in systeminfo_gpci_request() argument 139 arg->params.counter_request = cpu_to_be32(req); in systeminfo_gpci_request() 140 arg->params.starting_index = cpu_to_be32(starting_index); in systeminfo_gpci_request() 141 arg->params.secondary_index = cpu_to_be16(secondary_index); in systeminfo_gpci_request() 144 virt_to_phys(arg), HGPCI_REQ_BUFFER_SIZE); in systeminfo_gpci_request() 176 for (i = 0; i < be16_to_cpu(arg->params.returned_values); i++) { in systeminfo_gpci_request() 177 j = i * be16_to_cpu(arg->params.cv_element_size); in systeminfo_gpci_request() 179 for (; j < (i + 1) * be16_to_cpu(arg->params.cv_element_size); j++) in systeminfo_gpci_request() 180 *n += sprintf(buf + *n, "%02x", (u8)arg->bytes[j]); in systeminfo_gpci_request() 195 struct hv_gpci_request_buffer *arg; in processor_bus_topology_show() local [all …]
|
/linux/drivers/acpi/acpica/ |
H A D | dsfield.c | 39 union acpi_parse_object *arg); 123 union acpi_parse_object *arg; in acpi_ds_create_buffer_field() local 139 arg = acpi_ps_get_arg(op, 3); in acpi_ds_create_buffer_field() 143 arg = acpi_ps_get_arg(op, 2); in acpi_ds_create_buffer_field() 146 if (!arg) { in acpi_ds_create_buffer_field() 177 arg->common.value.string, ACPI_TYPE_ANY, in acpi_ds_create_buffer_field() 185 arg->common.value.string, status); in acpi_ds_create_buffer_field() 250 * arg - First parser arg for the field name list 262 union acpi_parse_object *arg) in acpi_ds_get_field_names() argument 282 while (arg) { in acpi_ds_get_field_names() [all …]
|
/linux/drivers/media/platform/rockchip/rkisp1/ |
H A D | rkisp1-params.c | 112 const struct rkisp1_cif_isp_dpcc_config *arg) in rkisp1_dpcc_config() argument 125 mode |= arg->mode & RKISP1_CIF_ISP_DPCC_MODE_STAGE1_ENABLE; in rkisp1_dpcc_config() 129 arg->output_mode & RKISP1_CIF_ISP_DPCC_OUTPUT_MODE_MASK); in rkisp1_dpcc_config() 131 arg->set_use & RKISP1_CIF_ISP_DPCC_SET_USE_MASK); in rkisp1_dpcc_config() 135 arg->methods[i].method & in rkisp1_dpcc_config() 138 arg->methods[i].line_thresh & in rkisp1_dpcc_config() 141 arg->methods[i].line_mad_fac & in rkisp1_dpcc_config() 144 arg->methods[i].pg_fac & in rkisp1_dpcc_config() 147 arg->methods[i].rnd_thresh & in rkisp1_dpcc_config() 150 arg->methods[i].rg_fac & in rkisp1_dpcc_config() [all …]
|
/linux/sound/drivers/opl3/ |
H A D | opl3_oss.c | 11 static int snd_opl3_open_seq_oss(struct snd_seq_oss_arg *arg, void *closure); 12 static int snd_opl3_close_seq_oss(struct snd_seq_oss_arg *arg); 13 static int snd_opl3_ioctl_seq_oss(struct snd_seq_oss_arg *arg, unsigned int cmd, unsigned long ioar… 14 static int snd_opl3_load_patch_seq_oss(struct snd_seq_oss_arg *arg, int format, const char __user *… 15 static int snd_opl3_reset_seq_oss(struct snd_seq_oss_arg *arg); 92 struct snd_seq_oss_reg *arg; in snd_opl3_init_seq_oss() local 101 arg = SNDRV_SEQ_DEVICE_ARGPTR(dev); in snd_opl3_init_seq_oss() 102 arg->type = SYNTH_TYPE_FM; in snd_opl3_init_seq_oss() 104 arg->subtype = FM_TYPE_ADLIB; in snd_opl3_init_seq_oss() 105 arg->nvoices = MAX_OPL2_VOICES; in snd_opl3_init_seq_oss() [all …]
|
/linux/io_uring/ |
H A D | register.c | 37 static __cold int io_probe(struct io_ring_ctx *ctx, void __user *arg, in io_probe() argument 53 if (copy_from_user(p, arg, size)) in io_probe() 69 if (copy_to_user(arg, p, size)) in io_probe() 107 static __cold int io_parse_restrictions(void __user *arg, unsigned int nr_args, in io_parse_restrictions() argument 114 if (!arg || nr_args > IORING_MAX_RESTRICTIONS) in io_parse_restrictions() 121 res = memdup_user(arg, size); in io_parse_restrictions() 158 void __user *arg, unsigned int nr_args) in io_register_restrictions() argument 170 ret = io_parse_restrictions(arg, nr_args, &ctx->restrictions); in io_register_restrictions() 220 void __user *arg, unsigned len) in io_register_iowq_aff() argument 235 (const compat_ulong_t __user *)arg, in io_register_iowq_aff() [all …]
|
/linux/drivers/net/wireless/st/cw1200/ |
H A D | wsm.c | 83 void *arg, u16 cmd, long tmo); 92 void *arg, in wsm_generic_confirm() argument 105 int wsm_configuration(struct cw1200_common *priv, struct wsm_configuration *arg) in wsm_configuration() argument 112 WSM_PUT32(buf, arg->dot11MaxTransmitMsduLifeTime); in wsm_configuration() 113 WSM_PUT32(buf, arg->dot11MaxReceiveLifeTime); in wsm_configuration() 114 WSM_PUT32(buf, arg->dot11RtsThreshold); in wsm_configuration() 117 WSM_PUT16(buf, arg->dpdData_size + 12); in wsm_configuration() 119 WSM_PUT(buf, arg->dot11StationId, ETH_ALEN); in wsm_configuration() 121 WSM_PUT(buf, arg->dpdData, arg->dpdData_size); in wsm_configuration() 123 ret = wsm_cmd_send(priv, buf, arg, in wsm_configuration() [all …]
|
/linux/drivers/tee/amdtee/ |
H A D | call.c | 240 int handle_invoke_cmd(struct tee_ioctl_invoke_arg *arg, u32 sinfo, in handle_invoke_cmd() argument 246 if (!arg || (!p && arg->num_params)) in handle_invoke_cmd() 249 arg->ret_origin = TEEC_ORIGIN_COMMS; in handle_invoke_cmd() 251 if (arg->session == 0) { in handle_invoke_cmd() 252 arg->ret = TEEC_ERROR_BAD_PARAMETERS; in handle_invoke_cmd() 256 ret = tee_params_to_amd_params(p, arg->num_params, &cmd.op); in handle_invoke_cmd() 259 arg->ret = TEEC_ERROR_BAD_PARAMETERS; in handle_invoke_cmd() 263 cmd.ta_handle = get_ta_handle(arg->session); in handle_invoke_cmd() 264 cmd.cmd_id = arg->func; in handle_invoke_cmd() 268 sizeof(cmd), &arg->ret); in handle_invoke_cmd() [all …]
|
/linux/tools/testing/selftests/net/mptcp/ |
H A D | pm_nl_ctl.c | 344 int arg; in dsf() local 361 for (arg = 2; arg < argc; arg++) { in dsf() 362 if (!strcmp(argv[arg], "lip")) { in dsf() 363 if (++arg >= argc) in dsf() 366 params[0] = argv[arg]; in dsf() 367 } else if (!strcmp(argv[arg], "lport")) { in dsf() 368 if (++arg >= argc) in dsf() 371 params[1] = argv[arg]; in dsf() 372 } else if (!strcmp(argv[arg], "rip")) { in dsf() 373 if (++arg >= argc) in dsf() [all …]
|
/linux/drivers/net/ethernet/netronome/nfp/nfpcore/ |
H A D | nfp_nsp.c | 164 * @arg: NFP command argument structure 171 struct nfp_nsp_command_arg arg; member 347 * @arg: NFP command argument structure 360 __nfp_nsp_command(struct nfp_nsp *state, const struct nfp_nsp_command_arg *arg) in __nfp_nsp_command() argument 377 err = nfp_cpp_writeq(cpp, nsp_cpp, nsp_buffer, arg->buf); in __nfp_nsp_command() 382 FIELD_PREP(NSP_COMMAND_OPTION, arg->option) | in __nfp_nsp_command() 383 FIELD_PREP(NSP_COMMAND_CODE, arg->code) | in __nfp_nsp_command() 384 FIELD_PREP(NSP_COMMAND_DMA_BUF, arg->dma) | in __nfp_nsp_command() 394 err, arg->code); in __nfp_nsp_command() 400 0, arg->timeout_sec ?: NFP_NSP_TIMEOUT_DEFAULT); in __nfp_nsp_command() [all …]
|
/linux/drivers/staging/gpib/common/ |
H A D | gpib_os.c | 26 static int board_type_ioctl(gpib_file_private_t *file_priv, gpib_board_t *board, unsigned long arg); 28 unsigned long arg); 30 unsigned long arg); 32 unsigned long arg); 33 static int open_dev_ioctl(struct file *filep, gpib_board_t *board, unsigned long arg); 34 static int close_dev_ioctl(struct file *filep, gpib_board_t *board, unsigned long arg); 35 static int serial_poll_ioctl(gpib_board_t *board, unsigned long arg); 36 static int wait_ioctl(gpib_file_private_t *file_priv, gpib_board_t *board, unsigned long arg); 37 static int parallel_poll_ioctl(gpib_board_t *board, unsigned long arg); 38 static int online_ioctl(gpib_board_t *board, unsigned long arg); [all …]
|
/linux/drivers/gpu/drm/i915/gt/ |
H A D | selftest_mocs.c | 62 static int live_mocs_init(struct live_mocs *arg, struct intel_gt *gt) in live_mocs_init() argument 67 memset(arg, 0, sizeof(*arg)); in live_mocs_init() 69 flags = get_mocs_settings(gt->i915, &arg->table); in live_mocs_init() 74 arg->l3cc = &arg->table; in live_mocs_init() 77 arg->mocs = &arg->table; in live_mocs_init() 79 arg->scratch = in live_mocs_init() 81 if (IS_ERR(arg->scratch)) in live_mocs_init() 82 return PTR_ERR(arg->scratch); in live_mocs_init() 84 arg->vaddr = i915_gem_object_pin_map_unlocked(arg->scratch->obj, I915_MAP_WB); in live_mocs_init() 85 if (IS_ERR(arg->vaddr)) { in live_mocs_init() [all …]
|
/linux/drivers/net/wireless/ath/ath12k/ |
H A D | wmi.c | 45 struct ath12k_wmi_service_ext_arg arg; member 82 struct ath12k_wmi_svc_rdy_ext2_arg arg; member 439 struct ath12k_wmi_service_ext_arg *arg) in ath12k_pull_svc_ready_ext() argument 448 arg->default_conc_scan_config_bits = in ath12k_pull_svc_ready_ext() 450 arg->default_fw_config_bits = le32_to_cpu(ev->default_fw_config_bits); in ath12k_pull_svc_ready_ext() 451 arg->he_cap_info = le32_to_cpu(ev->he_cap_info); in ath12k_pull_svc_ready_ext() 452 arg->mpdu_density = le32_to_cpu(ev->mpdu_density); in ath12k_pull_svc_ready_ext() 453 arg->max_bssid_rx_filters = le32_to_cpu(ev->max_bssid_rx_filters); in ath12k_pull_svc_ready_ext() 454 arg->ppet.numss_m1 = le32_to_cpu(ev->ppet.numss_m1); in ath12k_pull_svc_ready_ext() 455 arg->ppet.ru_bit_mask = le32_to_cpu(ev->ppet.ru_info); in ath12k_pull_svc_ready_ext() [all …]
|