Home
last modified time | relevance | path

Searched refs:param (Results 1876 - 1900 of 3031) sorted by relevance

1...<<71727374757677787980>>...122

/kernel/linux/linux-6.6/drivers/gpu/drm/amd/pm/swsmu/smu13/
H A Dsmu_v13_0_6_ppt.c392 uint32_t clock_limit = 0, param; in smu_v13_0_6_get_dpm_ultimate_freq() local
443 param = (clk_id & 0xffff) << 16; in smu_v13_0_6_get_dpm_ultimate_freq()
452 smu, SMU_MSG_GetMaxDpmFreq, param, max); in smu_v13_0_6_get_dpm_ultimate_freq()
463 smu, SMU_MSG_GetMinDpmFreq, param, min); in smu_v13_0_6_get_dpm_ultimate_freq()
2140 u32 fatal_err, param; in smu_v13_0_6_mode1_reset() local
2145 param = SMU_RESET_MODE_1; in smu_v13_0_6_mode1_reset()
2151 param |= (fatal_err << 16); in smu_v13_0_6_mode1_reset()
2153 param, NULL); in smu_v13_0_6_mode1_reset()
/kernel/linux/linux-6.6/tools/testing/selftests/kvm/lib/
H A Dkvm_util.c54 static bool get_module_param_bool(const char *module_name, const char *param) in get_module_param_bool() argument
63 module_name, param); in get_module_param_bool()
80 TEST_FAIL("Unrecognized value '%c' for boolean module param", value); in get_module_param_bool()
83 bool get_kvm_param_bool(const char *param) in get_kvm_param_bool() argument
85 return get_module_param_bool("kvm", param); in get_kvm_param_bool()
88 bool get_kvm_intel_param_bool(const char *param) in get_kvm_intel_param_bool() argument
90 return get_module_param_bool("kvm_intel", param); in get_kvm_intel_param_bool()
93 bool get_kvm_amd_param_bool(const char *param) in get_kvm_amd_param_bool() argument
95 return get_module_param_bool("kvm_amd", param); in get_kvm_amd_param_bool()
/kernel/linux/linux-6.6/drivers/scsi/bnx2i/
H A Dbnx2i_iscsi.c755 * bnx2i_setup_host_queue_size - assigns shost->can_queue param
1522 * @param: parameter type identifier
1528 enum iscsi_param param, char *buf) in bnx2i_ep_get_param()
1537 switch (param) { in bnx2i_ep_get_param()
1560 * @param: parameter type identifier
1564 enum iscsi_host_param param, char *buf) in bnx2i_host_get_param()
1569 switch (param) { in bnx2i_host_get_param()
1597 return iscsi_host_get_param(shost, param, buf); in bnx2i_host_get_param()
2192 static umode_t bnx2i_attr_is_visible(int param_type, int param) in bnx2i_attr_is_visible() argument
2196 switch (param) { in bnx2i_attr_is_visible()
1527 bnx2i_ep_get_param(struct iscsi_endpoint *ep, enum iscsi_param param, char *buf) bnx2i_ep_get_param() argument
1563 bnx2i_host_get_param(struct Scsi_Host *shost, enum iscsi_host_param param, char *buf) bnx2i_host_get_param() argument
[all...]
/kernel/linux/linux-5.10/net/bluetooth/
H A Dhci_request.c130 const void *param, u8 event, u32 timeout) in __hci_cmd_sync_ev()
140 hci_req_add_ev(&req, opcode, plen, param, event); in __hci_cmd_sync_ev()
187 const void *param, u32 timeout) in __hci_cmd_sync()
189 return __hci_cmd_sync_ev(hdev, opcode, plen, param, 0, timeout); in __hci_cmd_sync()
292 const void *param) in hci_prepare_cmd()
307 skb_put_data(skb, param, plen); in hci_prepare_cmd()
319 const void *param, u8 event) in hci_req_add_ev()
332 skb = hci_prepare_cmd(hdev, opcode, plen, param); in hci_req_add_ev()
349 const void *param) in hci_req_add()
351 hci_req_add_ev(req, opcode, plen, param, in hci_req_add()
129 __hci_cmd_sync_ev(struct hci_dev *hdev, u16 opcode, u32 plen, const void *param, u8 event, u32 timeout) __hci_cmd_sync_ev() argument
186 __hci_cmd_sync(struct hci_dev *hdev, u16 opcode, u32 plen, const void *param, u32 timeout) __hci_cmd_sync() argument
291 hci_prepare_cmd(struct hci_dev *hdev, u16 opcode, u32 plen, const void *param) hci_prepare_cmd() argument
318 hci_req_add_ev(struct hci_request *req, u16 opcode, u32 plen, const void *param, u8 event) hci_req_add_ev() argument
348 hci_req_add(struct hci_request *req, u16 opcode, u32 plen, const void *param) hci_req_add() argument
[all...]
/kernel/linux/linux-6.6/arch/x86/kvm/
H A Dhyperv.c1809 u64 param; member
2486 hc.param = kvm_rcx_read(vcpu); in kvm_hv_hypercall()
2492 hc.param = ((u64)kvm_rdx_read(vcpu) << 32) | in kvm_hv_hypercall()
2500 hc.code = hc.param & 0xffff; in kvm_hv_hypercall()
2501 hc.var_cnt = (hc.param & HV_HYPERCALL_VARHEAD_MASK) >> HV_HYPERCALL_VARHEAD_OFFSET; in kvm_hv_hypercall()
2502 hc.fast = !!(hc.param & HV_HYPERCALL_FAST_BIT); in kvm_hv_hypercall()
2503 hc.rep_cnt = (hc.param >> HV_HYPERCALL_REP_COMP_OFFSET) & 0xfff; in kvm_hv_hypercall()
2504 hc.rep_idx = (hc.param >> HV_HYPERCALL_REP_START_OFFSET) & 0xfff; in kvm_hv_hypercall()
2515 if (unlikely(hc.param & HV_HYPERCALL_RSVD_MASK)) { in kvm_hv_hypercall()
2632 vcpu->run->hyperv.u.hcall.input = hc.param; in kvm_hv_hypercall()
[all...]
/kernel/linux/linux-5.10/drivers/ata/
H A Dlibata-core.c105 struct ata_force_param param; member
331 if (fe->param.cbl == ATA_CBL_NONE) in ata_force_cbl()
334 ap->cbl = fe->param.cbl; in ata_force_cbl()
335 ata_port_notice(ap, "FORCE: cable set to %s\n", fe->param.name); in ata_force_cbl()
375 if (!did_spd && fe->param.spd_limit) { in ata_force_link_limits()
376 link->hw_sata_spd_limit = (1 << fe->param.spd_limit) - 1; in ata_force_link_limits()
378 fe->param.name); in ata_force_link_limits()
383 if (fe->param.lflags) { in ata_force_link_limits()
384 link->flags |= fe->param.lflags; in ata_force_link_limits()
387 fe->param in ata_force_link_limits()
[all...]
/kernel/linux/linux-5.10/kernel/sched/
H A Dcore.c2515 struct sched_param param = { .sched_priority = MAX_RT_PRIO - 1 }; in sched_set_stop_task() local
2527 sched_setscheduler_nocheck(stop, SCHED_FIFO, &param); in sched_set_stop_task()
5699 const struct sched_param *param, bool check) in _sched_setscheduler()
5703 .sched_priority = param->sched_priority, in _sched_setscheduler()
5720 * @param: structure containing the new RT priority.
5729 const struct sched_param *param) in sched_setscheduler()
5731 return _sched_setscheduler(p, policy, param, true); in sched_setscheduler()
5748 * @param: structure containing the new RT priority.
5758 const struct sched_param *param) in sched_setscheduler_nocheck()
5760 return _sched_setscheduler(p, policy, param, fals in sched_setscheduler_nocheck()
5698 _sched_setscheduler(struct task_struct *p, int policy, const struct sched_param *param, bool check) _sched_setscheduler() argument
5728 sched_setscheduler(struct task_struct *p, int policy, const struct sched_param *param) sched_setscheduler() argument
5757 sched_setscheduler_nocheck(struct task_struct *p, int policy, const struct sched_param *param) sched_setscheduler_nocheck() argument
5809 do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param) do_sched_setscheduler() argument
[all...]
/kernel/linux/linux-6.6/net/bluetooth/
H A Dhci_sync.c53 u32 plen, const void *param, in hci_cmd_sync_alloc()
69 skb_put_data(skb, param, plen); in hci_cmd_sync_alloc()
88 const void *param, u8 event, struct sock *sk) in hci_cmd_sync_add()
101 skb = hci_cmd_sync_alloc(hdev, opcode, plen, param, sk); in hci_cmd_sync_add()
152 const void *param, u8 event, u32 timeout, in __hci_cmd_sync_sk()
163 hci_cmd_sync_add(&req, opcode, plen, param, event, sk); in __hci_cmd_sync_sk()
210 const void *param, u32 timeout) in __hci_cmd_sync()
212 return __hci_cmd_sync_sk(hdev, opcode, plen, param, 0, timeout, NULL); in __hci_cmd_sync()
218 const void *param, u32 timeout) in hci_cmd_sync()
228 skb = __hci_cmd_sync(hdev, opcode, plen, param, timeou in hci_cmd_sync()
52 hci_cmd_sync_alloc(struct hci_dev *hdev, u16 opcode, u32 plen, const void *param, struct sock *sk) hci_cmd_sync_alloc() argument
87 hci_cmd_sync_add(struct hci_request *req, u16 opcode, u32 plen, const void *param, u8 event, struct sock *sk) hci_cmd_sync_add() argument
151 __hci_cmd_sync_sk(struct hci_dev *hdev, u16 opcode, u32 plen, const void *param, u8 event, u32 timeout, struct sock *sk) __hci_cmd_sync_sk() argument
209 __hci_cmd_sync(struct hci_dev *hdev, u16 opcode, u32 plen, const void *param, u32 timeout) __hci_cmd_sync() argument
217 hci_cmd_sync(struct hci_dev *hdev, u16 opcode, u32 plen, const void *param, u32 timeout) hci_cmd_sync() argument
236 __hci_cmd_sync_ev(struct hci_dev *hdev, u16 opcode, u32 plen, const void *param, u8 event, u32 timeout) __hci_cmd_sync_ev() argument
245 __hci_cmd_sync_status_sk(struct hci_dev *hdev, u16 opcode, u32 plen, const void *param, u8 event, u32 timeout, struct sock *sk) __hci_cmd_sync_status_sk() argument
275 __hci_cmd_sync_status(struct hci_dev *hdev, u16 opcode, u32 plen, const void *param, u32 timeout) __hci_cmd_sync_status() argument
3599 __le16 param = cpu_to_le16(0x7d00); hci_write_ca_timeout_sync() local
[all...]
/kernel/linux/linux-5.10/drivers/scsi/qla4xxx/
H A Dql4_os.c109 enum iscsi_param param, char *buf);
111 enum iscsi_param param, char *buf);
113 enum iscsi_host_param param, char *buf);
118 int param, char *buf);
126 enum iscsi_param param, char *buf);
164 static umode_t qla4_attr_is_visible(int param_type, int param);
176 int param, char *buf);
396 static umode_t qla4_attr_is_visible(int param_type, int param) in qla4_attr_is_visible() argument
400 switch (param) { in qla4_attr_is_visible()
411 switch (param) { in qla4_attr_is_visible()
1270 qla4xxx_get_iface_param(struct iscsi_iface *iface, enum iscsi_param_type param_type, int param, char *buf) qla4xxx_get_iface_param() argument
1787 qla4xxx_get_ep_param(struct iscsi_endpoint *ep, enum iscsi_param param, char *buf) qla4xxx_get_ep_param() argument
1937 qla4xxx_host_get_param(struct Scsi_Host *shost, enum iscsi_host_param param, char *buf) qla4xxx_host_get_param() argument
2858 qla4xxx_session_get_param(struct iscsi_cls_session *cls_sess, enum iscsi_param param, char *buf) qla4xxx_session_get_param() argument
2928 qla4xxx_conn_get_param(struct iscsi_cls_conn *cls_conn, enum iscsi_param param, char *buf) qla4xxx_conn_get_param() argument
7863 qla4xxx_sysfs_ddb_get_param(struct iscsi_bus_flash_session *fnode_sess, int param, char *buf) qla4xxx_sysfs_ddb_get_param() argument
[all...]
/kernel/linux/linux-6.6/drivers/scsi/qla4xxx/
H A Dql4_os.c109 enum iscsi_param param, char *buf);
111 enum iscsi_param param, char *buf);
113 enum iscsi_host_param param, char *buf);
118 int param, char *buf);
126 enum iscsi_param param, char *buf);
164 static umode_t qla4_attr_is_visible(int param_type, int param);
176 int param, char *buf);
397 static umode_t qla4_attr_is_visible(int param_type, int param) in qla4_attr_is_visible() argument
401 switch (param) { in qla4_attr_is_visible()
412 switch (param) { in qla4_attr_is_visible()
1265 qla4xxx_get_iface_param(struct iscsi_iface *iface, enum iscsi_param_type param_type, int param, char *buf) qla4xxx_get_iface_param() argument
1782 qla4xxx_get_ep_param(struct iscsi_endpoint *ep, enum iscsi_param param, char *buf) qla4xxx_get_ep_param() argument
1932 qla4xxx_host_get_param(struct Scsi_Host *shost, enum iscsi_host_param param, char *buf) qla4xxx_host_get_param() argument
2853 qla4xxx_session_get_param(struct iscsi_cls_session *cls_sess, enum iscsi_param param, char *buf) qla4xxx_session_get_param() argument
2923 qla4xxx_conn_get_param(struct iscsi_cls_conn *cls_conn, enum iscsi_param param, char *buf) qla4xxx_conn_get_param() argument
7848 qla4xxx_sysfs_ddb_get_param(struct iscsi_bus_flash_session *fnode_sess, int param, char *buf) qla4xxx_sysfs_ddb_get_param() argument
[all...]
/kernel/linux/common_modules/tzdriver/core/
H A Dsession_manager.c132 static void tz_srv_sess_dump(const char *param) in tz_srv_sess_dump() argument
136 (void)param; in tz_srv_sess_dump()
146 void dump_services_status(const char *param) in dump_services_status() argument
150 (void)param; in dump_services_status()
159 tz_srv_sess_dump(param); in dump_services_status()
282 tloge("alloc mb param failed\n"); in tc_ns_need_load_image()
/kernel/linux/linux-5.10/drivers/bluetooth/
H A Dhci_bcm.c160 struct bcm_update_uart_baud_rate param; in bcm_set_baudrate() local
185 param.zero = cpu_to_le16(0); in bcm_set_baudrate()
186 param.baud_rate = cpu_to_le32(speed); in bcm_set_baudrate()
191 skb = __hci_cmd_sync(hdev, 0xfc18, sizeof(param), &param, in bcm_set_baudrate()
1133 dev_warn(dev->dev, "Overwriting IRQ polarity to active %s by module-param\n", in bcm_acpi_probe()
/kernel/linux/linux-5.10/drivers/block/
H A Dswim3.c250 unsigned int cmd, unsigned long param);
869 unsigned int cmd, unsigned long param) in floppy_locked_ioctl()
888 if (copy_to_user((void __user *) param, &floppy_type, in floppy_locked_ioctl()
897 unsigned int cmd, unsigned long param) in floppy_ioctl()
902 ret = floppy_locked_ioctl(bdev, mode, cmd, param); in floppy_ioctl()
868 floppy_locked_ioctl(struct block_device *bdev, fmode_t mode, unsigned int cmd, unsigned long param) floppy_locked_ioctl() argument
896 floppy_ioctl(struct block_device *bdev, fmode_t mode, unsigned int cmd, unsigned long param) floppy_ioctl() argument
/kernel/linux/linux-5.10/drivers/net/ethernet/mellanox/mlx5/core/
H A Den_dcbnl.c73 u32 param[MLX5_ST_SZ_DW(dcbx_param)]; in mlx5e_dcbnl_set_dcbx_mode() local
76 err = mlx5_query_port_dcbx_param(mdev, param); in mlx5e_dcbnl_set_dcbx_mode()
80 MLX5_SET(dcbx_param, param, version_admin, mode); in mlx5e_dcbnl_set_dcbx_mode()
82 MLX5_SET(dcbx_param, param, willing_admin, 1); in mlx5e_dcbnl_set_dcbx_mode()
84 return mlx5_set_port_dcbx_param(mdev, param); in mlx5e_dcbnl_set_dcbx_mode()
/kernel/linux/linux-5.10/fs/hmdfs/comm/
H A Dsocket_adapter.c153 struct notify_param param; in hmdfs_sendmessage() local
155 memcpy(param.remote_cid, node->cid, in hmdfs_sendmessage()
157 param.notify = NOTIFY_OFFLINE; in hmdfs_sendmessage()
158 param.fd = INVALID_SOCKET_FD; in hmdfs_sendmessage()
159 notify(node, &param); in hmdfs_sendmessage()
H A Dconnection.c571 struct notify_param param; in connection_handshake_notify() local
573 param.notify = notify_type; in connection_handshake_notify()
574 param.fd = INVALID_SOCKET_FD; in connection_handshake_notify()
575 memcpy(param.remote_cid, node->cid, HMDFS_CID_SIZE); in connection_handshake_notify()
576 notify(node, &param); in connection_handshake_notify()
/kernel/linux/linux-5.10/drivers/gpu/drm/vc4/
H A Dvc4_plane.c767 uint32_t param = fourcc_mod_broadcom_param(fb->modifier); in vc4_plane_mode_set() local
789 if (param > SCALER_TILE_HEIGHT_MASK) { in vc4_plane_mode_set()
790 DRM_DEBUG_KMS("SAND height too large (%d)\n", param); in vc4_plane_mode_set()
802 vc4_state->offsets[i] += param * tile_w * tile; in vc4_plane_mode_set()
811 pitch0 = VC4_SET_FIELD(param, SCALER_TILE_HEIGHT); in vc4_plane_mode_set()
/kernel/linux/linux-5.10/drivers/rapidio/devices/
H A Dtsi721_dma.c377 void *param = txd->callback_param; in tsi721_dma_tx_err() local
382 callback(param); in tsi721_dma_tx_err()
664 void *param = NULL; in tsi721_dma_tasklet() local
670 param = desc->txd.callback_param; in tsi721_dma_tasklet()
678 callback(param); in tsi721_dma_tasklet()
/kernel/linux/linux-6.6/drivers/net/ethernet/mellanox/mlx5/core/
H A Den_dcbnl.c73 u32 param[MLX5_ST_SZ_DW(dcbx_param)]; in mlx5e_dcbnl_set_dcbx_mode() local
76 err = mlx5_query_port_dcbx_param(mdev, param); in mlx5e_dcbnl_set_dcbx_mode()
80 MLX5_SET(dcbx_param, param, version_admin, mode); in mlx5e_dcbnl_set_dcbx_mode()
82 MLX5_SET(dcbx_param, param, willing_admin, 1); in mlx5e_dcbnl_set_dcbx_mode()
84 return mlx5_set_port_dcbx_param(mdev, param); in mlx5e_dcbnl_set_dcbx_mode()
/kernel/linux/linux-6.6/fs/hmdfs/comm/
H A Dsocket_adapter.c153 struct notify_param param; in hmdfs_sendmessage() local
155 memcpy(param.remote_cid, node->cid, in hmdfs_sendmessage()
157 param.notify = NOTIFY_OFFLINE; in hmdfs_sendmessage()
158 param.fd = INVALID_SOCKET_FD; in hmdfs_sendmessage()
159 notify(node, &param); in hmdfs_sendmessage()
H A Dconnection.c571 struct notify_param param; in connection_handshake_notify() local
573 param.notify = notify_type; in connection_handshake_notify()
574 param.fd = INVALID_SOCKET_FD; in connection_handshake_notify()
575 memcpy(param.remote_cid, node->cid, HMDFS_CID_SIZE); in connection_handshake_notify()
576 notify(node, &param); in connection_handshake_notify()
/kernel/linux/linux-6.6/drivers/pinctrl/starfive/
H A Dpinctrl-starfive-jh7110.c380 int param = pinconf_to_config_param(*config); in jh7110_pinconf_get() local
393 switch (param) { in jh7110_pinconf_get()
426 *config = pinconf_to_config_packed(param, arg); in jh7110_pinconf_get()
460 int param = pinconf_to_config_param(configs[i]); in jh7110_pinconf_group_set() local
463 switch (param) { in jh7110_pinconf_group_set()
H A Dpinctrl-starfive-jh7100.c745 int param = pinconf_to_config_param(*config); in starfive_pinconf_get() local
750 switch (param) { in starfive_pinconf_get()
787 *config = pinconf_to_config_packed(param, arg); in starfive_pinconf_get()
820 int param = pinconf_to_config_param(configs[i]); in starfive_pinconf_group_set() local
823 switch (param) { in starfive_pinconf_group_set()
/kernel/linux/linux-6.6/drivers/pinctrl/sunplus/
H A Dsppctl.c475 enum pin_config_param param = pinconf_to_config_param(config); in sppctl_gpio_set_config() local
479 switch (param) { in sppctl_gpio_set_config()
571 unsigned int param = pinconf_to_config_param(*config); in sppctl_pin_config_get() local
574 switch (param) { in sppctl_pin_config_get()
594 *config = pinconf_to_config_packed(param, arg); in sppctl_pin_config_get()
/kernel/linux/linux-6.6/drivers/rapidio/devices/
H A Dtsi721_dma.c377 void *param = txd->callback_param; in tsi721_dma_tx_err() local
382 callback(param); in tsi721_dma_tx_err()
664 void *param = NULL; in tsi721_dma_tasklet() local
670 param = desc->txd.callback_param; in tsi721_dma_tasklet()
678 callback(param); in tsi721_dma_tasklet()

Completed in 58 milliseconds

1...<<71727374757677787980>>...122