Home
last modified time | relevance | path

Searched refs:handle (Results 1 – 25 of 2514) sorted by relevance

12345678910>>...101

/linux/drivers/crypto/intel/qat/qat_common/
H A Dqat_hal.c36 #define AE(handle, ae) ((handle)->hal_handle->aes[ae]) argument
69 void qat_hal_set_live_ctx(struct icp_qat_fw_loader_handle *handle, in qat_hal_set_live_ctx() argument
72 AE(handle, ae).live_ctx_mask = ctx_mask; in qat_hal_set_live_ctx()
76 static int qat_hal_rd_ae_csr(struct icp_qat_fw_loader_handle *handle, in qat_hal_rd_ae_csr() argument
83 value = GET_AE_CSR(handle, ae, csr); in qat_hal_rd_ae_csr()
84 if (!(GET_AE_CSR(handle, ae, LOCAL_CSR_STATUS) & LCS_STATUS)) in qat_hal_rd_ae_csr()
92 static int qat_hal_wr_ae_csr(struct icp_qat_fw_loader_handle *handle, in qat_hal_wr_ae_csr() argument
99 SET_AE_CSR(handle, ae, csr, value); in qat_hal_wr_ae_csr()
100 if (!(GET_AE_CSR(handle, ae, LOCAL_CSR_STATUS) & LCS_STATUS)) in qat_hal_wr_ae_csr()
108 static void qat_hal_get_wakeup_event(struct icp_qat_fw_loader_handle *handle, in qat_hal_get_wakeup_event() argument
[all …]
H A Dqat_uclo.c128 static void qat_uclo_wr_sram_by_words(struct icp_qat_fw_loader_handle *handle, in qat_uclo_wr_sram_by_words() argument
137 SRAM_WRITE(handle, addr, outval); in qat_uclo_wr_sram_by_words()
144 static void qat_uclo_wr_umem_by_words(struct icp_qat_fw_loader_handle *handle, in qat_uclo_wr_umem_by_words() argument
156 qat_hal_wr_umem(handle, ae, addr++, 1, &outval); in qat_uclo_wr_umem_by_words()
162 static void qat_uclo_batch_wr_umem(struct icp_qat_fw_loader_handle *handle, in qat_uclo_batch_wr_umem() argument
179 qat_uclo_wr_umem_by_words(handle, ae, addr, value, size); in qat_uclo_batch_wr_umem()
185 qat_uclo_cleanup_batch_init_list(struct icp_qat_fw_loader_handle *handle, in qat_uclo_cleanup_batch_init_list() argument
213 static int qat_uclo_fetch_initmem_ae(struct icp_qat_fw_loader_handle *handle, in qat_uclo_fetch_initmem_ae() argument
217 struct icp_qat_uclo_objhandle *obj_handle = handle->obj_handle; in qat_uclo_fetch_initmem_ae()
245 *handle, struct icp_qat_uof_initmem in qat_uclo_create_batch_init_list()
[all …]
H A Dicp_qat_hal.h125 #define SET_CAP_CSR(handle, csr, val) \ argument
126 ADF_CSR_WR((handle)->hal_cap_g_ctl_csr_addr_v, csr, val)
127 #define GET_CAP_CSR(handle, csr) \ argument
128 ADF_CSR_RD((handle)->hal_cap_g_ctl_csr_addr_v, csr)
129 #define AE_CSR(handle, ae) \ argument
130 ((char __iomem *)(handle)->hal_cap_ae_local_csr_addr_v + ((ae) << 12))
131 #define AE_CSR_ADDR(handle, ae, csr) (AE_CSR(handle, ae) + (0x3ff & (csr))) argument
132 #define SET_AE_CSR(handle, ae, csr, val) \ argument
133 ADF_CSR_WR(AE_CSR_ADDR(handle, ae, csr), 0, val)
134 #define GET_AE_CSR(handle, ae, csr) ADF_CSR_RD(AE_CSR_ADDR(handle, ae, csr), 0) argument
[all …]
/linux/tools/testing/selftests/namespaces/
H A Dfile_handle_test.c25 struct file_handle *handle; in TEST() local
36 handle = malloc(sizeof(*handle) + MAX_HANDLE_SZ); in TEST()
37 ASSERT_NE(handle, NULL); in TEST()
44 handle->handle_bytes = MAX_HANDLE_SZ; in TEST()
45 ret = name_to_handle_at(ns_fd, "", handle, &mount_id, AT_EMPTY_PATH); in TEST()
47 SKIP(free(handle); close(ns_fd); in TEST()
51 ASSERT_GT(handle->handle_bytes, 0); in TEST()
54 fd = open_by_handle_at(FD_NSFS_ROOT, handle, O_RDONLY); in TEST()
56 SKIP(free(handle); close(ns_fd); in TEST()
61 SKIP(free(handle); close(ns_fd); in TEST()
[all …]
/linux/fs/ext4/
H A Dext4_jbd2.c35 handle_t *handle = current->journal_info; in ext4_get_nojournal() local
36 unsigned long ref_cnt = (unsigned long)handle; in ext4_get_nojournal()
41 handle = (handle_t *)ref_cnt; in ext4_get_nojournal()
43 current->journal_info = handle; in ext4_get_nojournal()
44 return handle; in ext4_get_nojournal()
49 static void ext4_put_nojournal(handle_t *handle) in ext4_put_nojournal() argument
51 unsigned long ref_cnt = (unsigned long)handle; in ext4_put_nojournal()
56 handle = (handle_t *)ref_cnt; in ext4_put_nojournal()
58 current->journal_info = handle; in ext4_put_nojournal()
118 int __ext4_journal_stop(const char *where, unsigned int line, handle_t *handle) in __ext4_journal_stop() argument
[all …]
/linux/tools/testing/selftests/drivers/net/mlxsw/
H A Dsch_offload.sh19 local handle=$1; shift
23 h=$(qdisc_stats_get $h1 "$handle" .handle)
24 [[ $h == '"'$handle'"' ]]
25 check_err $? "Qdisc with handle $handle does not exist"
27 offloaded=$(qdisc_stats_get $h1 "$handle" .offloaded)
29 check_fail $? "Qdisc with handle $handle offloaded, but should not be"
34 local handle=$1; shift
36 if [[ ! -z $handle ]]; then
37 local offloaded=$(qdisc_stats_get $h1 "$handle" .offloaded)
39 check_err $? "Qdisc with handle $handle not offloaded"
[all …]
/linux/drivers/net/ethernet/qualcomm/
H A Dqca_7k_common.c64 qcafrm_fsm_decode(struct qcafrm_handle *handle, u8 *buf, u16 buf_len, u8 recv_byte) in qcafrm_fsm_decode() argument
69 switch (handle->state) { in qcafrm_fsm_decode()
73 handle->state--; in qcafrm_fsm_decode()
77 handle->state = handle->init; in qcafrm_fsm_decode()
82 handle->state--; in qcafrm_fsm_decode()
91 handle->state = handle->init; in qcafrm_fsm_decode()
93 handle->state--; in qcafrm_fsm_decode()
99 handle->offset = recv_byte; in qcafrm_fsm_decode()
100 handle->state = QCAFRM_WAIT_LEN_BYTE1; in qcafrm_fsm_decode()
103 handle->offset = handle->offset | (recv_byte << 8); in qcafrm_fsm_decode()
[all …]
/linux/drivers/net/ethernet/hisilicon/hns/
H A Dhns_ae_adapt.c16 static struct hns_mac_cb *hns_get_mac_cb(struct hnae_handle *handle) in hns_get_mac_cb() argument
18 struct hnae_vf_cb *vf_cb = hns_ae_get_vf_cb(handle); in hns_get_mac_cb()
28 static struct hns_ppe_cb *hns_get_ppe_cb(struct hnae_handle *handle) in hns_get_ppe_cb() argument
32 struct hnae_vf_cb *vf_cb = hns_ae_get_vf_cb(handle); in hns_get_ppe_cb()
137 static void hns_ae_put_handle(struct hnae_handle *handle) in hns_ae_put_handle() argument
139 struct hnae_vf_cb *vf_cb = hns_ae_get_vf_cb(handle); in hns_ae_put_handle()
142 for (i = 0; i < handle->q_num; i++) in hns_ae_put_handle()
143 hns_ae_get_ring_pair(handle->qs[i])->used_by_vf = 0; in hns_ae_put_handle()
148 static int hns_ae_wait_flow_down(struct hnae_handle *handle) in hns_ae_wait_flow_down() argument
156 for (i = 0; i < handle->q_num; i++) { in hns_ae_wait_flow_down()
[all …]
/linux/drivers/gpu/drm/amd/pm/powerplay/
H A Damd_powerplay.c308 static int pp_dpm_load_fw(void *handle) in pp_dpm_load_fw() argument
310 struct pp_hwmgr *hwmgr = handle; in pp_dpm_load_fw()
323 static int pp_dpm_fw_loading_complete(void *handle) in pp_dpm_fw_loading_complete() argument
328 static int pp_set_clockgating_by_smu(void *handle, uint32_t msg_id) in pp_set_clockgating_by_smu() argument
330 struct pp_hwmgr *hwmgr = handle; in pp_set_clockgating_by_smu()
367 static int pp_dpm_force_performance_level(void *handle, in pp_dpm_force_performance_level() argument
370 struct pp_hwmgr *hwmgr = handle; in pp_dpm_force_performance_level()
386 void *handle) in pp_dpm_get_performance_level() argument
388 struct pp_hwmgr *hwmgr = handle; in pp_dpm_get_performance_level()
396 static uint32_t pp_dpm_get_sclk(void *handle, bool low) in pp_dpm_get_sclk() argument
[all …]
/linux/kernel/events/
H A Dring_buffer.c20 static void perf_output_wakeup(struct perf_output_handle *handle) in perf_output_wakeup() argument
22 atomic_set(&handle->rb->poll, EPOLLIN | EPOLLRDNORM); in perf_output_wakeup()
24 handle->event->pending_wakeup = 1; in perf_output_wakeup()
26 if (*perf_event_fasync(handle->event) && !handle->event->pending_kill) in perf_output_wakeup()
27 handle->event->pending_kill = POLL_IN; in perf_output_wakeup()
29 irq_work_queue(&handle->event->pending_irq); in perf_output_wakeup()
40 static void perf_output_get_handle(struct perf_output_handle *handle) in perf_output_get_handle() argument
42 struct perf_buffer *rb = handle->rb; in perf_output_get_handle()
51 handle->wakeup = local_read(&rb->wakeup); in perf_output_get_handle()
54 static void perf_output_put_handle(struct perf_output_handle *handle) in perf_output_put_handle() argument
[all …]
/linux/fs/jbd2/
H A Dtransaction.c312 static int start_this_handle(journal_t *journal, handle_t *handle, in start_this_handle() argument
316 int blocks = handle->h_total_credits; in start_this_handle()
320 if (handle->h_rsv_handle) in start_this_handle()
321 rsv_blocks = handle->h_rsv_handle->h_total_credits; in start_this_handle()
357 jbd2_debug(3, "New handle %p going live.\n", handle); in start_this_handle()
378 if (!handle->h_reserved && journal->j_barrier_count) { in start_this_handle()
391 (handle->h_reserved || !journal->j_barrier_count)) { in start_this_handle()
401 if (!handle->h_reserved) { in start_this_handle()
424 handle->h_reserved = 0; in start_this_handle()
431 handle->h_transaction = transaction; in start_this_handle()
[all …]
/linux/drivers/pci/hotplug/
H A Dacpi_pcihp.c38 static acpi_status acpi_run_oshp(acpi_handle handle) in acpi_run_oshp() argument
43 acpi_get_name(handle, ACPI_FULL_PATHNAME, &string); in acpi_run_oshp()
46 status = acpi_evaluate_object(handle, METHOD_NAME_OSHP, NULL, NULL); in acpi_run_oshp()
73 acpi_handle chandle, handle; in acpi_get_hp_hw_control_from_firmware() local
105 handle = ACPI_HANDLE(&pdev->dev); in acpi_get_hp_hw_control_from_firmware()
106 if (!handle) { in acpi_get_hp_hw_control_from_firmware()
113 handle = acpi_pci_get_bridge_handle(pbus); in acpi_get_hp_hw_control_from_firmware()
114 if (handle) in acpi_get_hp_hw_control_from_firmware()
119 while (handle) { in acpi_get_hp_hw_control_from_firmware()
120 acpi_get_name(handle, ACPI_FULL_PATHNAME, &string); in acpi_get_hp_hw_control_from_firmware()
[all …]
/linux/drivers/net/ethernet/mellanox/mlx5/core/en/tc/
H A Dpost_act.c81 struct mlx5e_post_act_handle *handle) in mlx5e_tc_post_act_offload() argument
94 mlx5e_tc_match_to_reg_match(spec, FTEID_TO_REG, handle->id, MLX5_POST_ACTION_MASK); in mlx5e_tc_post_act_offload()
96 handle->rule = mlx5e_tc_rule_offload(post_act->priv, spec, handle->attr); in mlx5e_tc_post_act_offload()
97 if (IS_ERR(handle->rule)) { in mlx5e_tc_post_act_offload()
98 err = PTR_ERR(handle->rule); in mlx5e_tc_post_act_offload()
114 struct mlx5e_post_act_handle *handle; in mlx5e_tc_post_act_add() local
120 handle = kzalloc_obj(*handle); in mlx5e_tc_post_act_add()
121 if (!handle) in mlx5e_tc_post_act_add()
132 handle->ns_type = post_act->ns_type; in mlx5e_tc_post_act_add()
134 if (handle->ns_type == MLX5_FLOW_NAMESPACE_FDB) in mlx5e_tc_post_act_add()
[all …]
/linux/drivers/misc/vmw_vmci/
H A Dvmci_resource.c30 static unsigned int vmci_resource_hash(struct vmci_handle handle) in vmci_resource_hash() argument
32 return hash_32(handle.resource, VMCI_RESOURCE_HASH_BITS); in vmci_resource_hash()
38 static struct vmci_resource *vmci_resource_lookup(struct vmci_handle handle, in vmci_resource_lookup() argument
42 unsigned int idx = vmci_resource_hash(handle); in vmci_resource_lookup()
47 u32 cid = r->handle.context; in vmci_resource_lookup()
48 u32 rid = r->handle.resource; in vmci_resource_lookup()
51 rid == handle.resource && in vmci_resource_lookup()
52 (cid == handle.context || cid == VMCI_INVALID_ID || in vmci_resource_lookup()
53 handle.context == VMCI_INVALID_ID)) { in vmci_resource_lookup()
81 struct vmci_handle handle; in vmci_resource_find_id() local
[all …]
H A Dvmci_doorbell.c85 int vmci_dbell_get_priv_flags(struct vmci_handle handle, u32 *priv_flags) in vmci_dbell_get_priv_flags() argument
87 if (priv_flags == NULL || handle.context == VMCI_INVALID_ID) in vmci_dbell_get_priv_flags()
90 if (handle.context == VMCI_HOST_CONTEXT_ID) { in vmci_dbell_get_priv_flags()
94 resource = vmci_resource_by_handle(handle, in vmci_dbell_get_priv_flags()
102 } else if (handle.context == VMCI_HYPERVISOR_CONTEXT_ID) { in vmci_dbell_get_priv_flags()
109 *priv_flags = vmci_context_get_priv_flags(handle.context); in vmci_dbell_get_priv_flags()
229 static int dbell_link(struct vmci_handle handle, u32 notify_idx) in dbell_link() argument
237 link_msg.handle = handle; in dbell_link()
247 static int dbell_unlink(struct vmci_handle handle) in dbell_unlink() argument
255 unlink_msg.handle = handle; in dbell_unlink()
[all …]
/linux/drivers/acpi/riscv/
H A Dirq.c16 acpi_handle handle; member
29 acpi_handle handle; member
59 static acpi_status riscv_acpi_update_gsi_handle(u32 gsi_base, acpi_handle handle) in riscv_acpi_update_gsi_handle() argument
67 ext_intc_element->handle = handle; in riscv_acpi_update_gsi_handle()
99 if (ext_intc_element->handle == ACPI_HANDLE_FWNODE(fwnode)) { in riscv_acpi_get_gsi_info()
123 adev = acpi_fetch_acpi_dev(ext_intc_element->handle); in riscv_acpi_get_gsi_domain_id()
171 static acpi_status __init riscv_acpi_create_gsi_map_smsi(acpi_handle handle, u32 level, in riscv_acpi_create_gsi_map_smsi() argument
177 if (!acpi_has_method(handle, "_GSB")) { in riscv_acpi_create_gsi_map_smsi()
178 acpi_handle_err(handle, "_GSB method not found\n"); in riscv_acpi_create_gsi_map_smsi()
182 status = acpi_evaluate_integer(handle, "_GSB", NULL, &gbase); in riscv_acpi_create_gsi_map_smsi()
[all …]
/linux/drivers/acpi/
H A Dscan.c136 static acpi_status acpi_bus_offline(acpi_handle handle, u32 lvl, void *data, in acpi_bus_offline() argument
139 struct acpi_device *device = acpi_fetch_acpi_dev(handle); in acpi_bus_offline()
181 static acpi_status acpi_bus_online(acpi_handle handle, u32 lvl, void *data, in acpi_bus_online() argument
184 struct acpi_device *device = acpi_fetch_acpi_dev(handle); in acpi_bus_online()
205 acpi_handle handle = device->handle; in acpi_scan_try_to_offline() local
218 status = acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX, in acpi_scan_try_to_offline()
223 acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX, in acpi_scan_try_to_offline()
227 acpi_bus_offline(handle, 0, (void *)false, (void **)&errdev); in acpi_scan_try_to_offline()
230 acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX, in acpi_scan_try_to_offline()
234 acpi_bus_offline(handle, 0, (void *)true, in acpi_scan_try_to_offline()
[all …]
H A Dpci_link.c88 acpi_handle handle = link->device->handle; in acpi_pci_link_check_possible() local
99 acpi_handle_debug(handle, in acpi_pci_link_check_possible()
107 acpi_handle_debug(handle, in acpi_pci_link_check_possible()
125 acpi_handle_debug(handle, in acpi_pci_link_check_possible()
133 acpi_handle_debug(handle, in acpi_pci_link_check_possible()
147 acpi_handle_debug(handle, "_PRS resource type 0x%x is not IRQ\n", in acpi_pci_link_check_possible()
157 acpi_handle handle = link->device->handle; in acpi_pci_link_get_possible() local
160 status = acpi_walk_resources(handle, METHOD_NAME__PRS, in acpi_pci_link_get_possible()
163 acpi_handle_debug(handle, "_PRS not present or invalid"); in acpi_pci_link_get_possible()
167 acpi_handle_debug(handle, "Found %d possible IRQs\n", in acpi_pci_link_get_possible()
[all …]
/linux/drivers/firmware/
H A Dti_sci.c115 struct ti_sci_handle handle; member
128 #define handle_to_ti_sci_info(h) container_of(h, struct ti_sci_info, handle)
457 struct ti_sci_handle *handle = &info->handle; in ti_sci_cmd_get_revision() local
458 struct ti_sci_version_info *ver = &handle->version; in ti_sci_cmd_get_revision()
514 static int ti_sci_set_device_state(const struct ti_sci_handle *handle, in ti_sci_set_device_state() argument
524 if (IS_ERR(handle)) in ti_sci_set_device_state()
525 return PTR_ERR(handle); in ti_sci_set_device_state()
526 if (!handle) in ti_sci_set_device_state()
529 info = handle_to_ti_sci_info(handle); in ti_sci_set_device_state()
571 static int ti_sci_get_device_state(const struct ti_sci_handle *handle, in ti_sci_get_device_state() argument
[all …]
/linux/drivers/hwtracing/coresight/
H A Dcoresight-trbe.c142 struct perf_output_handle * __percpu *handle; member
268 static void trbe_report_wrap_event(struct perf_output_handle *handle) in trbe_report_wrap_event() argument
284 perf_aux_output_flag(handle, PERF_AUX_FLAG_COLLISION); in trbe_report_wrap_event()
287 static void trbe_stop_and_truncate_event(struct perf_output_handle *handle) in trbe_stop_and_truncate_event() argument
289 struct trbe_buf *buf = etm_perf_sink_config(handle); in trbe_stop_and_truncate_event()
299 perf_aux_output_flag(handle, PERF_AUX_FLAG_TRUNCATED); in trbe_stop_and_truncate_event()
300 perf_aux_output_end(handle, 0); in trbe_stop_and_truncate_event()
301 *this_cpu_ptr(buf->cpudata->drvdata->handle) = NULL; in trbe_stop_and_truncate_event()
352 static void trbe_pad_buf(struct perf_output_handle *handle, int len) in trbe_pad_buf() argument
354 struct trbe_buf *buf = etm_perf_sink_config(handle); in trbe_pad_buf()
[all …]
/linux/drivers/sh/intc/
H A Dchip.c16 void _intc_enable(struct irq_data *data, unsigned long handle) in _intc_enable() argument
23 for (cpu = 0; cpu < SMP_NR(d, _INTC_ADDR_E(handle)); cpu++) { in _intc_enable()
28 addr = INTC_REG(d, _INTC_ADDR_E(handle), cpu); in _intc_enable()
29 intc_enable_fns[_INTC_MODE(handle)](addr, handle, intc_reg_fns\ in _intc_enable()
30 [_INTC_FN(handle)], irq); in _intc_enable()
45 unsigned long handle = (unsigned long)irq_data_get_irq_chip_data(data); in intc_disable() local
51 for (cpu = 0; cpu < SMP_NR(d, _INTC_ADDR_D(handle)); cpu++) { in intc_disable()
56 addr = INTC_REG(d, _INTC_ADDR_D(handle), cpu); in intc_disable()
57 intc_disable_fns[_INTC_MODE(handle)](addr, handle,intc_reg_fns\ in intc_disable()
58 [_INTC_FN(handle)], irq); in intc_disable()
[all …]
/linux/drivers/gpu/drm/amd/amdgpu/
H A Damdgpu_aca.c31 typedef int bank_handler_t(struct aca_handle *handle, struct aca_bank *bank, enum aca_smu_type type…
212 static bool aca_bank_is_valid(struct aca_handle *handle, struct aca_bank *bank, enum aca_smu_type t… in aca_bank_is_valid() argument
214 const struct aca_bank_ops *bank_ops = handle->bank_ops; in aca_bank_is_valid()
218 return handle->hwip == ACA_HWIP_TYPE_UMC; in aca_bank_is_valid()
220 if (!aca_bank_hwip_is_matched(bank, handle->hwip)) in aca_bank_is_valid()
226 return bank_ops->aca_bank_is_valid(handle, bank, type, handle->data); in aca_bank_is_valid()
295 int aca_error_cache_log_bank_error(struct aca_handle *handle, struct aca_bank_info *info, in aca_error_cache_log_bank_error() argument
298 struct aca_error_cache *error_cache = &handle->error_cache; in aca_error_cache_log_bank_error()
302 if (!handle || !info || type >= ACA_ERROR_TYPE_COUNT) in aca_error_cache_log_bank_error()
318 static int aca_bank_parser(struct aca_handle *handle, struct aca_bank *bank, enum aca_smu_type type) in aca_bank_parser() argument
[all …]
/linux/drivers/input/
H A Dapm-power.c31 static void apmpower_event(struct input_handle *handle, unsigned int type, in apmpower_event() argument
52 struct input_handle *handle; in apmpower_connect() local
55 handle = kzalloc_obj(struct input_handle); in apmpower_connect()
56 if (!handle) in apmpower_connect()
59 handle->dev = dev; in apmpower_connect()
60 handle->handler = handler; in apmpower_connect()
61 handle->name = "apm-power"; in apmpower_connect()
63 error = input_register_handle(handle); in apmpower_connect()
67 kfree(handle); in apmpower_connect()
71 error = input_open_device(handle); in apmpower_connect()
[all …]
/linux/tools/testing/selftests/net/forwarding/
H A Dtc_flower.sh44 tc filter add dev $h2 ingress protocol ip pref 1 handle 101 flower \
46 tc filter add dev $h2 ingress protocol ip pref 2 handle 102 flower \
58 tc filter del dev $h2 ingress protocol ip pref 1 handle 101 flower
59 tc filter del dev $h2 ingress protocol ip pref 2 handle 102 flower
70 tc filter add dev $h2 ingress protocol ip pref 1 handle 101 flower \
72 tc filter add dev $h2 ingress protocol ip pref 2 handle 102 flower \
84 tc filter del dev $h2 ingress protocol ip pref 1 handle 101 flower
85 tc filter del dev $h2 ingress protocol ip pref 2 handle 102 flower
94 tc filter add dev $h2 ingress protocol ip pref 1 handle 101 flower \
96 tc filter add dev $h2 ingress protocol ip pref 2 handle 102 flower \
[all …]
/linux/tools/testing/selftests/alsa/
H A Dtest-pcmtest-driver.c83 static int setup_handle(snd_pcm_t **handle, snd_pcm_sw_params_t *swparams, in setup_handle() argument
91 err = snd_pcm_open(handle, pcm_name, stream, 0); in setup_handle()
94 snd_pcm_hw_params_any(*handle, hwparams); in setup_handle()
95 snd_pcm_hw_params_set_rate_resample(*handle, hwparams, 0); in setup_handle()
96 snd_pcm_hw_params_set_access(*handle, hwparams, params->access); in setup_handle()
97 snd_pcm_hw_params_set_format(*handle, hwparams, params->format); in setup_handle()
98 snd_pcm_hw_params_set_channels(*handle, hwparams, params->channels); in setup_handle()
99 snd_pcm_hw_params_set_rate_near(*handle, hwparams, &params->rate, 0); in setup_handle()
100 snd_pcm_hw_params_set_period_size_near(*handle, hwparams, &params->period_size, 0); in setup_handle()
101 snd_pcm_hw_params_set_buffer_size_near(*handle, hwparams, &params->buffer_size); in setup_handle()
[all …]

12345678910>>...101