Home
last modified time | relevance | path

Searched refs:devs (Results 1 – 25 of 249) sorted by relevance

12345678910

/linux-6.12.1/sound/isa/cs423x/
Dcs4236.c104 { .id = "CSC0d32", .devs = { { "CSC0000" }, { "CSC0010" }, { "PNPb006" } } },
106 { .id = "CSC1a32", .devs = { { "CSC0000" }, { "CSC0010" }, { "CSC0003" } } },
108 { .id = "CSC4232", .devs = { { "CSC0000" }, { "CSC0002" }, { "CSC0003" } } },
110 { .id = "CSC4236", .devs = { { "CSC0000" }, { "CSC0010" }, { "CSC0003" } } },
112 { .id = "CSC7532", .devs = { { "CSC0000" }, { "CSC0010" }, { "CSCb006" } } },
114 { .id = "CSC7632", .devs = { { "CSC0000" }, { "CSC0010" }, { "PNPb006" } } },
116 { .id = "CSCf032", .devs = { { "CSC0000" }, { "CSC0010" }, { "CSC0003" } } },
118 { .id = "CSCe825", .devs = { { "CSC0100" }, { "CSC0110" }, { "CSC010f" } } },
120 { .id = "CSC0225", .devs = { { "CSC0000" }, { "CSC0010" }, { "CSC0003" } } },
122 { .id = "CSC0225", .devs = { { "CSC0100" }, { "CSC0110" }, { "CSC0103" } } },
[all …]
/linux-6.12.1/fs/crypto/
Dinline_crypt.c27 struct block_device **devs; in fscrypt_get_devices() local
30 devs = sb->s_cop->get_devices(sb, num_devs); in fscrypt_get_devices()
31 if (devs) in fscrypt_get_devices()
32 return devs; in fscrypt_get_devices()
34 devs = kmalloc(sizeof(*devs), GFP_KERNEL); in fscrypt_get_devices()
35 if (!devs) in fscrypt_get_devices()
37 devs[0] = sb->s_bdev; in fscrypt_get_devices()
39 return devs; in fscrypt_get_devices()
72 struct block_device **devs, in fscrypt_log_blk_crypto_impl() argument
80 blk_crypto_config_supported_natively(devs[i], cfg)) { in fscrypt_log_blk_crypto_impl()
[all …]
/linux-6.12.1/sound/isa/sb/
Dsb16.c122 { .id = "CTL0024", .devs = { { "CTL0031" } } },
124 { .id = "CTL0025", .devs = { { "CTL0031" } } },
126 { .id = "CTL0026", .devs = { { "CTL0031" } } },
128 { .id = "CTL0027", .devs = { { "CTL0031" } } },
130 { .id = "CTL0028", .devs = { { "CTL0031" } } },
132 { .id = "CTL0029", .devs = { { "CTL0031" } } },
134 { .id = "CTL002a", .devs = { { "CTL0031" } } },
137 { .id = "CTL002b", .devs = { { "CTL0031" } } },
139 { .id = "CTL002c", .devs = { { "CTL0031" } } },
141 { .id = "CTL0051", .devs = { { "CTL0001" } } },
[all …]
/linux-6.12.1/drivers/gpu/drm/ttm/tests/
Dttm_kunit_helpers.c171 struct ttm_test_devices *devs, in ttm_bo_kunit_init() argument
187 err = drm_gem_object_init(devs->drm, &bo->base, size); in ttm_bo_kunit_init()
190 bo->bdev = devs->ttm_dev; in ttm_bo_kunit_init()
221 struct ttm_test_devices *devs; in ttm_test_devices_basic() local
223 devs = kunit_kzalloc(test, sizeof(*devs), GFP_KERNEL); in ttm_test_devices_basic()
224 KUNIT_ASSERT_NOT_NULL(test, devs); in ttm_test_devices_basic()
226 devs->dev = drm_kunit_helper_alloc_device(test); in ttm_test_devices_basic()
227 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, devs->dev); in ttm_test_devices_basic()
230 devs->dev->coherent_dma_mask = -1; in ttm_test_devices_basic()
232 devs->drm = __drm_kunit_helper_alloc_drm_device(test, devs->dev, in ttm_test_devices_basic()
[all …]
Dttm_pool_test.c19 struct ttm_test_devices *devs; member
37 priv->devs = ttm_test_devices_basic(test); in ttm_pool_test_init()
47 ttm_test_devices_put(test, priv->devs); in ttm_pool_test_fini()
60 bo = ttm_bo_kunit_init(test, priv->devs, size, NULL); in ttm_tt_kunit_init()
78 struct ttm_test_devices *devs = priv->devs; in ttm_pool_pre_populated() local
89 ttm_pool_init(pool, devs->dev, NUMA_NO_NODE, true, false); in ttm_pool_pre_populated()
137 struct ttm_test_devices *devs = priv->devs; in ttm_pool_alloc_basic() local
153 ttm_pool_init(pool, devs->dev, NUMA_NO_NODE, params->use_dma_alloc, in ttm_pool_alloc_basic()
156 KUNIT_ASSERT_PTR_EQ(test, pool->dev, devs->dev); in ttm_pool_alloc_basic()
198 struct ttm_test_devices *devs = priv->devs; in ttm_pool_alloc_basic_dma_addr() local
[all …]
Dttm_resource_test.c19 struct ttm_test_devices *devs; member
33 priv->devs = ttm_test_devices_all(test); in ttm_resource_test_init()
34 KUNIT_ASSERT_NOT_NULL(test, priv->devs); in ttm_resource_test_init()
45 ttm_test_devices_put(test, priv->devs); in ttm_resource_test_fini()
55 KUNIT_ASSERT_NOT_NULL(test, priv->devs->ttm_dev); in ttm_init_test_mocks()
57 priv->bo = ttm_bo_kunit_init(test, priv->devs, size, NULL); in ttm_init_test_mocks()
65 struct ttm_device *ttm_dev = priv->devs->ttm_dev; in ttm_init_test_manager()
127 man = ttm_manager_type(priv->devs->ttm_dev, place->mem_type); in ttm_resource_init_basic()
163 man = ttm_manager_type(priv->devs->ttm_dev, place->mem_type); in ttm_resource_init_pinned()
193 man = ttm_manager_type(priv->devs->ttm_dev, place->mem_type); in ttm_resource_fini_basic()
[all …]
Dttm_tt_test.c225 const struct ttm_test_devices *devs = test->priv; in ttm_tt_create_failed() local
232 devs->ttm_dev->funcs = &ttm_dev_empty_funcs; in ttm_tt_create_failed()
243 const struct ttm_test_devices *devs = test->priv; in ttm_tt_destroy_basic() local
256 ttm_tt_destroy(devs->ttm_dev, bo->ttm); in ttm_tt_destroy_basic()
261 const struct ttm_test_devices *devs = test->priv; in ttm_tt_populate_null_ttm() local
265 err = ttm_tt_populate(devs->ttm_dev, NULL, &ctx); in ttm_tt_populate_null_ttm()
271 const struct ttm_test_devices *devs = test->priv; in ttm_tt_populate_populated_ttm() local
286 err = ttm_tt_populate(devs->ttm_dev, tt, &ctx); in ttm_tt_populate_populated_ttm()
290 err = ttm_tt_populate(devs->ttm_dev, tt, &ctx); in ttm_tt_populate_populated_ttm()
296 const struct ttm_test_devices *devs = test->priv; in ttm_tt_unpopulate_basic() local
[all …]
/linux-6.12.1/drivers/comedi/drivers/
Dcomedi_bond.c56 struct bonded_device **devs; member
68 struct bonded_device **devs; in bonding_dio_insn_bits() local
79 devs = devpriv->devs; in bonding_dio_insn_bits()
81 struct bonded_device *bdev = *devs++; in bonding_dio_insn_bits()
132 struct bonded_device **devs; in bonding_dio_insn_config() local
137 devs = devpriv->devs; in bonding_dio_insn_config()
138 for (bdev = *devs++; chan >= bdev->nchans; bdev = *devs++) in bonding_dio_insn_config()
187 struct bonded_device **devs; in do_dev_config() local
242 devs = krealloc(devpriv->devs, in do_dev_config()
243 (devpriv->ndevs + 1) * sizeof(*devs), in do_dev_config()
[all …]
/linux-6.12.1/drivers/watchdog/
Dcpwd.c91 } devs[WD_NUMDEVS]; member
210 (p->devs[index].intr_mask); in cpwd_toggleintr()
226 cpwd_writew(WD_BLIMIT, p->devs[index].regs + WD_LIMIT); in cpwd_resetbrokentimer()
246 if (p->devs[id].runstatus & WD_STAT_BSTOP) { in cpwd_brokentimer()
264 if (cpwd_readb(p->devs[index].regs + WD_STATUS) & WD_S_RUNNING) in cpwd_pingtimer()
265 cpwd_readw(p->devs[index].regs + WD_DCNTR); in cpwd_pingtimer()
274 if (cpwd_readb(p->devs[index].regs + WD_STATUS) & WD_S_RUNNING) { in cpwd_stoptimer()
278 p->devs[index].runstatus |= WD_STAT_BSTOP; in cpwd_stoptimer()
294 p->devs[index].runstatus &= ~WD_STAT_BSTOP; in cpwd_starttimer()
296 p->devs[index].runstatus &= ~WD_STAT_SVCD; in cpwd_starttimer()
[all …]
/linux-6.12.1/fs/bcachefs/
Dsb-members.h32 static inline unsigned dev_mask_nr(const struct bch_devs_mask *devs) in dev_mask_nr() argument
34 return bitmap_weight(devs->d, BCH_SB_MEMBERS_MAX); in dev_mask_nr()
37 static inline bool bch2_dev_list_has_dev(struct bch_devs_list devs, in bch2_dev_list_has_dev() argument
40 darray_for_each(devs, i) in bch2_dev_list_has_dev()
46 static inline void bch2_dev_list_drop_dev(struct bch_devs_list *devs, in bch2_dev_list_drop_dev() argument
49 darray_for_each(*devs, i) in bch2_dev_list_drop_dev()
51 darray_remove_item(devs, i); in bch2_dev_list_drop_dev()
56 static inline void bch2_dev_list_add_dev(struct bch_devs_list *devs, in bch2_dev_list_add_dev() argument
59 if (!bch2_dev_list_has_dev(*devs, dev)) { in bch2_dev_list_add_dev()
60 BUG_ON(devs->nr >= ARRAY_SIZE(devs->data)); in bch2_dev_list_add_dev()
[all …]
Dreplicas_format.h8 __u8 devs[] __counted_by(nr_devs);
20 __u8 devs[] __counted_by(nr_devs);
29 (offsetof(typeof(*(_i)), devs) + (_i)->nr_devs)
33 (e)->devs[(e)->nr_devs - 1] = (d); \
Dreplicas.c32 BUG_ON(e->devs[i] >= e->devs[i + 1]); in verify_replicas_entry()
38 bubble_sort(e->devs, e->nr_devs, u8_cmp); in bch2_replicas_entry_sort()
54 prt_printf(out, i ? " %u" : "%u", e->devs[i]); in bch2_replicas_entry_v0_to_text()
65 prt_printf(out, i ? " %u" : "%u", e->devs[i]); in bch2_replicas_entry_to_text()
85 if (r->devs[i] != BCH_SB_MEMBER_INVALID && in bch2_replicas_entry_sb_validate()
86 !bch2_member_exists(sb, r->devs[i])) { in bch2_replicas_entry_sb_validate()
87 prt_printf(err, "invalid device %u in entry ", r->devs[i]); in bch2_replicas_entry_sb_validate()
113 if (r->devs[i] != BCH_SB_MEMBER_INVALID && in bch2_replicas_entry_validate()
114 !bch2_dev_exists(c, r->devs[i])) { in bch2_replicas_entry_validate()
115 prt_printf(err, "invalid device %u in entry ", r->devs[i]); in bch2_replicas_entry_validate()
[all …]
/linux-6.12.1/drivers/gpu/host1x/
Dcontext.c29 cdl->devs = NULL; in host1x_memory_context_list_init()
38 cdl->devs = kcalloc(cdl->len, sizeof(*cdl->devs), GFP_KERNEL); in host1x_memory_context_list_init()
39 if (!cdl->devs) in host1x_memory_context_list_init()
43 ctx = &cdl->devs[i]; in host1x_memory_context_list_init()
99 device_unregister(&cdl->devs[i].dev); in host1x_memory_context_list_init()
101 kfree(cdl->devs); in host1x_memory_context_list_init()
102 cdl->devs = NULL; in host1x_memory_context_list_init()
113 device_unregister(&cdl->devs[i].dev); in host1x_memory_context_list_free()
115 kfree(cdl->devs); in host1x_memory_context_list_free()
133 struct host1x_memory_context *cd = &cdl->devs[i]; in host1x_memory_context_alloc()
/linux-6.12.1/drivers/md/
Draid10.c108 int size = offsetof(struct r10bio, devs[conf->geo.raid_disks]); in r10bio_pool_alloc()
166 r10_bio->devs[j].bio = bio; in r10buf_pool_alloc()
173 r10_bio->devs[j].repl_bio = bio; in r10buf_pool_alloc()
180 struct bio *rbio = r10_bio->devs[j].repl_bio; in r10buf_pool_alloc()
187 bio = r10_bio->devs[j].bio; in r10buf_pool_alloc()
215 if (r10_bio->devs[j].bio) in r10buf_pool_alloc()
216 bio_uninit(r10_bio->devs[j].bio); in r10buf_pool_alloc()
217 kfree(r10_bio->devs[j].bio); in r10buf_pool_alloc()
218 if (r10_bio->devs[j].repl_bio) in r10buf_pool_alloc()
219 bio_uninit(r10_bio->devs[j].repl_bio); in r10buf_pool_alloc()
[all …]
/linux-6.12.1/sound/isa/ad1816a/
Dad1816a.c47 { .id = "ADS7150", .devs = { { .id = "ADS7150" }, { .id = "ADS7151" } } },
49 { .id = "ADS7180", .devs = { { .id = "ADS7180" }, { .id = "ADS7181" } } },
51 { .id = "ADS7181", .devs = { { .id = "ADS7180" }, { .id = "ADS7181" } } },
53 { .id = "AZT1022", .devs = { { .id = "AZT1018" }, { .id = "AZT2002" } } },
55 { .id = "LWC1061", .devs = { { .id = "ADS7180" }, { .id = "ADS7181" } } },
57 { .id = "MDK1605", .devs = { { .id = "ADS7180" }, { .id = "ADS7181" } } },
59 { .id = "SMM7180", .devs = { { .id = "ADS7180" }, { .id = "ADS7181" } } },
61 { .id = "TER1112", .devs = { { .id = "ADS7180" }, { .id = "ADS7181" } } },
63 { .id = "TER1112", .devs = { { .id = "TER1100" }, { .id = "TER1101" } } },
65 { .id = "TER1411", .devs = { { .id = "ADS7180" }, { .id = "ADS7181" } } },
[all …]
/linux-6.12.1/tools/net/ynl/samples/
Ddevlink.c11 struct devlink_get_list *devs; in main() local
18 devs = devlink_get_dump(ys); in main()
19 if (!devs) in main()
22 ynl_dump_foreach(devs, d) { in main()
48 devlink_get_list_free(devs); in main()
55 devlink_get_list_free(devs); in main()
Dnetdev.c63 struct netdev_dev_get_list *devs; in main() local
102 devs = netdev_dev_get_dump(ys); in main()
103 if (!devs) in main()
106 if (ynl_dump_empty(devs)) in main()
108 ynl_dump_foreach(devs, d) in main()
110 netdev_dev_get_list_free(devs); in main()
/linux-6.12.1/fs/erofs/
Dsuper.c171 if (!sbi->devs->flatdev && !dif->path) { in erofs_init_device()
186 } else if (!sbi->devs->flatdev) { in erofs_init_device()
227 if (sbi->devs->extra_devices && in erofs_scan_devices()
228 ondisk_extradevs != sbi->devs->extra_devices) { in erofs_scan_devices()
230 ondisk_extradevs, sbi->devs->extra_devices); in erofs_scan_devices()
236 if (!sbi->devs->extra_devices && !erofs_is_fscache_mode(sb)) in erofs_scan_devices()
237 sbi->devs->flatdev = true; in erofs_scan_devices()
241 down_read(&sbi->devs->rwsem); in erofs_scan_devices()
242 if (sbi->devs->extra_devices) { in erofs_scan_devices()
243 idr_for_each_entry(&sbi->devs->tree, dif, id) { in erofs_scan_devices()
[all …]
Ddata.c204 struct erofs_dev_context *devs = EROFS_SB(sb)->devs; in erofs_map_dev() local
216 down_read(&devs->rwsem); in erofs_map_dev()
217 dif = idr_find(&devs->tree, map->m_deviceid - 1); in erofs_map_dev()
219 up_read(&devs->rwsem); in erofs_map_dev()
222 if (devs->flatdev) { in erofs_map_dev()
224 up_read(&devs->rwsem); in erofs_map_dev()
228 up_read(&devs->rwsem); in erofs_map_dev()
229 } else if (devs->extra_devices && !devs->flatdev) { in erofs_map_dev()
230 down_read(&devs->rwsem); in erofs_map_dev()
231 idr_for_each_entry(&devs->tree, dif, id) { in erofs_map_dev()
[all …]
/linux-6.12.1/sound/isa/
Dals100.c60 .devs = { { "@@@0001" }, { "@X@0001" }, { "@H@0001" } },
64 .devs = { { "@@@0001" }, { "@X@0001" }, { "@H@0001" } },
68 .devs = { { "@@@0001" }, { "@X@0001" }, { "@H@0001" } },
72 .devs = { { "@@@1001" }, { "@X@1001" }, { "@H@1001" } },
76 .devs = { { "@@@2001" }, { "@X@2001" }, { "@H@2001" } },
80 .devs = { { "@@@0020" }, { "@X@0020" }, { "@H@0001" } },
84 .devs = { { "@@@0020" }, { "@X@0020" }, { "@H@0020" } },
88 .devs = { { "@@@2001" }, { "@X@2001" }, { "@H@2001" } },
102 acard->dev = pnp_request_card_device(card, id->devs[0].id, NULL); in snd_card_als100_pnp()
106 acard->devmpu = pnp_request_card_device(card, id->devs[1].id, acard->dev); in snd_card_als100_pnp()
[all …]
Dazt2320.c65 { .id = "AZT1008", .devs = { { "AZT1008" }, { "AZT2001" }, } },
67 { .id = "AZT2320", .devs = { { "AZT0001" }, { "AZT0002" }, } },
69 { .id = "AZT3000", .devs = { { "AZT1003" }, { "AZT2001" }, } },
71 { .id = "AZT3002", .devs = { { "AZT1004" }, { "AZT2001" }, } },
73 { .id = "AZT3005", .devs = { { "AZT1003" }, { "AZT2001" }, } },
75 { .id = "AZT3011", .devs = { { "AZT1003" }, { "AZT2001" }, } },
90 acard->dev = pnp_request_card_device(card, id->devs[0].id, NULL); in snd_card_azt2320_pnp()
94 acard->devmpu = pnp_request_card_device(card, id->devs[1].id, NULL); in snd_card_azt2320_pnp()
/linux-6.12.1/Documentation/admin-guide/device-mapper/
Dstriped.rst11 Parameters: <num devs> <chunk size> [<dev path> <offset>]+
12 <num devs>:
39 my @devs = @ARGV;
46 $min_dev_size = `blockdev --getsz $devs[0]`;
48 my $this_size = `blockdev --getsz $devs[$i]`;
58 $table .= " $devs[$i] 0";
/linux-6.12.1/drivers/char/agp/
Dali-agp.c304 struct agp_device_ids *devs = ali_agp_device_ids; in agp_ali_probe() local
314 for (j = 0; devs[j].chipset_name; j++) { in agp_ali_probe()
315 if (pdev->device == devs[j].device_id) in agp_ali_probe()
340 devs[j].chipset_name = "M1631"; in agp_ali_probe()
343 devs[j].chipset_name = "M1632"; in agp_ali_probe()
346 devs[j].chipset_name = "M1641"; in agp_ali_probe()
349 devs[j].chipset_name = "M1621"; in agp_ali_probe()
352 devs[j].chipset_name = "M1647"; in agp_ali_probe()
355 devs[j].chipset_name = "M1651"; in agp_ali_probe()
365 dev_info(&pdev->dev, "ALi %s chipset\n", devs[j].chipset_name); in agp_ali_probe()
/linux-6.12.1/drivers/infiniband/hw/usnic/
Dusnic_uiom.c456 INIT_LIST_HEAD(&pd->devs); in usnic_uiom_alloc_pd()
489 list_add_tail(&uiom_dev->link, &pd->devs); in usnic_uiom_attach_dev_to_pd()
508 list_for_each_entry(uiom_dev, &pd->devs, link) { in usnic_uiom_detach_dev_from_pd()
532 struct device **devs; in usnic_uiom_get_dev_list() local
536 devs = kcalloc(pd->dev_cnt + 1, sizeof(*devs), GFP_ATOMIC); in usnic_uiom_get_dev_list()
537 if (!devs) { in usnic_uiom_get_dev_list()
538 devs = ERR_PTR(-ENOMEM); in usnic_uiom_get_dev_list()
542 list_for_each_entry(uiom_dev, &pd->devs, link) { in usnic_uiom_get_dev_list()
543 devs[i++] = uiom_dev->dev; in usnic_uiom_get_dev_list()
547 return devs; in usnic_uiom_get_dev_list()
[all …]
/linux-6.12.1/drivers/char/tpm/
Dtpm2-space.c589 struct tpm_chip *chip = container_of(dev, struct tpm_chip, devs); in tpm_devs_release()
601 cdev_device_del(&chip->cdevs, &chip->devs); in tpm_devs_remove()
602 put_device(&chip->devs); in tpm_devs_remove()
613 device_initialize(&chip->devs); in tpm_devs_add()
614 chip->devs.parent = chip->dev.parent; in tpm_devs_add()
615 chip->devs.class = &tpmrm_class; in tpm_devs_add()
623 chip->devs.release = tpm_devs_release; in tpm_devs_add()
624 chip->devs.devt = MKDEV(MAJOR(tpm_devt), chip->dev_num + TPM_NUM_DEVICES); in tpm_devs_add()
628 rc = dev_set_name(&chip->devs, "tpmrm%d", chip->dev_num); in tpm_devs_add()
632 rc = cdev_device_add(&chip->cdevs, &chip->devs); in tpm_devs_add()
[all …]

12345678910