Home
last modified time | relevance | path

Searched refs:plug (Results 1 – 25 of 206) sorted by relevance

123456789

/linux-6.6.21/sound/core/oss/
Dio.c28 #define pcm_write(plug,buf,count) snd_pcm_oss_write3(plug,buf,count,1) argument
29 #define pcm_writev(plug,vec,count) snd_pcm_oss_writev3(plug,vec,count) argument
30 #define pcm_read(plug,buf,count) snd_pcm_oss_read3(plug,buf,count,1) argument
31 #define pcm_readv(plug,vec,count) snd_pcm_oss_readv3(plug,vec,count) argument
47 return pcm_write(plugin->plug, src_channels->area.addr, frames); in io_playback_transfer()
59 return pcm_writev(plugin->plug, bufs, frames); in io_playback_transfer()
73 return pcm_read(plugin->plug, dst_channels->area.addr, frames); in io_capture_transfer()
85 return pcm_readv(plugin->plug, bufs, frames); in io_capture_transfer()
108 int snd_pcm_plugin_build_io(struct snd_pcm_substream *plug, in snd_pcm_plugin_build_io() argument
119 if (snd_BUG_ON(!plug || !params)) in snd_pcm_plugin_build_io()
[all …]
Dpcm_plugin.c35 #define snd_pcm_plug_first(plug) ((plug)->runtime->oss.plugin_first) argument
36 #define snd_pcm_plug_last(plug) ((plug)->runtime->oss.plugin_last) argument
108 int snd_pcm_plug_alloc(struct snd_pcm_substream *plug, snd_pcm_uframes_t frames) in snd_pcm_plug_alloc() argument
111 if (snd_BUG_ON(!snd_pcm_plug_first(plug))) in snd_pcm_plug_alloc()
113 if (snd_pcm_plug_stream(plug) == SNDRV_PCM_STREAM_PLAYBACK) { in snd_pcm_plug_alloc()
114 struct snd_pcm_plugin *plugin = snd_pcm_plug_first(plug); in snd_pcm_plug_alloc()
126 struct snd_pcm_plugin *plugin = snd_pcm_plug_last(plug); in snd_pcm_plug_alloc()
150 int snd_pcm_plugin_build(struct snd_pcm_substream *plug, in snd_pcm_plugin_build() argument
160 if (snd_BUG_ON(!plug)) in snd_pcm_plugin_build()
168 plugin->plug = plug; in snd_pcm_plugin_build()
[all …]
Dpcm_plugin.h12 #define snd_pcm_plug_stream(plug) ((plug)->stream) argument
61 struct snd_pcm_substream *plug; member
78 int snd_pcm_plug_alloc(struct snd_pcm_substream *plug, snd_pcm_uframes_t frames);
142 void *snd_pcm_plug_buf_alloc(struct snd_pcm_substream *plug, snd_pcm_uframes_t size);
143 void snd_pcm_plug_buf_unlock(struct snd_pcm_substream *plug, void *ptr);
Dcopy.c61 int snd_pcm_plugin_build_copy(struct snd_pcm_substream *plug, in snd_pcm_plugin_build_copy() argument
85 err = snd_pcm_plugin_build(plug, "copy", src_format, dst_format, in snd_pcm_plugin_build_copy()
Droute.c87 int snd_pcm_plugin_build_route(struct snd_pcm_substream *plug, in snd_pcm_plugin_build_route() argument
103 err = snd_pcm_plugin_build(plug, "route conversion", in snd_pcm_plugin_build_route()
/linux-6.6.21/block/
Dblk-core.c880 blk_flush_plug(current->plug, false); in bio_poll()
1050 void blk_start_plug_nr_ios(struct blk_plug *plug, unsigned short nr_ios) in blk_start_plug_nr_ios() argument
1057 if (tsk->plug) in blk_start_plug_nr_ios()
1060 plug->mq_list = NULL; in blk_start_plug_nr_ios()
1061 plug->cached_rq = NULL; in blk_start_plug_nr_ios()
1062 plug->nr_ios = min_t(unsigned short, nr_ios, BLK_MAX_REQUEST_COUNT); in blk_start_plug_nr_ios()
1063 plug->rq_count = 0; in blk_start_plug_nr_ios()
1064 plug->multiple_queues = false; in blk_start_plug_nr_ios()
1065 plug->has_elevator = false; in blk_start_plug_nr_ios()
1066 INIT_LIST_HEAD(&plug->cb_list); in blk_start_plug_nr_ios()
[all …]
Dblk-lib.c101 struct blk_plug plug; in blkdev_issue_discard() local
104 blk_start_plug(&plug); in blkdev_issue_discard()
112 blk_finish_plug(&plug); in blkdev_issue_discard()
258 struct blk_plug plug; in blkdev_issue_zeroout() local
267 blk_start_plug(&plug); in blkdev_issue_zeroout()
282 blk_finish_plug(&plug); in blkdev_issue_zeroout()
309 struct blk_plug plug; in blkdev_issue_secure_erase() local
324 blk_start_plug(&plug); in blkdev_issue_secure_erase()
341 blk_finish_plug(&plug); in blkdev_issue_secure_erase()
Dblk-mq.c519 struct blk_plug *plug, in blk_mq_rq_cache_fill() argument
527 .nr_tags = plug->nr_ios, in blk_mq_rq_cache_fill()
528 .cached_rq = &plug->cached_rq, in blk_mq_rq_cache_fill()
535 plug->nr_ios = 1; in blk_mq_rq_cache_fill()
547 struct blk_plug *plug = current->plug; in blk_mq_alloc_cached_request() local
550 if (!plug) in blk_mq_alloc_cached_request()
553 if (rq_list_empty(plug->cached_rq)) { in blk_mq_alloc_cached_request()
554 if (plug->nr_ios == 1) in blk_mq_alloc_cached_request()
556 rq = blk_mq_rq_cache_fill(q, plug, opf, flags); in blk_mq_alloc_cached_request()
560 rq = rq_list_peek(&plug->cached_rq); in blk_mq_alloc_cached_request()
[all …]
/linux-6.6.21/mm/
Dswap.h11 void swap_readpage(struct page *page, bool do_poll, struct swap_iocb **plug);
12 void __swap_read_unplug(struct swap_iocb *plug);
13 static inline void swap_read_unplug(struct swap_iocb *plug) in swap_read_unplug() argument
15 if (unlikely(plug)) in swap_read_unplug()
16 __swap_read_unplug(plug); in swap_read_unplug()
50 struct swap_iocb **plug);
67 struct swap_iocb **plug) in swap_readpage() argument
Dpage_io.c426 struct swap_iocb **plug) in swap_readpage_fs() argument
432 if (plug) in swap_readpage_fs()
433 sio = *plug; in swap_readpage_fs()
452 if (sio->pages == ARRAY_SIZE(sio->bvec) || !plug) { in swap_readpage_fs()
456 if (plug) in swap_readpage_fs()
457 *plug = sio; in swap_readpage_fs()
493 void swap_readpage(struct page *page, bool synchronous, struct swap_iocb **plug) in swap_readpage() argument
520 swap_readpage_fs(page, plug); in swap_readpage()
Dswap_state.c529 unsigned long addr, struct swap_iocb **plug) in read_swap_cache_async() argument
536 swap_readpage(retpage, false, plug); in read_swap_cache_async()
629 struct blk_plug plug; in swap_cluster_readahead() local
647 blk_start_plug(&plug); in swap_cluster_readahead()
664 blk_finish_plug(&plug); in swap_cluster_readahead()
783 struct blk_plug plug; in swap_vma_readahead() local
802 blk_start_plug(&plug); in swap_vma_readahead()
832 blk_finish_plug(&plug); in swap_vma_readahead()
/linux-6.6.21/drivers/md/
Draid1-10.c136 struct raid1_plug_cb *plug = NULL; in raid1_add_bio_to_plug() local
148 cb = blk_check_plugged(unplug, mddev, sizeof(*plug)); in raid1_add_bio_to_plug()
152 plug = container_of(cb, struct raid1_plug_cb, cb); in raid1_add_bio_to_plug()
153 bio_list_add(&plug->pending, bio); in raid1_add_bio_to_plug()
154 if (++plug->count / MAX_PLUG_BIO >= copies) { in raid1_add_bio_to_plug()
/linux-6.6.21/drivers/usb/typec/
Dclass.c253 struct typec_plug *plug = to_typec_plug(adev->dev.parent); in typec_altmode_set_partner() local
255 partner->plug[plug->index] = altmode; in typec_altmode_set_partner()
274 struct typec_plug *plug = to_typec_plug(adev->dev.parent); in typec_altmode_put_partner() local
276 partner->plug[plug->index] = NULL; in typec_altmode_put_partner()
621 struct typec_plug *plug; in number_of_alternate_modes_show() local
628 plug = to_typec_plug(dev); in number_of_alternate_modes_show()
629 num_altmodes = plug->num_altmodes; in number_of_alternate_modes_show()
915 struct typec_plug *plug = to_typec_plug(dev); in typec_plug_release() local
917 ida_destroy(&plug->mode_ids); in typec_plug_release()
918 kfree(plug); in typec_plug_release()
[all …]
Dbus.c263 if (port->plug[index]) { in typec_altmode_get_plug()
264 get_device(&port->plug[index]->adev.dev); in typec_altmode_get_plug()
265 return &port->plug[index]->adev; in typec_altmode_get_plug()
276 void typec_altmode_put_plug(struct typec_altmode *plug) in typec_altmode_put_plug() argument
278 if (plug) in typec_altmode_put_plug()
279 put_device(&plug->dev); in typec_altmode_put_plug()
/linux-6.6.21/arch/powerpc/platforms/ps3/
Dinterrupt.c706 unsigned int plug; in ps3_get_irq() local
713 asm volatile("cntlzd %0,%1" : "=r" (plug) : "r" (x)); in ps3_get_irq()
714 plug &= 0x3f; in ps3_get_irq()
716 if (unlikely(!plug)) { in ps3_get_irq()
725 if (unlikely(plug < NR_IRQS_LEGACY || plug > PS3_PLUG_MAX)) { in ps3_get_irq()
734 if (test_bit(63 - plug, &pd->ipi_mask)) in ps3_get_irq()
735 lv1_end_of_interrupt_ext(pd->ppe_id, pd->thread_id, plug); in ps3_get_irq()
737 return plug; in ps3_get_irq()
/linux-6.6.21/io_uring/
Dopdef.c61 .plug = 1,
74 .plug = 1,
92 .plug = 1,
105 .plug = 1,
232 .plug = 1,
245 .plug = 1,
398 .plug = 1,
Dopdef.h9 unsigned plug : 1; member
/linux-6.6.21/sound/firewire/
Dfcp.h20 unsigned short plug);
23 unsigned short plug);
/linux-6.6.21/drivers/block/drbd/
Ddrbd_req.c1274 struct drbd_plug_cb *plug = container_of(cb, struct drbd_plug_cb, cb); in drbd_unplug() local
1275 struct drbd_resource *resource = plug->cb.data; in drbd_unplug()
1276 struct drbd_request *req = plug->most_recent_req; in drbd_unplug()
1296 struct drbd_plug_cb *plug; in drbd_check_plugged() local
1297 struct blk_plug_cb *cb = blk_check_plugged(drbd_unplug, resource, sizeof(*plug)); in drbd_check_plugged()
1300 plug = container_of(cb, struct drbd_plug_cb, cb); in drbd_check_plugged()
1302 plug = NULL; in drbd_check_plugged()
1303 return plug; in drbd_check_plugged()
1306 static void drbd_update_plug(struct drbd_plug_cb *plug, struct drbd_request *req) in drbd_update_plug() argument
1308 struct drbd_request *tmp = plug->most_recent_req; in drbd_update_plug()
[all …]
/linux-6.6.21/Documentation/usb/
Dchipidea.rst38 2) Connect 2 boards with usb cable: one end is micro A plug, the other end
39 is micro B plug.
41 The A-device (with micro A plug inserted) should enumerate B-device.
66 5) Remove B-device (unplug micro B plug) and insert again in 10 seconds;
69 6) Remove B-device (unplug micro B plug) and insert again after 10 seconds;
/linux-6.6.21/include/linux/usb/
Dtypec.h148 int typec_plug_set_num_altmodes(struct typec_plug *plug, int num_altmodes);
150 *typec_plug_register_altmode(struct typec_plug *plug,
304 void typec_unregister_plug(struct typec_plug *plug);
/linux-6.6.21/fs/xfs/
Dxfs_discard.c112 struct blk_plug plug; in xfs_discard_extents() local
115 blk_start_plug(&plug); in xfs_discard_extents()
141 blk_finish_plug(&plug); in xfs_discard_extents()
/linux-6.6.21/fs/hpfs/
Dbuffer.c41 struct blk_plug plug; in hpfs_prefetch_sectors() local
58 blk_start_plug(&plug); in hpfs_prefetch_sectors()
66 blk_finish_plug(&plug); in hpfs_prefetch_sectors()
/linux-6.6.21/drivers/media/firewire/
Dfiredtv.h132 int cmp_establish_pp_connection(struct firedtv *fdtv, int plug, int channel);
133 void cmp_break_pp_connection(struct firedtv *fdtv, int plug, int channel);
/linux-6.6.21/Documentation/devicetree/bindings/sound/
Dcirrus,cs42l42.yaml62 Sets the behaviour of the jack plug detect switch.
78 debounce, the tip sense pin might be noisy on a plug event.
181 headset plug is removed slowly. But on some platforms ESD voltage
182 will affect it causing plug detection to fail, especially with CTIA

123456789