Home
last modified time | relevance | path

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

/linux-4.4.14/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,1) 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,1) 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
104 int snd_pcm_plug_alloc(struct snd_pcm_substream *plug, snd_pcm_uframes_t frames) in snd_pcm_plug_alloc() argument
107 if (snd_BUG_ON(!snd_pcm_plug_first(plug))) in snd_pcm_plug_alloc()
109 if (snd_pcm_plug_stream(plug) == SNDRV_PCM_STREAM_PLAYBACK) { in snd_pcm_plug_alloc()
110 struct snd_pcm_plugin *plugin = snd_pcm_plug_first(plug); in snd_pcm_plug_alloc()
122 struct snd_pcm_plugin *plugin = snd_pcm_plug_last(plug); in snd_pcm_plug_alloc()
146 int snd_pcm_plugin_build(struct snd_pcm_substream *plug, in snd_pcm_plugin_build() argument
156 if (snd_BUG_ON(!plug)) in snd_pcm_plugin_build()
164 plugin->plug = plug; in snd_pcm_plugin_build()
[all …]
Dpcm_plugin.h27 #define snd_pcm_plug_stream(plug) ((plug)->stream) argument
76 struct snd_pcm_substream *plug; member
93 int snd_pcm_plug_alloc(struct snd_pcm_substream *plug, snd_pcm_uframes_t frames);
157 void *snd_pcm_plug_buf_alloc(struct snd_pcm_substream *plug, snd_pcm_uframes_t size);
158 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.c85 int snd_pcm_plugin_build_route(struct snd_pcm_substream *plug, in snd_pcm_plugin_build_route() argument
101 err = snd_pcm_plugin_build(plug, "route conversion", in snd_pcm_plugin_build_route()
Dlinear.c147 int snd_pcm_plugin_build_linear(struct snd_pcm_substream *plug, in snd_pcm_plugin_build_linear() argument
168 err = snd_pcm_plugin_build(plug, "linear format conversion", in snd_pcm_plugin_build_linear()
Dmulaw.c298 int snd_pcm_plugin_build_mulaw(struct snd_pcm_substream *plug, in snd_pcm_plugin_build_mulaw() argument
333 err = snd_pcm_plugin_build(plug, "Mu-Law<->linear conversion", in snd_pcm_plugin_build_mulaw()
Drate.c300 int snd_pcm_plugin_build_rate(struct snd_pcm_substream *plug, in snd_pcm_plugin_build_rate() argument
324 err = snd_pcm_plugin_build(plug, "rate conversion", in snd_pcm_plugin_build_rate()
Dpcm_oss.c582 struct snd_pcm_runtime *runtime = plugin->plug->runtime; in snd_pcm_plugin_insert()
597 struct snd_pcm_runtime *runtime = plugin->plug->runtime; in snd_pcm_plugin_append()
/linux-4.4.14/block/
Dblk-core.c1615 struct blk_plug *plug; in blk_attempt_plug_merge() local
1620 plug = current->plug; in blk_attempt_plug_merge()
1621 if (!plug) in blk_attempt_plug_merge()
1626 plug_list = &plug->mq_list; in blk_attempt_plug_merge()
1628 plug_list = &plug->list; in blk_attempt_plug_merge()
1664 struct blk_plug *plug; in blk_plug_queued_count() local
1669 plug = current->plug; in blk_plug_queued_count()
1670 if (!plug) in blk_plug_queued_count()
1674 plug_list = &plug->mq_list; in blk_plug_queued_count()
1676 plug_list = &plug->list; in blk_plug_queued_count()
[all …]
Dblk-lib.c51 struct blk_plug plug; in blkdev_issue_discard() local
73 blk_start_plug(&plug); in blkdev_issue_discard()
121 blk_finish_plug(&plug); in blkdev_issue_discard()
Dblk-mq.c1068 void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule) in blk_mq_flush_plug_list() argument
1077 list_splice_init(&plug->mq_list, &list); in blk_mq_flush_plug_list()
1249 struct blk_plug *plug; in blk_mq_make_request() local
1281 plug = current->plug; in blk_mq_make_request()
1287 if (((plug && !blk_queue_nomerges(q)) || is_sync) && in blk_mq_make_request()
1298 if (plug) { in blk_mq_make_request()
1304 if (same_queue_rq && !list_empty(&plug->mq_list)) { in blk_mq_make_request()
1308 list_add_tail(&rq->queuelist, &plug->mq_list); in blk_mq_make_request()
1343 struct blk_plug *plug; in blk_sq_make_request() local
1379 plug = current->plug; in blk_sq_make_request()
[all …]
Dblk-throttle.c1092 struct blk_plug plug; in blk_throtl_dispatch_work_fn() local
1104 blk_start_plug(&plug); in blk_throtl_dispatch_work_fn()
1107 blk_finish_plug(&plug); in blk_throtl_dispatch_work_fn()
/linux-4.4.14/Documentation/ide/
Dwarm-plug-howto.txt2 IDE warm-plug HOWTO
5 To warm-plug devices on a port 'idex':
9 unplug old device(s) and plug new device(s)
D00-INDEX13 warm-plug-howto.txt
/linux-4.4.14/arch/powerpc/platforms/ps3/
Dinterrupt.c717 unsigned int plug; in ps3_get_irq() local
724 asm volatile("cntlzd %0,%1" : "=r" (plug) : "r" (x)); in ps3_get_irq()
725 plug &= 0x3f; in ps3_get_irq()
727 if (unlikely(plug == NO_IRQ)) { in ps3_get_irq()
736 if (unlikely(plug < NUM_ISA_INTERRUPTS || plug > PS3_PLUG_MAX)) { in ps3_get_irq()
745 if (test_bit(63 - plug, &pd->ipi_mask)) in ps3_get_irq()
746 lv1_end_of_interrupt_ext(pd->ppe_id, pd->thread_id, plug); in ps3_get_irq()
748 return plug; in ps3_get_irq()
/linux-4.4.14/sound/firewire/
Dfcp.h19 unsigned short plug);
22 unsigned short plug);
/linux-4.4.14/Documentation/usb/
Dchipidea.txt20 2) Connect 2 boards with usb cable with one end is micro A plug, the other end
21 is micro B plug.
23 The A-device(with micro A plug inserted) should enumrate B-device.
41 5) Remove B-device(unplug micro B plug) and insert again in 10 seconds,
44 6) Remove B-device(unplug micro B plug) and insert again after 10 seconds,
Diuu_phoenix.txt17 You can plug more than one IUU. Every unit will
Dpersist.txt118 to plug in a USB flash device, create a persistent volume associated
119 with it, unplug the flash device, plug it back in later, and still
Dhotplug.txt3 In hotpluggable busses like USB (and Cardbus PCI), end-users plug devices
Dehci.txt17 such devices. When USB 1.1 devices plug into USB 2.0 hubs, they
Dusbmon.txt81 This is where you do something that creates the traffic: plug in a flash key,
/linux-4.4.14/include/linux/
Dblkdev.h1073 struct blk_plug *plug = tsk->plug; in blk_flush_plug() local
1075 if (plug) in blk_flush_plug()
1076 blk_flush_plug_list(plug, false); in blk_flush_plug()
1081 struct blk_plug *plug = tsk->plug; in blk_schedule_flush_plug() local
1083 if (plug) in blk_schedule_flush_plug()
1084 blk_flush_plug_list(plug, true); in blk_schedule_flush_plug()
1089 struct blk_plug *plug = tsk->plug; in blk_needs_flush_plug() local
1091 return plug && in blk_needs_flush_plug()
1092 (!list_empty(&plug->list) || in blk_needs_flush_plug()
1093 !list_empty(&plug->mq_list) || in blk_needs_flush_plug()
[all …]
Dblk-mq.h185 void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule);
Dsched.h1644 struct blk_plug *plug; member
/linux-4.4.14/Documentation/
Dkselftest.txt7 On some systems, hot-plug tests could hang forever waiting for cpu and
8 memory to be ready to be offlined. A special hot-plug target is created
9 to run full range of hot-plug tests. In default mode, hot-plug tests run
Dsysfs-rules.txt13 implement this and users are encouraged to plug, if possible, into the
Ddevices.txt2025 The EVMS driver uses a layered, plug-in model to provide
Dkernel-parameters.txt2896 associated with PCIe ports (PME, hot-plug, AER). Use
/linux-4.4.14/fs/btrfs/
Draid56.c1680 static void run_plug(struct btrfs_plug_cb *plug) in run_plug() argument
1690 list_sort(NULL, &plug->rbio_list, plug_cmp); in run_plug()
1691 while (!list_empty(&plug->rbio_list)) { in run_plug()
1692 cur = list_entry(plug->rbio_list.next, in run_plug()
1715 kfree(plug); in run_plug()
1724 struct btrfs_plug_cb *plug; in unplug_work() local
1725 plug = container_of(work, struct btrfs_plug_cb, work); in unplug_work()
1726 run_plug(plug); in unplug_work()
1731 struct btrfs_plug_cb *plug; in btrfs_raid_unplug() local
1732 plug = container_of(cb, struct btrfs_plug_cb, cb); in btrfs_raid_unplug()
[all …]
Dtree-log.c2734 struct blk_plug plug; in btrfs_sync_log() local
2786 blk_start_plug(&plug); in btrfs_sync_log()
2789 blk_finish_plug(&plug); in btrfs_sync_log()
2836 blk_finish_plug(&plug); in btrfs_sync_log()
2852 blk_finish_plug(&plug); in btrfs_sync_log()
2860 blk_finish_plug(&plug); in btrfs_sync_log()
2886 blk_finish_plug(&plug); in btrfs_sync_log()
2897 blk_finish_plug(&plug); in btrfs_sync_log()
Dtransaction.c1031 struct blk_plug plug; in btrfs_write_and_wait_marked_extents() local
1033 blk_start_plug(&plug); in btrfs_write_and_wait_marked_extents()
1035 blk_finish_plug(&plug); in btrfs_write_and_wait_marked_extents()
Dvolumes.c344 struct blk_plug plug; in run_scheduled_bios() local
352 blk_start_plug(&plug); in run_scheduled_bios()
444 blk_finish_plug(&plug); in run_scheduled_bios()
445 blk_start_plug(&plug); in run_scheduled_bios()
500 blk_finish_plug(&plug); in run_scheduled_bios()
501 blk_start_plug(&plug); in run_scheduled_bios()
516 blk_finish_plug(&plug); in run_scheduled_bios()
Dscrub.c3067 struct blk_plug plug; in scrub_stripe() local
3187 blk_start_plug(&plug); in scrub_stripe()
3426 blk_finish_plug(&plug); in scrub_stripe()
/linux-4.4.14/fs/hpfs/
Dbuffer.c40 struct blk_plug plug; in hpfs_prefetch_sectors() local
57 blk_start_plug(&plug); in hpfs_prefetch_sectors()
65 blk_finish_plug(&plug); in hpfs_prefetch_sectors()
/linux-4.4.14/drivers/media/firewire/
Dfiredtv.h134 int cmp_establish_pp_connection(struct firedtv *fdtv, int plug, int channel);
135 void cmp_break_pp_connection(struct firedtv *fdtv, int plug, int channel);
Dfiredtv-avc.c1371 int cmp_establish_pp_connection(struct firedtv *fdtv, int plug, int channel) in cmp_establish_pp_connection() argument
1374 u64 opcr_address = CMP_OUTPUT_PLUG_CONTROL_REG_0 + (plug << 2); in cmp_establish_pp_connection()
1431 void cmp_break_pp_connection(struct firedtv *fdtv, int plug, int channel) in cmp_break_pp_connection() argument
1434 u64 opcr_address = CMP_OUTPUT_PLUG_CONTROL_REG_0 + (plug << 2); in cmp_break_pp_connection()
/linux-4.4.14/mm/
Dswap_state.c473 struct blk_plug plug; in swapin_readahead() local
485 blk_start_plug(&plug); in swapin_readahead()
496 blk_finish_plug(&plug); in swapin_readahead()
Dreadahead.c114 struct blk_plug plug; in read_pages() local
118 blk_start_plug(&plug); in read_pages()
139 blk_finish_plug(&plug); in read_pages()
Dmadvise.c468 struct blk_plug plug; in SYSCALL_DEFINE3() local
508 blk_start_plug(&plug); in SYSCALL_DEFINE3()
544 blk_finish_plug(&plug); in SYSCALL_DEFINE3()
Dpage-writeback.c2324 struct blk_plug plug; in generic_writepages() local
2331 blk_start_plug(&plug); in generic_writepages()
2333 blk_finish_plug(&plug); in generic_writepages()
Dvmscan.c2191 struct blk_plug plug; in shrink_lruvec() local
2215 blk_start_plug(&plug); in shrink_lruvec()
2285 blk_finish_plug(&plug); in shrink_lruvec()
/linux-4.4.14/Documentation/devicetree/bindings/media/i2c/
Dadv7604.txt18 - hpd-gpios: References to the GPIOs that control the HDMI hot-plug
20 level that enables hot-plug detection.
/linux-4.4.14/drivers/staging/panel/
DKconfig174 1..17 : directly connected to any of these pins on the DB25 plug
189 1..17 : directly connected to any of these pins on the DB25 plug
204 1..17 : directly connected to any of these pins on the DB25 plug
219 1..17 : directly connected to any of these pins on the DB25 plug
234 1..17 : directly connected to any of these pins on the DB25 plug
249 1..17 : directly connected to any of these pins on the DB25 plug
/linux-4.4.14/fs/nfs/blocklayout/
Dblocklayout.c236 struct blk_plug plug; in bl_read_pagelist() local
248 blk_start_plug(&plug); in bl_read_pagelist()
310 blk_finish_plug(&plug); in bl_read_pagelist()
378 struct blk_plug plug; in bl_write_pagelist() local
392 blk_start_plug(&plug); in bl_write_pagelist()
431 blk_finish_plug(&plug); in bl_write_pagelist()
/linux-4.4.14/Documentation/devicetree/bindings/display/bridge/
Dtda998x.txt13 screen plug/unplug interrupt.
/linux-4.4.14/Documentation/devicetree/bindings/input/
Dps2keyb-mouse-apbps2.txt6 these properties are built from information in the AMBA plug&play and from
/linux-4.4.14/drivers/md/
Draid1.c1011 struct raid1_plug_cb *plug = container_of(cb, struct raid1_plug_cb, in raid1_unplug() local
1013 struct mddev *mddev = plug->cb.data; in raid1_unplug()
1019 bio_list_merge(&conf->pending_bio_list, &plug->pending); in raid1_unplug()
1020 conf->pending_count += plug->pending_cnt; in raid1_unplug()
1024 kfree(plug); in raid1_unplug()
1029 bio = bio_list_get(&plug->pending); in raid1_unplug()
1044 kfree(plug); in raid1_unplug()
1064 struct raid1_plug_cb *plug = NULL; in make_request() local
1385 cb = blk_check_plugged(raid1_unplug, mddev, sizeof(*plug)); in make_request()
1387 plug = container_of(cb, struct raid1_plug_cb, cb); in make_request()
[all …]
Ddm-bufio.c715 struct blk_plug plug; in __flush_write_list() local
716 blk_start_plug(&plug); in __flush_write_list()
724 blk_finish_plug(&plug); in __flush_write_list()
1119 struct blk_plug plug; in dm_bufio_prefetch() local
1125 blk_start_plug(&plug); in dm_bufio_prefetch()
1135 blk_finish_plug(&plug); in dm_bufio_prefetch()
1137 blk_start_plug(&plug); in dm_bufio_prefetch()
1158 blk_finish_plug(&plug); in dm_bufio_prefetch()
Ddm-kcopyd.c583 struct blk_plug plug; in do_work() local
592 blk_start_plug(&plug); in do_work()
596 blk_finish_plug(&plug); in do_work()
Draid10.c1019 struct raid10_plug_cb *plug = container_of(cb, struct raid10_plug_cb, in raid10_unplug() local
1021 struct mddev *mddev = plug->cb.data; in raid10_unplug()
1027 bio_list_merge(&conf->pending_bio_list, &plug->pending); in raid10_unplug()
1028 conf->pending_count += plug->pending_cnt; in raid10_unplug()
1032 kfree(plug); in raid10_unplug()
1037 bio = bio_list_get(&plug->pending); in raid10_unplug()
1052 kfree(plug); in raid10_unplug()
1070 struct raid10_plug_cb *plug = NULL; in __make_request() local
1373 sizeof(*plug)); in __make_request()
1375 plug = container_of(cb, struct raid10_plug_cb, in __make_request()
[all …]
Ddm-crypt.c1197 struct blk_plug plug; in dmcrypt_write() local
1234 blk_start_plug(&plug); in dmcrypt_write()
1240 blk_finish_plug(&plug); in dmcrypt_write()
Ddm-thin.c1997 struct blk_plug plug; in process_thin_deferred_bios() local
2021 blk_start_plug(&plug); in process_thin_deferred_bios()
2046 blk_finish_plug(&plug); in process_thin_deferred_bios()
Draid5.c5797 struct blk_plug plug; in raid5_do_work() local
5801 blk_start_plug(&plug); in raid5_do_work()
5819 blk_finish_plug(&plug); in raid5_do_work()
5836 struct blk_plug plug; in raid5d() local
5854 blk_start_plug(&plug); in raid5d()
5915 blk_finish_plug(&plug); in raid5d()
Dmd.c7769 struct blk_plug plug; in md_do_sync() local
7941 blk_start_plug(&plug); in md_do_sync()
8065 blk_finish_plug(&plug); in md_do_sync()
/linux-4.4.14/fs/jbd2/
Dcheckpoint.c185 struct blk_plug plug; in __flush_batch() local
187 blk_start_plug(&plug); in __flush_batch()
190 blk_finish_plug(&plug); in __flush_batch()
Dcommit.c391 struct blk_plug plug; in jbd2_journal_commit_transaction() local
556 blk_start_plug(&plug); in jbd2_journal_commit_transaction()
804 blk_finish_plug(&plug); in jbd2_journal_commit_transaction()
/linux-4.4.14/Documentation/DocBook/
Dtracepoint.xml.db22 API-trace-block-plug
Dkernel-api.xml.db633 API-blk-start-plug
643 API-blk-attempt-plug-merge
/linux-4.4.14/Documentation/devicetree/bindings/gpio/
Dgpio-grgpio.txt6 these properties are built from information in the AMBA plug&play.
/linux-4.4.14/Documentation/devicetree/bindings/net/can/
Dgrcan.txt6 Note: These properties are built from the AMBA plug&play in a Leon SPARC system
/linux-4.4.14/fs/xfs/
Dxfs_itable.c182 struct blk_plug plug; in xfs_bulkstat_ichunk_ra() local
191 blk_start_plug(&plug); in xfs_bulkstat_ichunk_ra()
199 blk_finish_plug(&plug); in xfs_bulkstat_ichunk_ra()
Dxfs_dir2_readdir.c281 struct blk_plug plug; in xfs_dir2_leaf_readbuf() local
410 blk_start_plug(&plug); in xfs_dir2_leaf_readbuf()
461 blk_finish_plug(&plug); in xfs_dir2_leaf_readbuf()
Dxfs_buf.c1216 struct blk_plug plug; in _xfs_buf_ioapply() local
1289 blk_start_plug(&plug); in _xfs_buf_ioapply()
1297 blk_finish_plug(&plug); in _xfs_buf_ioapply()
1791 struct blk_plug plug; in __xfs_buf_delwri_submit() local
1825 blk_start_plug(&plug); in __xfs_buf_delwri_submit()
1842 blk_finish_plug(&plug); in __xfs_buf_delwri_submit()
/linux-4.4.14/fs/
Dmpage.c686 struct blk_plug plug; in mpage_writepages() local
689 blk_start_plug(&plug); in mpage_writepages()
708 blk_finish_plug(&plug); in mpage_writepages()
Dfs-writeback.c1626 struct blk_plug plug; in writeback_inodes_wb() local
1628 blk_start_plug(&plug); in writeback_inodes_wb()
1634 blk_finish_plug(&plug); in writeback_inodes_wb()
1662 struct blk_plug plug; in wb_writeback() local
1667 blk_start_plug(&plug); in wb_writeback()
1747 blk_finish_plug(&plug); in wb_writeback()
Ddirect-io.c1122 struct blk_plug plug; in do_blockdev_direct_IO() local
1253 blk_start_plug(&plug); in do_blockdev_direct_IO()
1284 blk_finish_plug(&plug); in do_blockdev_direct_IO()
Daio.c1578 struct blk_plug plug; in do_io_submit() local
1595 blk_start_plug(&plug); in do_io_submit()
1619 blk_finish_plug(&plug); in do_io_submit()
Dblock_dev.c1642 struct blk_plug plug; in blkdev_write_iter() local
1656 blk_start_plug(&plug); in blkdev_write_iter()
1664 blk_finish_plug(&plug); in blkdev_write_iter()
DKconfig.binfmt152 If you say Y here, it will be possible to plug wrapper-driven binary
Dbuffer.c737 struct blk_plug plug; in fsync_buffers_list() local
740 blk_start_plug(&plug); in fsync_buffers_list()
778 blk_finish_plug(&plug); in fsync_buffers_list()
/linux-4.4.14/sound/ppc/
DKconfig24 bool "Toggle DRC automatically at headphone/line plug-in"
/linux-4.4.14/Documentation/ABI/testing/
Dsysfs-class-power-twl403015 plug event. These event are reported via udev.
/linux-4.4.14/drivers/staging/fsl-mc/
DREADME.txt105 a plug-and-play bus, such as PCI, DPRC commands can be used to
118 the ability to hot plug/unplug objects in and out of the DPRC.
258 types of DPAA2 objects. It is functionally similar to a plug-and-play
319 and handles interrupts for container events such as hot plug.
/linux-4.4.14/Documentation/devicetree/bindings/usb/
Dgr-udc.txt7 these properties are built from information in the AMBA plug&play.
/linux-4.4.14/drivers/target/
Dtarget_core_iblock.c343 struct blk_plug plug; in iblock_submit_bios() local
346 blk_start_plug(&plug); in iblock_submit_bios()
349 blk_finish_plug(&plug); in iblock_submit_bios()
/linux-4.4.14/fs/ext4/
Dfile.c97 struct blk_plug plug; in ext4_file_write_iter() local
139 blk_start_plug(&plug); in ext4_file_write_iter()
182 blk_finish_plug(&plug); in ext4_file_write_iter()
Dinode.c2460 struct blk_plug plug; in ext4_writepages() local
2474 struct blk_plug plug; in ext4_writepages() local
2476 blk_start_plug(&plug); in ext4_writepages()
2478 blk_finish_plug(&plug); in ext4_writepages()
2544 blk_start_plug(&plug); in ext4_writepages()
2614 blk_finish_plug(&plug); in ext4_writepages()
/linux-4.4.14/drivers/fmc/
DKconfig10 standard for mezzanine cards that plug into a carrier board.
/linux-4.4.14/Documentation/driver-model/
Doverview.txt28 computer: namely the ability to do seamless device "plug and play", power
29 management, and hot plug. In particular, the model dictated by Intel and
/linux-4.4.14/drivers/gpu/drm/sti/
DNOTES11 - The video plug (VID) connects to the HQVDP output.
/linux-4.4.14/drivers/thermal/
DKconfig182 Enable this to plug hisilicon's thermal sensor driver into the Linux
202 Enable this to plug the SPEAr thermal sensor driver into the Linux
220 Enable this to plug the R-Car thermal sensor driver into the Linux
388 This enables a thermal sysfs driver for Qualcomm plug-and-play (QPNP)
/linux-4.4.14/arch/arm/boot/dts/
Dberlin2-sony-nsz-gs7.dts62 /* Unpopulated SATA plug on solder side */
Darmada-xp-gp.dts74 * 8 GB of plug-in RAM modules by default.The amount
/linux-4.4.14/fs/f2fs/
Dgc.c780 struct blk_plug plug; in do_garbage_collect() local
786 blk_start_plug(&plug); in do_garbage_collect()
808 blk_finish_plug(&plug); in do_garbage_collect()
Dcheckpoint.c861 struct blk_plug plug; in block_operations() local
864 blk_start_plug(&plug); in block_operations()
897 blk_finish_plug(&plug); in block_operations()
Dnode.c1089 struct blk_plug plug; in get_node_page_ra() local
1111 blk_start_plug(&plug); in get_node_page_ra()
1123 blk_finish_plug(&plug); in get_node_page_ra()
/linux-4.4.14/fs/gfs2/
Dlog.c149 struct blk_plug plug; in gfs2_ail1_flush() local
152 blk_start_plug(&plug); in gfs2_ail1_flush()
162 blk_finish_plug(&plug); in gfs2_ail1_flush()
/linux-4.4.14/Documentation/devicetree/bindings/net/
Dkeystone-netcp.txt16 Keystone NetCP driver has a plug-in module architecture where each of the NetCP
17 sub-modules exist as a loadable kernel module which plug in to the netcp core.
/linux-4.4.14/Documentation/fb/
Dsstfb.txt43 plug the monitor to the "normal" video board in order to issue
55 (if you don't have a second monitor, you'll have to plug your monitor
/linux-4.4.14/Documentation/sound/alsa/
DJoystick.txt21 the load time. It'd be safer to plug in the joystick device before
DHD-Audio-Controls.txt91 unsolicited event per jack plug. When this is on, the driver polls
DAudiophile-Usb.txt404 the Alsa "plug" converter.
411 "You appear to be using the ALSA software "plug" layer, probably a result of
413 Consider using a hardware device instead rather than using the plug layer."
/linux-4.4.14/Documentation/video4linux/
Dzr364xx.txt12 You can get these values by looking at /var/log/messages when you plug your camera, or by typing : …
Dradiotrack.txt38 available through a miniature phone plug. Its RF frequencies of operation are
/linux-4.4.14/Documentation/misc-devices/mei/
Dmei-client-bus.txt13 In order to plug seamlessly into the kernel device driver model we add kernel virtual
/linux-4.4.14/Documentation/infiniband/
Dcore_locking.txt97 Hot-plug
/linux-4.4.14/drivers/net/irda/
DKconfig252 plug in the USB port of your computer, are plug and play, and
361 to plug a specific 5 pins FIR IrDA dongle in the specific
/linux-4.4.14/drivers/usb/core/
DKconfig52 plug inserted and can be changed later when two dual
/linux-4.4.14/Documentation/devicetree/bindings/mfd/
Dab8500.txt38 : MAIN_CHARGE_PLUG_DET : : main charger plug detection management (not in 8505)
/linux-4.4.14/drivers/block/xen-blkback/
Dblkback.c1211 struct blk_plug plug; in dispatch_rw_block_io() local
1371 blk_start_plug(&plug); in dispatch_rw_block_io()
1377 blk_finish_plug(&plug); in dispatch_rw_block_io()
/linux-4.4.14/net/sched/
DKconfig327 This queuing discipline allows userspace to plug/unplug a network
329 enqueue command it inserts a plug into the outbound queue that
331 over netlink, causing the plug to be removed and resuming the normal
336 command, only packets up to the first plug are released for delivery.
/linux-4.4.14/Documentation/filesystems/
Dsysfs-pci.txt83 integer to the file. This does not involve any kind of hot-plug functionality,
/linux-4.4.14/Documentation/x86/
Dearlyprintk.txt60 usb stack when you plug a usb device into various ports on the
/linux-4.4.14/Documentation/device-mapper/
Dcache.txt19 The decision as to what data to migrate and when is left to a plug-in
141 Policy plug-ins can store a chunk of data per cache block. It's up to
/linux-4.4.14/Documentation/arm/
DIXP4xx146 The PrPMC1100 is based on the IXCP1100 and is meant to plug into
/linux-4.4.14/drivers/parisc/
DKconfig63 If you want to plug an ISA card into your EISA bus, say Y here.
/linux-4.4.14/Documentation/networking/
Dbatman-adv.txt43 reload the module if you plug your USB wifi adapter into your ma-
Dixgbe.txt84 Express Module only supports SR optical modules). If you plug in a different
Dcs89x0.txt306 k) If your Linux kernel was compiled with inbuilt plug-and-play
Darcnet-hardware.txt207 cards. The ends are terminated with RJ 93 Ohm terminators which plug into
/linux-4.4.14/Documentation/blockdev/
Dcciss.txt121 Hot plug support for SCSI tape drives
/linux-4.4.14/Documentation/wimax/
DREADME.i2400m107 once the driver is loaded, plug in the device (unless it is permanently
/linux-4.4.14/drivers/vhost/
Dscsi.c1595 struct se_lun *lun, bool plug) in vhost_scsi_do_plug() argument
1607 if (plug) in vhost_scsi_do_plug()
/linux-4.4.14/Documentation/thermal/
Dintel_powerclamp.txt117 hot-plug.
/linux-4.4.14/drivers/tty/serial/8250/
DKconfig146 via hot-plug, or any ISA multi-port serial cards.
/linux-4.4.14/Documentation/powerpc/
Deeh-pci-error-recovery.txt98 the power to the card can be toggled, at least on hot-plug-capable
/linux-4.4.14/Documentation/scsi/
Daic79xx.txt136 - Add PCI hot plug support for 2.5.X kernels.
DChangeLog.sym53c8xx416 support of SCSI hot-plug.
/linux-4.4.14/kernel/
Dfork.c1474 p->plug = NULL; in copy_process()
/linux-4.4.14/arch/alpha/
DKconfig168 slots, 4 PCI slots (one pair are on a shared slot), uses plug-in
/linux-4.4.14/Documentation/video4linux/bttv/
DCards646 Galaxis plug.in S [neuer Name: Galaxis DVB Card S CI
/linux-4.4.14/drivers/usb/host/
DKconfig506 Enables support for PCI-bus plug-in USB controller cards.
/linux-4.4.14/drivers/ata/
DKconfig876 This option enables support for ISA plug & play ATA
/linux-4.4.14/drivers/hid/
DKconfig665 Say M here if you may ever plug in a Plantronics USB audio device.
/linux-4.4.14/drivers/staging/comedi/
DKconfig513 Kernel-level ISA plug-and-play support for the lab-pc-1200 boards has
/linux-4.4.14/drivers/rtc/
DKconfig15 be allowed to plug one or more RTCs to your system. You will
/linux-4.4.14/Documentation/block/
Dbiodoc.txt1035 balance between when to plug and when to open up. Also now that we have