Home
last modified time | relevance | path

Searched refs:sds (Results 1 – 9 of 9) sorted by relevance

/linux/drivers/accel/habanalabs/common/
H A Dstate_dump.c184 struct hl_state_dump_specs *sds = &hdev->state_dump_specs; in hl_state_dump_get_sync_name() local
187 hash_for_each_possible(sds->so_id_to_str_tb, entry, in hl_state_dump_get_sync_name()
208 struct hl_state_dump_specs *sds = &hdev->state_dump_specs; in hl_state_dump_get_monitor_name() local
211 hash_for_each_possible(sds->monitor_id_to_str_tb, in hl_state_dump_get_monitor_name()
267 struct hl_state_dump_specs *sds = &hdev->state_dump_specs; in hl_state_dump_read_sync_objects() local
272 base_addr = sds->props[SP_SYNC_OBJ_BASE_ADDR] + in hl_state_dump_read_sync_objects()
273 sds->props[SP_NEXT_SYNC_OBJ_ADDR] * index; in hl_state_dump_read_sync_objects()
275 sync_objects = vmalloc(sds->props[SP_SYNC_OBJ_AMOUNT] * sizeof(u32)); in hl_state_dump_read_sync_objects()
279 for (i = 0; i < sds->props[SP_SYNC_OBJ_AMOUNT]; ++i) in hl_state_dump_read_sync_objects()
313 struct hl_state_dump_specs *sds = &hdev->state_dump_specs; in hl_state_dump_print_syncs_single_block() local
[all …]
/linux/drivers/i2c/busses/
H A Di2c-pxa-pci.c105 struct ce4100_devices *sds; in ce4100_i2c_probe() local
115 sds = kzalloc(sizeof(*sds), GFP_KERNEL); in ce4100_i2c_probe()
116 if (!sds) in ce4100_i2c_probe()
119 for (i = 0; i < ARRAY_SIZE(sds->pdev); i++) { in ce4100_i2c_probe()
120 sds->pdev[i] = add_i2c_device(dev, i); in ce4100_i2c_probe()
121 if (IS_ERR(sds->pdev[i])) { in ce4100_i2c_probe()
122 ret = PTR_ERR(sds->pdev[i]); in ce4100_i2c_probe()
124 platform_device_unregister(sds->pdev[i]); in ce4100_i2c_probe()
128 pci_set_drvdata(dev, sds); in ce4100_i2c_probe()
132 kfree(sds); in ce4100_i2c_probe()
/linux/kernel/sched/
H A Dtopology.c673 struct sched_domain_shared *sds = NULL; in update_top_cache_domain() local
682 sds = sd->shared; in update_top_cache_domain()
688 rcu_assign_pointer(per_cpu(sd_llc_shared, cpu), sds); in update_top_cache_domain()
1580 if (atomic_read(&(*per_cpu_ptr(sdd->sds, cpu))->ref)) in claim_allocations()
1581 *per_cpu_ptr(sdd->sds, cpu) = NULL; in claim_allocations()
1730 sd->shared = *per_cpu_ptr(sdd->sds, sd_id); in sd_init()
2370 sdd->sds = alloc_percpu(struct sched_domain_shared *); in __sdt_alloc()
2371 if (!sdd->sds) in __sdt_alloc()
2384 struct sched_domain_shared *sds; in __sdt_alloc() local
2395 sds = kzalloc_node(sizeof(struct sched_domain_shared), in __sdt_alloc()
[all …]
H A Dfair.c7507 struct sched_domain_shared *sds; in set_idle_cores() local
7509 sds = rcu_dereference(per_cpu(sd_llc_shared, cpu)); in set_idle_cores()
7510 if (sds) in set_idle_cores()
7511 WRITE_ONCE(sds->has_idle_cores, val); in set_idle_cores()
7516 struct sched_domain_shared *sds; in test_idle_cores() local
7518 sds = rcu_dereference(per_cpu(sd_llc_shared, cpu)); in test_idle_cores()
7519 if (sds) in test_idle_cores()
7520 return READ_ONCE(sds->has_idle_cores); in test_idle_cores()
10011 static inline void init_sd_lb_stats(struct sd_lb_stats *sds) in init_sd_lb_stats() argument
10020 *sds = (struct sd_lb_stats){ in init_sd_lb_stats()
[all …]
/linux/drivers/net/ethernet/qlogic/qlcnic/
H A Dqlcnic_83xx_hw.c1070 struct qlcnic_host_sds_ring *sds; in qlcnic_83xx_add_rings() local
1093 sds = &recv_ctx->sds_rings[i]; in qlcnic_83xx_add_rings()
1094 sds->consumer = 0; in qlcnic_83xx_add_rings()
1095 memset(sds->desc_head, 0, STATUS_DESC_RINGSIZE(sds)); in qlcnic_83xx_add_rings()
1096 sds_mbx.phy_addr_low = LSD(sds->phys_addr); in qlcnic_83xx_add_rings()
1097 sds_mbx.phy_addr_high = MSD(sds->phys_addr); in qlcnic_83xx_add_rings()
1098 sds_mbx.sds_ring_size = sds->num_desc; in qlcnic_83xx_add_rings()
1127 sds = &recv_ctx->sds_rings[i]; in qlcnic_83xx_add_rings()
1128 sds->crb_sts_consumer = ahw->pci_base0 + in qlcnic_83xx_add_rings()
1135 sds->crb_intr_mask = ahw->pci_base0 + intr_mask; in qlcnic_83xx_add_rings()
[all …]
/linux/kernel/trace/
H A Dbpf_trace.c652 struct perf_sample_data sds[3]; member
660 struct bpf_trace_sample_data *sds; in BPF_CALL_5() local
671 sds = this_cpu_ptr(&bpf_trace_sds); in BPF_CALL_5()
674 if (WARN_ON_ONCE(nest_level > ARRAY_SIZE(sds->sds))) { in BPF_CALL_5()
679 sd = &sds->sds[nest_level - 1]; in BPF_CALL_5()
738 if (WARN_ON_ONCE(nest_level > ARRAY_SIZE(bpf_misc_sds.sds))) { in bpf_event_output()
742 sd = this_cpu_ptr(&bpf_misc_sds.sds[nest_level - 1]); in bpf_event_output()
/linux/
H A D.mailmap780 Stephen Smalley <stephen.smalley.work@gmail.com> <sds@epoch.ncsc.mil>
781 Stephen Smalley <stephen.smalley.work@gmail.com> <sds@tycho.nsa.gov>
H A DCREDITS3771 E: sds@tycho.nsa.gov
/linux/Documentation/admin-guide/
H A Ddevices.txt1121 32 = /dev/sds 19th SCSI disk whole disk