/linux-4.1.27/sound/core/oss/ |
D | io.c | 28 #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 …]
|
D | pcm_plugin.c | 35 #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 …]
|
D | pcm_plugin.h | 27 #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);
|
D | copy.c | 61 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()
|
D | route.c | 85 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()
|
D | linear.c | 147 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()
|
D | mulaw.c | 298 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()
|
D | rate.c | 300 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()
|
D | pcm_oss.c | 582 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.1.27/Documentation/ide/ |
D | warm-plug-howto.txt | 2 IDE warm-plug HOWTO 5 To warm-plug devices on a port 'idex': 9 unplug old device(s) and plug new device(s)
|
D | 00-INDEX | 13 warm-plug-howto.txt
|
/linux-4.1.27/block/ |
D | blk-core.c | 1530 struct blk_plug *plug; in blk_attempt_plug_merge() local 1535 plug = current->plug; in blk_attempt_plug_merge() 1536 if (!plug) in blk_attempt_plug_merge() 1541 plug_list = &plug->mq_list; in blk_attempt_plug_merge() 1543 plug_list = &plug->list; in blk_attempt_plug_merge() 1586 struct blk_plug *plug; in blk_queue_bio() local 1667 plug = current->plug; in blk_queue_bio() 1668 if (plug) { in blk_queue_bio() 1677 blk_flush_plug_list(plug, false); in blk_queue_bio() 1681 list_add_tail(&req->queuelist, &plug->list); in blk_queue_bio() [all …]
|
D | blk-lib.c | 51 struct blk_plug plug; in blkdev_issue_discard() local 84 blk_start_plug(&plug); in blkdev_issue_discard() 131 blk_finish_plug(&plug); in blkdev_issue_discard()
|
D | blk-mq.c | 1103 void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule) in blk_mq_flush_plug_list() argument 1112 list_splice_init(&plug->mq_list, &list); in blk_mq_flush_plug_list() 1362 struct blk_plug *plug = current->plug; in blk_sq_make_request() local 1364 if (plug) { in blk_sq_make_request() 1366 if (list_empty(&plug->mq_list)) in blk_sq_make_request() 1369 blk_flush_plug_list(plug, false); in blk_sq_make_request() 1372 list_add_tail(&rq->queuelist, &plug->mq_list); in blk_sq_make_request()
|
D | blk-throttle.c | 1269 struct blk_plug plug; in blk_throtl_dispatch_work_fn() local 1281 blk_start_plug(&plug); in blk_throtl_dispatch_work_fn() 1284 blk_finish_plug(&plug); in blk_throtl_dispatch_work_fn()
|
/linux-4.1.27/arch/powerpc/platforms/ps3/ |
D | interrupt.c | 716 unsigned int plug; in ps3_get_irq() local 723 asm volatile("cntlzd %0,%1" : "=r" (plug) : "r" (x)); in ps3_get_irq() 724 plug &= 0x3f; in ps3_get_irq() 726 if (unlikely(plug == NO_IRQ)) { in ps3_get_irq() 735 if (unlikely(plug < NUM_ISA_INTERRUPTS || plug > PS3_PLUG_MAX)) { in ps3_get_irq() 744 if (test_bit(63 - plug, &pd->ipi_mask)) in ps3_get_irq() 745 lv1_end_of_interrupt_ext(pd->ppe_id, pd->thread_id, plug); in ps3_get_irq() 747 return plug; in ps3_get_irq()
|
/linux-4.1.27/sound/firewire/ |
D | fcp.h | 19 unsigned short plug); 22 unsigned short plug);
|
/linux-4.1.27/Documentation/ |
D | kselftest.txt | 7 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
|
D | sysfs-rules.txt | 13 implement this and users are encouraged to plug, if possible, into the
|
D | devices.txt | 2025 The EVMS driver uses a layered, plug-in model to provide
|
D | kernel-parameters.txt | 2819 associated with PCIe ports (PME, hot-plug, AER). Use
|
/linux-4.1.27/Documentation/usb/ |
D | chipidea.txt | 20 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,
|
D | iuu_phoenix.txt | 17 You can plug more than one IUU. Every unit will
|
D | persist.txt | 118 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
|
D | hotplug.txt | 3 In hotpluggable busses like USB (and Cardbus PCI), end-users plug devices
|
D | ehci.txt | 17 such devices. When USB 1.1 devices plug into USB 2.0 hubs, they
|
D | usbmon.txt | 81 This is where you do something that creates the traffic: plug in a flash key,
|
/linux-4.1.27/include/linux/ |
D | blkdev.h | 1113 struct blk_plug *plug = tsk->plug; in blk_flush_plug() local 1115 if (plug) in blk_flush_plug() 1116 blk_flush_plug_list(plug, false); in blk_flush_plug() 1121 struct blk_plug *plug = tsk->plug; in blk_schedule_flush_plug() local 1123 if (plug) in blk_schedule_flush_plug() 1124 blk_flush_plug_list(plug, true); in blk_schedule_flush_plug() 1129 struct blk_plug *plug = tsk->plug; in blk_needs_flush_plug() local 1131 return plug && in blk_needs_flush_plug() 1132 (!list_empty(&plug->list) || in blk_needs_flush_plug() 1133 !list_empty(&plug->mq_list) || in blk_needs_flush_plug() [all …]
|
D | blk-mq.h | 176 void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule);
|
D | sched.h | 1559 struct blk_plug *plug; member
|
/linux-4.1.27/fs/btrfs/ |
D | raid56.c | 1672 static void run_plug(struct btrfs_plug_cb *plug) in run_plug() argument 1682 list_sort(NULL, &plug->rbio_list, plug_cmp); in run_plug() 1683 while (!list_empty(&plug->rbio_list)) { in run_plug() 1684 cur = list_entry(plug->rbio_list.next, in run_plug() 1707 kfree(plug); in run_plug() 1716 struct btrfs_plug_cb *plug; in unplug_work() local 1717 plug = container_of(work, struct btrfs_plug_cb, work); in unplug_work() 1718 run_plug(plug); in unplug_work() 1723 struct btrfs_plug_cb *plug; in btrfs_raid_unplug() local 1724 plug = container_of(cb, struct btrfs_plug_cb, cb); in btrfs_raid_unplug() [all …]
|
D | tree-log.c | 2634 struct blk_plug plug; in btrfs_sync_log() local 2686 blk_start_plug(&plug); in btrfs_sync_log() 2689 blk_finish_plug(&plug); in btrfs_sync_log() 2734 blk_finish_plug(&plug); in btrfs_sync_log() 2750 blk_finish_plug(&plug); in btrfs_sync_log() 2758 blk_finish_plug(&plug); in btrfs_sync_log() 2784 blk_finish_plug(&plug); in btrfs_sync_log() 2795 blk_finish_plug(&plug); in btrfs_sync_log()
|
D | transaction.c | 987 struct blk_plug plug; in btrfs_write_and_wait_marked_extents() local 989 blk_start_plug(&plug); in btrfs_write_and_wait_marked_extents() 991 blk_finish_plug(&plug); in btrfs_write_and_wait_marked_extents()
|
D | volumes.c | 265 struct blk_plug plug; in run_scheduled_bios() local 273 blk_start_plug(&plug); in run_scheduled_bios() 362 blk_finish_plug(&plug); in run_scheduled_bios() 363 blk_start_plug(&plug); in run_scheduled_bios() 418 blk_finish_plug(&plug); in run_scheduled_bios() 419 blk_start_plug(&plug); in run_scheduled_bios() 434 blk_finish_plug(&plug); in run_scheduled_bios()
|
D | scrub.c | 2968 struct blk_plug plug; in scrub_stripe() local 3088 blk_start_plug(&plug); in scrub_stripe() 3316 blk_finish_plug(&plug); in scrub_stripe()
|
/linux-4.1.27/fs/hpfs/ |
D | buffer.c | 16 struct blk_plug plug; in hpfs_prefetch_sectors() local 30 blk_start_plug(&plug); in hpfs_prefetch_sectors() 38 blk_finish_plug(&plug); in hpfs_prefetch_sectors()
|
/linux-4.1.27/drivers/media/firewire/ |
D | firedtv.h | 134 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);
|
D | firedtv-avc.c | 1371 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.1.27/mm/ |
D | swap_state.c | 458 struct blk_plug plug; in swapin_readahead() local 470 blk_start_plug(&plug); in swapin_readahead() 481 blk_finish_plug(&plug); in swapin_readahead()
|
D | readahead.c | 114 struct blk_plug plug; in read_pages() local 118 blk_start_plug(&plug); in read_pages() 139 blk_finish_plug(&plug); in read_pages()
|
D | madvise.c | 466 struct blk_plug plug; in SYSCALL_DEFINE3() local 506 blk_start_plug(&plug); in SYSCALL_DEFINE3() 542 blk_finish_plug(&plug); in SYSCALL_DEFINE3()
|
D | page-writeback.c | 2014 struct blk_plug plug; in generic_writepages() local 2021 blk_start_plug(&plug); in generic_writepages() 2023 blk_finish_plug(&plug); in generic_writepages()
|
D | vmscan.c | 2129 struct blk_plug plug; in shrink_lruvec() local 2151 blk_start_plug(&plug); in shrink_lruvec() 2221 blk_finish_plug(&plug); in shrink_lruvec()
|
/linux-4.1.27/Documentation/devicetree/bindings/media/i2c/ |
D | adv7604.txt | 16 - hpd-gpios: References to the GPIOs that control the HDMI hot-plug 18 level that enables hot-plug detection.
|
/linux-4.1.27/drivers/staging/panel/ |
D | Kconfig | 174 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.1.27/fs/nfs/blocklayout/ |
D | blocklayout.c | 237 struct blk_plug plug; in bl_read_pagelist() local 249 blk_start_plug(&plug); in bl_read_pagelist() 314 blk_finish_plug(&plug); in bl_read_pagelist() 383 struct blk_plug plug; in bl_write_pagelist() local 397 blk_start_plug(&plug); in bl_write_pagelist() 436 blk_finish_plug(&plug); in bl_write_pagelist()
|
/linux-4.1.27/fs/jbd/ |
D | commit.c | 314 struct blk_plug plug; in journal_commit_transaction() local 447 blk_start_plug(&plug); in journal_commit_transaction() 450 blk_finish_plug(&plug); in journal_commit_transaction() 506 blk_start_plug(&plug); in journal_commit_transaction() 700 blk_finish_plug(&plug); in journal_commit_transaction()
|
D | checkpoint.c | 261 struct blk_plug plug; in __flush_batch() local 263 blk_start_plug(&plug); in __flush_batch() 266 blk_finish_plug(&plug); in __flush_batch()
|
/linux-4.1.27/Documentation/devicetree/bindings/drm/i2c/ |
D | tda998x.txt | 13 screen plug/unplug interrupt.
|
/linux-4.1.27/Documentation/devicetree/bindings/input/ |
D | ps2keyb-mouse-apbps2.txt | 6 these properties are built from information in the AMBA plug&play and from
|
/linux-4.1.27/drivers/md/ |
D | raid1.c | 1043 struct raid1_plug_cb *plug = container_of(cb, struct raid1_plug_cb, in raid1_unplug() local 1045 struct mddev *mddev = plug->cb.data; in raid1_unplug() 1051 bio_list_merge(&conf->pending_bio_list, &plug->pending); in raid1_unplug() 1052 conf->pending_count += plug->pending_cnt; in raid1_unplug() 1056 kfree(plug); in raid1_unplug() 1061 bio = bio_list_get(&plug->pending); in raid1_unplug() 1076 kfree(plug); in raid1_unplug() 1096 struct raid1_plug_cb *plug = NULL; in make_request() local 1417 cb = blk_check_plugged(raid1_unplug, mddev, sizeof(*plug)); in make_request() 1419 plug = container_of(cb, struct raid1_plug_cb, cb); in make_request() [all …]
|
D | dm-bufio.c | 709 struct blk_plug plug; in __flush_write_list() local 710 blk_start_plug(&plug); in __flush_write_list() 718 blk_finish_plug(&plug); in __flush_write_list() 1113 struct blk_plug plug; in dm_bufio_prefetch() local 1119 blk_start_plug(&plug); in dm_bufio_prefetch() 1129 blk_finish_plug(&plug); in dm_bufio_prefetch() 1131 blk_start_plug(&plug); in dm_bufio_prefetch() 1152 blk_finish_plug(&plug); in dm_bufio_prefetch()
|
D | dm-kcopyd.c | 583 struct blk_plug plug; in do_work() local 592 blk_start_plug(&plug); in do_work() 596 blk_finish_plug(&plug); in do_work()
|
D | raid10.c | 1108 struct raid10_plug_cb *plug = container_of(cb, struct raid10_plug_cb, in raid10_unplug() local 1110 struct mddev *mddev = plug->cb.data; in raid10_unplug() 1116 bio_list_merge(&conf->pending_bio_list, &plug->pending); in raid10_unplug() 1117 conf->pending_count += plug->pending_cnt; in raid10_unplug() 1121 kfree(plug); in raid10_unplug() 1126 bio = bio_list_get(&plug->pending); in raid10_unplug() 1141 kfree(plug); in raid10_unplug() 1159 struct raid10_plug_cb *plug = NULL; in __make_request() local 1464 sizeof(*plug)); in __make_request() 1466 plug = container_of(cb, struct raid10_plug_cb, in __make_request() [all …]
|
D | dm-crypt.c | 1183 struct blk_plug plug; in dmcrypt_write() local 1222 blk_start_plug(&plug); in dmcrypt_write() 1228 blk_finish_plug(&plug); in dmcrypt_write()
|
D | dm-thin.c | 1779 struct blk_plug plug; in process_thin_deferred_bios() local 1803 blk_start_plug(&plug); in process_thin_deferred_bios() 1828 blk_finish_plug(&plug); in process_thin_deferred_bios()
|
D | raid5.c | 5775 struct blk_plug plug; in raid5_do_work() local 5779 blk_start_plug(&plug); in raid5_do_work() 5797 blk_finish_plug(&plug); in raid5_do_work() 5814 struct blk_plug plug; in raid5d() local 5820 blk_start_plug(&plug); in raid5d() 5879 blk_finish_plug(&plug); in raid5d()
|
D | md.c | 7620 struct blk_plug plug; in md_do_sync() local 7793 blk_start_plug(&plug); in md_do_sync() 7915 blk_finish_plug(&plug); in md_do_sync()
|
/linux-4.1.27/arch/arm/boot/dts/ |
D | berlin2-sony-nsz-gs7.dts | 33 /* Unpopulated SATA plug on solder side */
|
D | armada-xp-gp.dts | 74 * 8 GB of plug-in RAM modules by default.The amount
|
/linux-4.1.27/fs/jbd2/ |
D | checkpoint.c | 185 struct blk_plug plug; in __flush_batch() local 187 blk_start_plug(&plug); in __flush_batch() 190 blk_finish_plug(&plug); in __flush_batch()
|
D | commit.c | 393 struct blk_plug plug; in jbd2_journal_commit_transaction() local 558 blk_start_plug(&plug); in jbd2_journal_commit_transaction() 808 blk_finish_plug(&plug); in jbd2_journal_commit_transaction()
|
/linux-4.1.27/Documentation/devicetree/bindings/gpio/ |
D | gpio-grgpio.txt | 6 these properties are built from information in the AMBA plug&play.
|
/linux-4.1.27/Documentation/devicetree/bindings/net/can/ |
D | grcan.txt | 6 Note: These properties are built from the AMBA plug&play in a Leon SPARC system
|
/linux-4.1.27/fs/xfs/ |
D | xfs_itable.c | 182 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()
|
D | xfs_dir2_readdir.c | 278 struct blk_plug plug; in xfs_dir2_leaf_readbuf() local 407 blk_start_plug(&plug); in xfs_dir2_leaf_readbuf() 458 blk_finish_plug(&plug); in xfs_dir2_leaf_readbuf()
|
D | xfs_buf.c | 1218 struct blk_plug plug; in _xfs_buf_ioapply() local 1291 blk_start_plug(&plug); in _xfs_buf_ioapply() 1299 blk_finish_plug(&plug); in _xfs_buf_ioapply() 1792 struct blk_plug plug; in __xfs_buf_delwri_submit() local 1826 blk_start_plug(&plug); in __xfs_buf_delwri_submit() 1843 blk_finish_plug(&plug); in __xfs_buf_delwri_submit()
|
/linux-4.1.27/fs/ |
D | mpage.c | 679 struct blk_plug plug; in mpage_writepages() local 682 blk_start_plug(&plug); in mpage_writepages() 698 blk_finish_plug(&plug); in mpage_writepages()
|
D | direct-io.c | 1112 struct blk_plug plug; in do_blockdev_direct_IO() local 1242 blk_start_plug(&plug); in do_blockdev_direct_IO() 1273 blk_finish_plug(&plug); in do_blockdev_direct_IO()
|
D | aio.c | 1569 struct blk_plug plug; in do_io_submit() local 1586 blk_start_plug(&plug); in do_io_submit() 1610 blk_finish_plug(&plug); in do_io_submit()
|
D | block_dev.c | 1608 struct blk_plug plug; in blkdev_write_iter() local 1622 blk_start_plug(&plug); in blkdev_write_iter() 1630 blk_finish_plug(&plug); in blkdev_write_iter()
|
D | Kconfig.binfmt | 152 If you say Y here, it will be possible to plug wrapper-driven binary
|
D | buffer.c | 720 struct blk_plug plug; in fsync_buffers_list() local 723 blk_start_plug(&plug); in fsync_buffers_list() 761 blk_finish_plug(&plug); in fsync_buffers_list()
|
/linux-4.1.27/fs/ext4/ |
D | file.c | 96 struct blk_plug plug; in ext4_file_write_iter() local 138 blk_start_plug(&plug); in ext4_file_write_iter() 181 blk_finish_plug(&plug); in ext4_file_write_iter()
|
D | inode.c | 2428 struct blk_plug plug; in ext4_writepages() local 2442 struct blk_plug plug; in ext4_writepages() local 2444 blk_start_plug(&plug); in ext4_writepages() 2446 blk_finish_plug(&plug); in ext4_writepages() 2512 blk_start_plug(&plug); in ext4_writepages() 2582 blk_finish_plug(&plug); in ext4_writepages()
|
/linux-4.1.27/sound/ppc/ |
D | Kconfig | 24 bool "Toggle DRC automatically at headphone/line plug-in"
|
/linux-4.1.27/Documentation/devicetree/bindings/usb/ |
D | gr-udc.txt | 7 these properties are built from information in the AMBA plug&play.
|
/linux-4.1.27/fs/f2fs/ |
D | gc.c | 664 struct blk_plug plug; in do_garbage_collect() local 669 blk_start_plug(&plug); in do_garbage_collect() 681 blk_finish_plug(&plug); in do_garbage_collect()
|
D | checkpoint.c | 813 struct blk_plug plug; in block_operations() local 816 blk_start_plug(&plug); in block_operations() 849 blk_finish_plug(&plug); in block_operations()
|
D | node.c | 1077 struct blk_plug plug; in get_node_page_ra() local 1097 blk_start_plug(&plug); in get_node_page_ra() 1109 blk_finish_plug(&plug); in get_node_page_ra()
|
/linux-4.1.27/drivers/fmc/ |
D | Kconfig | 10 standard for mezzanine cards that plug into a carrier board.
|
/linux-4.1.27/Documentation/driver-model/ |
D | overview.txt | 28 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.1.27/drivers/gpu/drm/sti/ |
D | NOTES | 11 - The video plug (VID) connects to the HQVDP output.
|
/linux-4.1.27/drivers/target/ |
D | target_core_iblock.c | 364 struct blk_plug plug; in iblock_submit_bios() local 367 blk_start_plug(&plug); in iblock_submit_bios() 370 blk_finish_plug(&plug); in iblock_submit_bios()
|
/linux-4.1.27/fs/gfs2/ |
D | log.c | 149 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.1.27/Documentation/devicetree/bindings/net/ |
D | keystone-netcp.txt | 16 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.1.27/Documentation/fb/ |
D | sstfb.txt | 43 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.1.27/Documentation/sound/alsa/ |
D | Joystick.txt | 21 the load time. It'd be safer to plug in the joystick device before
|
D | HD-Audio-Controls.txt | 91 unsolicited event per jack plug. When this is on, the driver polls
|
D | Audiophile-Usb.txt | 404 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.1.27/drivers/usb/core/ |
D | Kconfig | 52 plug inserted and can be changed later when two dual
|
/linux-4.1.27/Documentation/video4linux/ |
D | zr364xx.txt | 12 You can get these values by looking at /var/log/messages when you plug your camera, or by typing : …
|
D | radiotrack.txt | 38 available through a miniature phone plug. Its RF frequencies of operation are
|
/linux-4.1.27/Documentation/misc-devices/mei/ |
D | mei-client-bus.txt | 13 In order to plug seamlessly into the kernel device driver model we add kernel virtual
|
/linux-4.1.27/Documentation/infiniband/ |
D | core_locking.txt | 97 Hot-plug
|
/linux-4.1.27/drivers/thermal/ |
D | Kconfig | 155 Enable this to plug the SPEAr thermal sensor driver into the Linux 173 Enable this to plug the R-Car thermal sensor driver into the Linux
|
/linux-4.1.27/drivers/net/irda/ |
D | Kconfig | 252 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.1.27/drivers/block/xen-blkback/ |
D | blkback.c | 1199 struct blk_plug plug; in dispatch_rw_block_io() local 1358 blk_start_plug(&plug); in dispatch_rw_block_io() 1364 blk_finish_plug(&plug); in dispatch_rw_block_io()
|
/linux-4.1.27/Documentation/devicetree/bindings/mfd/ |
D | ab8500.txt | 38 : MAIN_CHARGE_PLUG_DET : : main charger plug detection management (not in 8505)
|
/linux-4.1.27/net/sched/ |
D | Kconfig | 326 This queuing discipline allows userspace to plug/unplug a network 328 enqueue command it inserts a plug into the outbound queue that 330 over netlink, causing the plug to be removed and resuming the normal 335 command, only packets up to the first plug are released for delivery.
|
/linux-4.1.27/Documentation/filesystems/ |
D | sysfs-pci.txt | 83 integer to the file. This does not involve any kind of hot-plug functionality,
|
/linux-4.1.27/Documentation/device-mapper/ |
D | cache.txt | 19 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.1.27/Documentation/x86/ |
D | earlyprintk.txt | 60 usb stack when you plug a usb device into various ports on the
|
/linux-4.1.27/drivers/parisc/ |
D | Kconfig | 63 If you want to plug an ISA card into your EISA bus, say Y here.
|
/linux-4.1.27/Documentation/arm/ |
D | IXP4xx | 146 The PrPMC1100 is based on the IXCP1100 and is meant to plug into
|
/linux-4.1.27/Documentation/blockdev/ |
D | cciss.txt | 121 Hot plug support for SCSI tape drives
|
/linux-4.1.27/Documentation/networking/ |
D | batman-adv.txt | 43 reload the module if you plug your USB wifi adapter into your ma-
|
D | ixgbe.txt | 84 Express Module only supports SR optical modules). If you plug in a different
|
D | cs89x0.txt | 306 k) If your Linux kernel was compiled with inbuilt plug-and-play
|
D | arcnet-hardware.txt | 207 cards. The ends are terminated with RJ 93 Ohm terminators which plug into
|
/linux-4.1.27/Documentation/wimax/ |
D | README.i2400m | 107 once the driver is loaded, plug in the device (unless it is permanently
|
/linux-4.1.27/Documentation/thermal/ |
D | intel_powerclamp.txt | 117 hot-plug.
|
/linux-4.1.27/drivers/vhost/ |
D | scsi.c | 1753 struct se_lun *lun, bool plug) in vhost_scsi_do_plug() argument 1765 if (plug) in vhost_scsi_do_plug()
|
/linux-4.1.27/drivers/tty/serial/8250/ |
D | Kconfig | 146 via hot-plug, or any ISA multi-port serial cards.
|
/linux-4.1.27/Documentation/powerpc/ |
D | eeh-pci-error-recovery.txt | 98 the power to the card can be toggled, at least on hot-plug-capable
|
/linux-4.1.27/Documentation/scsi/ |
D | aic79xx.txt | 136 - Add PCI hot plug support for 2.5.X kernels.
|
D | ChangeLog.sym53c8xx | 416 support of SCSI hot-plug.
|
/linux-4.1.27/kernel/ |
D | fork.c | 1468 p->plug = NULL; in copy_process()
|
/linux-4.1.27/arch/alpha/ |
D | Kconfig | 167 slots, 4 PCI slots (one pair are on a shared slot), uses plug-in
|
/linux-4.1.27/Documentation/video4linux/bttv/ |
D | Cards | 646 Galaxis plug.in S [neuer Name: Galaxis DVB Card S CI
|
/linux-4.1.27/drivers/usb/host/ |
D | Kconfig | 509 Enables support for PCI-bus plug-in USB controller cards.
|
/linux-4.1.27/drivers/ata/ |
D | Kconfig | 850 This option enables support for ISA plug & play ATA
|
/linux-4.1.27/drivers/staging/comedi/ |
D | Kconfig | 520 Kernel-level ISA plug-and-play support for the lab-pc-1200 boards has
|
/linux-4.1.27/drivers/rtc/ |
D | Kconfig | 15 be allowed to plug one or more RTCs to your system. You will
|
/linux-4.1.27/Documentation/block/ |
D | biodoc.txt | 1035 balance between when to plug and when to open up. Also now that we have
|