Searched refs:plug (Results 1 - 200 of 274) sorted by relevance

12

/linux-4.1.27/sound/core/oss/
H A Dio.c28 #define pcm_write(plug,buf,count) snd_pcm_oss_write3(plug,buf,count,1)
29 #define pcm_writev(plug,vec,count) snd_pcm_oss_writev3(plug,vec,count,1)
30 #define pcm_read(plug,buf,count) snd_pcm_oss_read3(plug,buf,count,1)
31 #define pcm_readv(plug,vec,count) snd_pcm_oss_readv3(plug,vec,count,1)
47 return pcm_write(plugin->plug, src_channels->area.addr, frames); io_playback_transfer()
59 return pcm_writev(plugin->plug, bufs, frames); io_playback_transfer()
73 return pcm_read(plugin->plug, dst_channels->area.addr, frames); io_capture_transfer()
85 return pcm_readv(plugin->plug, bufs, frames); io_capture_transfer()
108 int snd_pcm_plugin_build_io(struct snd_pcm_substream *plug, snd_pcm_plugin_build_io() argument
119 if (snd_BUG_ON(!plug || !params)) snd_pcm_plugin_build_io()
124 err = snd_pcm_plugin_build(plug, "I/O io", snd_pcm_plugin_build_io()
131 if (snd_pcm_plug_stream(plug) == SNDRV_PCM_STREAM_PLAYBACK) { snd_pcm_plugin_build_io()
H A Dpcm_plugin.c35 #define snd_pcm_plug_first(plug) ((plug)->runtime->oss.plugin_first)
36 #define snd_pcm_plug_last(plug) ((plug)->runtime->oss.plugin_last)
104 int snd_pcm_plug_alloc(struct snd_pcm_substream *plug, snd_pcm_uframes_t frames) snd_pcm_plug_alloc() argument
107 if (snd_BUG_ON(!snd_pcm_plug_first(plug))) snd_pcm_plug_alloc()
109 if (snd_pcm_plug_stream(plug) == SNDRV_PCM_STREAM_PLAYBACK) { snd_pcm_plug_alloc()
110 struct snd_pcm_plugin *plugin = snd_pcm_plug_first(plug); snd_pcm_plug_alloc()
122 struct snd_pcm_plugin *plugin = snd_pcm_plug_last(plug); snd_pcm_plug_alloc()
146 int snd_pcm_plugin_build(struct snd_pcm_substream *plug, snd_pcm_plugin_build() argument
156 if (snd_BUG_ON(!plug)) snd_pcm_plugin_build()
164 plugin->plug = plug; snd_pcm_plugin_build()
165 plugin->stream = snd_pcm_plug_stream(plug); snd_pcm_plugin_build()
199 snd_pcm_sframes_t snd_pcm_plug_client_size(struct snd_pcm_substream *plug, snd_pcm_uframes_t drv_frames) snd_pcm_plug_client_size() argument
204 if (snd_BUG_ON(!plug)) snd_pcm_plug_client_size()
208 stream = snd_pcm_plug_stream(plug); snd_pcm_plug_client_size()
210 plugin = snd_pcm_plug_last(plug); snd_pcm_plug_client_size()
218 plugin = snd_pcm_plug_first(plug); snd_pcm_plug_client_size()
230 snd_pcm_sframes_t snd_pcm_plug_slave_size(struct snd_pcm_substream *plug, snd_pcm_uframes_t clt_frames) snd_pcm_plug_slave_size() argument
236 if (snd_BUG_ON(!plug)) snd_pcm_plug_slave_size()
241 stream = snd_pcm_plug_stream(plug); snd_pcm_plug_slave_size()
243 plugin = snd_pcm_plug_first(plug); snd_pcm_plug_slave_size()
254 plugin = snd_pcm_plug_last(plug); snd_pcm_plug_slave_size()
361 int snd_pcm_plug_format_plugins(struct snd_pcm_substream *plug, snd_pcm_plug_format_plugins() argument
371 int stream = snd_pcm_plug_stream(plug); snd_pcm_plug_format_plugins()
419 err = snd_pcm_plugin_build_mulaw(plug, snd_pcm_plug_format_plugins()
436 err = snd_pcm_plugin_build_route(plug, &srcformat, &tmpformat, &plugin); snd_pcm_plug_format_plugins()
454 err = snd_pcm_plugin_build_linear(plug, snd_pcm_plug_format_plugins()
468 err = snd_pcm_plugin_build_rate(plug, snd_pcm_plug_format_plugins()
488 err = snd_pcm_plugin_build_mulaw(plug, snd_pcm_plug_format_plugins()
494 err = snd_pcm_plugin_build_linear(plug, snd_pcm_plug_format_plugins()
515 err = snd_pcm_plugin_build_route(plug, &srcformat, &tmpformat, &plugin); snd_pcm_plug_format_plugins()
530 err = snd_pcm_plugin_build_copy(plug, snd_pcm_plug_format_plugins()
547 snd_pcm_sframes_t snd_pcm_plug_client_channels_buf(struct snd_pcm_substream *plug, snd_pcm_plug_client_channels_buf() argument
556 int stream = snd_pcm_plug_stream(plug); snd_pcm_plug_client_channels_buf()
561 plugin = snd_pcm_plug_first(plug); snd_pcm_plug_client_channels_buf()
564 plugin = snd_pcm_plug_last(plug); snd_pcm_plug_client_channels_buf()
586 snd_pcm_sframes_t snd_pcm_plug_write_transfer(struct snd_pcm_substream *plug, struct snd_pcm_plugin_channel *src_channels, snd_pcm_uframes_t size) snd_pcm_plug_write_transfer() argument
593 plugin = snd_pcm_plug_first(plug); snd_pcm_plug_write_transfer()
615 return snd_pcm_plug_client_size(plug, frames); snd_pcm_plug_write_transfer()
618 snd_pcm_sframes_t snd_pcm_plug_read_transfer(struct snd_pcm_substream *plug, struct snd_pcm_plugin_channel *dst_channels_final, snd_pcm_uframes_t size) snd_pcm_plug_read_transfer() argument
625 frames = snd_pcm_plug_slave_size(plug, frames); snd_pcm_plug_read_transfer()
630 plugin = snd_pcm_plug_first(plug); snd_pcm_plug_read_transfer()
H A Dpcm_plugin.h27 #define snd_pcm_plug_stream(plug) ((plug)->stream)
55 const char *name; /* plug-in name */
76 struct snd_pcm_substream *plug; member in struct:snd_pcm_plugin
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);
H A Dcopy.c61 int snd_pcm_plugin_build_copy(struct snd_pcm_substream *plug, snd_pcm_plugin_build_copy() argument
85 err = snd_pcm_plugin_build(plug, "copy", src_format, dst_format, snd_pcm_plugin_build_copy()
H A Droute.c85 int snd_pcm_plugin_build_route(struct snd_pcm_substream *plug, snd_pcm_plugin_build_route() argument
101 err = snd_pcm_plugin_build(plug, "route conversion", snd_pcm_plugin_build_route()
H A Dlinear.c147 int snd_pcm_plugin_build_linear(struct snd_pcm_substream *plug, snd_pcm_plugin_build_linear() argument
168 err = snd_pcm_plugin_build(plug, "linear format conversion", snd_pcm_plugin_build_linear()
H A Drate.c300 int snd_pcm_plugin_build_rate(struct snd_pcm_substream *plug, snd_pcm_plugin_build_rate() argument
324 err = snd_pcm_plugin_build(plug, "rate conversion", snd_pcm_plugin_build_rate()
H A Dmulaw.c298 int snd_pcm_plugin_build_mulaw(struct snd_pcm_substream *plug, snd_pcm_plugin_build_mulaw() argument
333 err = snd_pcm_plugin_build(plug, "Mu-Law<->linear conversion", snd_pcm_plugin_build_mulaw()
/linux-4.1.27/sound/firewire/
H A Dfcp.h19 unsigned short plug);
22 unsigned short plug);
H A Dcmp.h20 * computer and a device's input plug (iPCR) and output plug (oPCR).
H A Dcmp.c251 cmp_error(c, "plug is already in use\n"); pcr_set_check()
255 cmp_error(c, "plug is not on-line\n"); pcr_set_check()
269 * bandwidth) and setting the target's input/output plug control register.
379 * This function deactives the connection in the target's input/output plug
396 cmp_error(c, "plug is still connected\n"); cmp_connection_break()
H A Dfcp.c57 buf[3] = 0xff & pid; /* plug id */ avc_general_set_sig_fmt()
100 buf[3] = 0xff & pid; /* plug id */ avc_general_get_sig_fmt()
/linux-4.1.27/arch/powerpc/platforms/ps3/
H A Dinterrupt.c42 * @status: 256 bit status bitmap indexed by plug
44 * @mask: 256 bit mask bitmap indexed by plug
47 * The HV maintains per SMT thread mappings of HV outlet to HV plug on
49 * supplied bitmaps indexed by plug number. The addresses of the bitmaps
57 * implementation equates HV plug value to Linux virq value, constrains each
58 * interrupt to have a system wide unique plug number, and limits the range
59 * of the plug values to map into the first dword of the bitmaps. This
60 * gives a usable range of plug values of {NUM_ISA_INTERRUPTS..63}. Note
251 * Sets up virq and connects the irq plug.
294 * Disconnects the irq plug and tears down virq.
454 * ps3_event_receive_port_destroy() destroys the IRQ plug, ps3_sb_event_receive_port_destroy()
506 * lv1_destruct_io_irq_outlet() will destroy the IRQ plug, ps3_io_irq_destroy()
716 unsigned int plug; ps3_get_irq() local
723 asm volatile("cntlzd %0,%1" : "=r" (plug) : "r" (x)); ps3_get_irq()
724 plug &= 0x3f; ps3_get_irq()
726 if (unlikely(plug == NO_IRQ)) { ps3_get_irq()
727 DBG("%s:%d: no plug found: thread_id %llu\n", __func__, ps3_get_irq()
735 if (unlikely(plug < NUM_ISA_INTERRUPTS || plug > PS3_PLUG_MAX)) { ps3_get_irq()
744 if (test_bit(63 - plug, &pd->ipi_mask)) ps3_get_irq()
745 lv1_end_of_interrupt_ext(pd->ppe_id, pd->thread_id, plug); ps3_get_irq()
747 return plug; ps3_get_irq()
H A Dsetup.c76 * irq on an unmasked plug exists. MSR[EE] has no effect. ps3_power_save()
/linux-4.1.27/net/sched/
H A Dsch_plug.c10 * 1. A simple "instantaneous" plug/unplug operation, by issuing an alternating
50 * plug(i+1) plug(i) head
153 * TCQ_PLUG_BUFFER: Inset a plug into the queue and
156 * to beginning of the next plug.
212 .id = "plug",
/linux-4.1.27/fs/hpfs/
H A Dbuffer.c16 struct blk_plug plug; hpfs_prefetch_sectors() local
30 blk_start_plug(&plug); hpfs_prefetch_sectors()
38 blk_finish_plug(&plug); hpfs_prefetch_sectors()
/linux-4.1.27/sound/firewire/bebob/
H A Dbebob_stream.c166 * Let's check input for 'Music Sub Unit Sync Input' plug. snd_bebob_stream_check_internal_clock()
173 "fail to get an input for MSU in plug %d: %d\n", snd_bebob_stream_check_internal_clock()
226 "fail to get channel position for isoc %s plug 0: %d\n", map_data_channels()
248 "fail to get section type for isoc %s plug 0: %d\n", map_data_channels()
835 "fail to get stream format %d for isoc %s plug %d:%d\n", fill_stream_formations()
876 "fail to get type for MSU in plug %d: %d\n", seek_msu_sync_input_plug()
908 * This module supports at least one isoc input plug and one isoc snd_bebob_stream_discover()
909 * output plug. snd_bebob_stream_discover()
921 "fail to get type for isoc in plug 0: %d\n", err); snd_bebob_stream_discover()
936 "fail to get type for isoc out plug 0: %d\n", err); snd_bebob_stream_discover()
954 "fail to get type for external in plug %d: %d\n", snd_bebob_stream_discover()
970 "fail to get type for external out plug %d: %d\n", snd_bebob_stream_discover()
H A Dbebob_command.c28 buf[7] = 0xff & num; /* input function block plug number */ avc_audio_set_selector()
64 buf[7] = 0xff; /* input function block plug number */ avc_audio_get_selector()
117 /* Info type is 'plug type'. */ avc_bridgeco_get_plug_type()
218 /* Info type is 'plug input'. */ avc_bridgeco_get_plug_input()
H A Dbebob_maudio.c301 /* Input plug shows actual rate. Output plug is needless for this purpose. */ special_get_rate()
/linux-4.1.27/tools/firewire/
H A Ddecode-fcp.c84 [0x02] = { "plug info" },
93 [0x19] = { "input plug signal format" },
94 [0x18] = { "output plug signal format" },
/linux-4.1.27/sound/isa/sb/
H A Demu8000_synth.c6 * Emu8000 synth plug-in routine
29 MODULE_DESCRIPTION("Emu8000 synth plug-in routine");
H A Demu8000_pcm.c36 * type plug
/linux-4.1.27/block/
H A Dblk-core.c1530 struct blk_plug *plug; blk_attempt_plug_merge() local
1535 plug = current->plug; blk_attempt_plug_merge()
1536 if (!plug) blk_attempt_plug_merge()
1541 plug_list = &plug->mq_list; blk_attempt_plug_merge()
1543 plug_list = &plug->list; blk_attempt_plug_merge()
1586 struct blk_plug *plug; blk_queue_bio() local
1667 plug = current->plug; blk_queue_bio()
1668 if (plug) { blk_queue_bio()
1670 * If this is the first request added after a plug, fire blk_queue_bio()
1671 * of a plug trace. blk_queue_bio()
1677 blk_flush_plug_list(plug, false); blk_queue_bio()
1681 list_add_tail(&req->queuelist, &plug->list); blk_queue_bio()
3021 * @plug: The &struct blk_plug that needs to be initialized
3030 * plug. By flushing the pending I/O when the process goes to sleep, we avoid
3033 void blk_start_plug(struct blk_plug *plug) blk_start_plug() argument
3037 INIT_LIST_HEAD(&plug->list); blk_start_plug()
3038 INIT_LIST_HEAD(&plug->mq_list); blk_start_plug()
3039 INIT_LIST_HEAD(&plug->cb_list); blk_start_plug()
3042 * If this is a nested plug, don't actually assign it. It will be blk_start_plug()
3045 if (!tsk->plug) { blk_start_plug()
3050 tsk->plug = plug; blk_start_plug()
3083 static void flush_plug_callbacks(struct blk_plug *plug, bool from_schedule) flush_plug_callbacks() argument
3087 while (!list_empty(&plug->cb_list)) { flush_plug_callbacks()
3088 list_splice_init(&plug->cb_list, &callbacks); flush_plug_callbacks()
3103 struct blk_plug *plug = current->plug; blk_check_plugged() local
3106 if (!plug) blk_check_plugged()
3109 list_for_each_entry(cb, &plug->cb_list, list) blk_check_plugged()
3119 list_add(&cb->list, &plug->cb_list); blk_check_plugged()
3125 void blk_flush_plug_list(struct blk_plug *plug, bool from_schedule) blk_flush_plug_list() argument
3133 flush_plug_callbacks(plug, from_schedule); blk_flush_plug_list()
3135 if (!list_empty(&plug->mq_list)) blk_flush_plug_list()
3136 blk_mq_flush_plug_list(plug, from_schedule); blk_flush_plug_list()
3138 if (list_empty(&plug->list)) blk_flush_plug_list()
3141 list_splice_init(&plug->list, &list); blk_flush_plug_list()
3196 void blk_finish_plug(struct blk_plug *plug) blk_finish_plug() argument
3198 blk_flush_plug_list(plug, false); blk_finish_plug()
3200 if (plug == current->plug) blk_finish_plug()
3201 current->plug = NULL; blk_finish_plug()
H A Dblk-lib.c51 struct blk_plug plug; blkdev_issue_discard() local
84 blk_start_plug(&plug); blkdev_issue_discard()
131 blk_finish_plug(&plug); blkdev_issue_discard()
H A Dblk-mq.c1075 * preemption doesn't flush plug list, so it's possible ctx->cpu is blk_mq_insert_requests()
1103 void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule) blk_mq_flush_plug_list() argument
1112 list_splice_init(&plug->mq_list, &list); blk_mq_flush_plug_list()
1319 * plug for merging and IO deferral.
1357 * A task plug currently exists. Since this is completely lockless, blk_sq_make_request()
1362 struct blk_plug *plug = current->plug; blk_sq_make_request() local
1364 if (plug) { blk_sq_make_request()
1366 if (list_empty(&plug->mq_list)) blk_sq_make_request()
1369 blk_flush_plug_list(plug, false); blk_sq_make_request()
1372 list_add_tail(&rq->queuelist, &plug->mq_list); blk_sq_make_request()
H A Dblk-throttle.c1269 struct blk_plug plug; blk_throtl_dispatch_work_fn() local
1281 blk_start_plug(&plug); blk_throtl_dispatch_work_fn()
1284 blk_finish_plug(&plug); blk_throtl_dispatch_work_fn()
H A Delevator.c9 * one or even write a new "plug in". There are three pieces:
/linux-4.1.27/arch/ia64/include/asm/
H A Dnodedata.h51 * "local_node_data" at hot-plug phase. The local_node_data
/linux-4.1.27/drivers/staging/wlan-ng/
H A Dprism2fw.c340 netdev_err(wlandev->netdev, "Failed to plug data.\n"); prism2_fwapply()
644 * Plugs the given image using the given plug records from the given
650 * s3plug Array of plug records
651 * ns3plug Number of plug records
662 int i; /* plug index */ plugimage()
663 int j; /* index of PDR or -1 if fname plug */ plugimage()
672 /* for each plug record */ plugimage()
703 /* Validate plug len against PDR len */ plugimage()
711 /* Validate plug address against chunk data and identify chunk */ plugimage()
732 if (j == -1) { /* plug the filename */ plugimage()
735 } else { /* plug a PDR */ plugimage()
828 * a - Address in load image to plug (little endian)
829 * s - Length of plug data area (little endian)
847 * a - Address in load image to plug (little endian)
/linux-4.1.27/include/linux/
H A Dblkdev.h1086 * It is ok not to disable preemption when adding the request to the plug list blk_post_runtime_resume()
1088 * the plug list when the task sleeps by itself. For details, please see blk_post_runtime_resume()
1113 struct blk_plug *plug = tsk->plug; blk_flush_plug() local
1115 if (plug) blk_flush_plug()
1116 blk_flush_plug_list(plug, false); blk_flush_plug()
1121 struct blk_plug *plug = tsk->plug; blk_schedule_flush_plug() local
1123 if (plug) blk_schedule_flush_plug()
1124 blk_flush_plug_list(plug, true); blk_schedule_flush_plug()
1129 struct blk_plug *plug = tsk->plug; blk_needs_flush_plug() local
1131 return plug && blk_needs_flush_plug()
1132 (!list_empty(&plug->list) || blk_needs_flush_plug()
1133 !list_empty(&plug->mq_list) || blk_needs_flush_plug()
1134 !list_empty(&plug->cb_list)); blk_needs_flush_plug()
1643 static inline void blk_start_plug(struct blk_plug *plug) blk_start_plug() argument
1647 static inline void blk_finish_plug(struct blk_plug *plug) blk_finish_plug() argument
H A Dzorro.h59 void (*remove)(struct zorro_dev *z); /* Device removed (NULL if not a hot-plug capable driver) */
H A Dethtool.h200 * a plug-in module.
201 * @get_module_eeprom: Get the eeprom information from the plug-in module
H A Dnotifier.h187 * low memory chain, screenblank chain (for plug in modular screenblankers)
H A Dblk-mq.h176 void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule);
H A Ddio.h91 void (*remove)(struct dio_dev *z); /* Device removed (NULL if not a hot-plug capable driver) */
H A Dphy.h571 /* Get the size and type of the eeprom contained within a plug-in
576 /* Get the eeprom information from the plug-in module */
/linux-4.1.27/drivers/media/firewire/
H A 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);
H A Dfiredtv-avc.c425 c->operand[0] = 0; /* source plug */ avc_tuner_dsd_dvb_c()
493 c->operand[0] = 0; /* source plug */ avc_tuner_dsd_dvb_t()
641 c->operand[0] = 0; /* source plug */ avc_tuner_set_pids()
686 c->operand[0] = 0; /* source plug */ avc_tuner_get_ts()
1371 int cmp_establish_pp_connection(struct firedtv *fdtv, int plug, int channel) cmp_establish_pp_connection() argument
1374 u64 opcr_address = CMP_OUTPUT_PLUG_CONTROL_REG_0 + (plug << 2); cmp_establish_pp_connection()
1431 void cmp_break_pp_connection(struct firedtv *fdtv, int plug, int channel) cmp_break_pp_connection() argument
1434 u64 opcr_address = CMP_OUTPUT_PLUG_CONTROL_REG_0 + (plug << 2); cmp_break_pp_connection()
/linux-4.1.27/arch/arm/mach-footbridge/
H A Dcommon.c122 * you plug the Southbridge card into. We footbridge_init_irq()
123 * currently assume that you plug it into footbridge_init_irq()
/linux-4.1.27/drivers/gpu/drm/sti/
H A Dsti_hdmi.h43 * @hpd: hot plug detect status
H A Dsti_hdmi.c145 /* Hot plug/unplug IRQ */ hdmi_irq_thread()
H A Dsti_hqvdp.c326 * @vid_plane: VID plug used as link with compositor IP
/linux-4.1.27/drivers/staging/sm750fb/
H A Dddk750_sii164.c319 * This function selects the mode of the hot plug detection.
362 /* Depending on each DVI controller, need to enable the hot plug based on each sii164EnableHotPlugDetection()
410 * Clear the hot plug interrupt.
/linux-4.1.27/fs/btrfs/
H A Draid56.c99 * plug list is used by the plugging code
644 * The rbio is added to the lock owner's plug list, or merged into
645 * an rbio already on the plug list. When the lock owner unlocks,
716 /* no merging, put us on the tail of the plug list, lock_stripe_add()
739 * called as rmw or parity rebuild is completed. If the plug list has more
776 * we use the plug list to hold all the rbios unlock_stripe()
1654 * rbios on the plug list are sorted for easier merging.
1672 static void run_plug(struct btrfs_plug_cb *plug) run_plug() argument
1678 * sort our plug list then try to merge run_plug()
1682 list_sort(NULL, &plug->rbio_list, plug_cmp); run_plug()
1683 while (!list_empty(&plug->rbio_list)) { run_plug()
1684 cur = list_entry(plug->rbio_list.next, run_plug()
1707 kfree(plug); run_plug()
1716 struct btrfs_plug_cb *plug; unplug_work() local
1717 plug = container_of(work, struct btrfs_plug_cb, work); unplug_work()
1718 run_plug(plug); unplug_work()
1723 struct btrfs_plug_cb *plug; btrfs_raid_unplug() local
1724 plug = container_of(cb, struct btrfs_plug_cb, cb); btrfs_raid_unplug()
1727 btrfs_init_work(&plug->work, btrfs_rmw_helper, btrfs_raid_unplug()
1729 btrfs_queue_work(plug->info->rmw_workers, btrfs_raid_unplug()
1730 &plug->work); btrfs_raid_unplug()
1733 run_plug(plug); btrfs_raid_unplug()
1743 struct btrfs_plug_cb *plug = NULL; raid56_parity_write() local
1760 * don't plug on full rbios, just get them out the door raid56_parity_write()
1771 sizeof(*plug)); raid56_parity_write()
1773 plug = container_of(cb, struct btrfs_plug_cb, cb); raid56_parity_write()
1774 if (!plug->info) { raid56_parity_write()
1775 plug->info = root->fs_info; raid56_parity_write()
1776 INIT_LIST_HEAD(&plug->rbio_list); raid56_parity_write()
1778 list_add_tail(&rbio->plug_list, &plug->rbio_list); raid56_parity_write()
H A Dtree-log.c2634 struct blk_plug plug; btrfs_sync_log() local
2686 blk_start_plug(&plug); btrfs_sync_log()
2689 blk_finish_plug(&plug); btrfs_sync_log()
2734 blk_finish_plug(&plug); btrfs_sync_log()
2750 blk_finish_plug(&plug); btrfs_sync_log()
2758 blk_finish_plug(&plug); btrfs_sync_log()
2784 blk_finish_plug(&plug); btrfs_sync_log()
2795 blk_finish_plug(&plug); btrfs_sync_log()
H A Dvolumes.c265 struct blk_plug plug; run_scheduled_bios() local
271 * So, setup a plug here and finish it off before we return run_scheduled_bios()
273 blk_start_plug(&plug); run_scheduled_bios()
353 * plug has some sync requests on it run_scheduled_bios()
362 blk_finish_plug(&plug); run_scheduled_bios()
363 blk_start_plug(&plug); run_scheduled_bios()
418 blk_finish_plug(&plug); run_scheduled_bios()
419 blk_start_plug(&plug); run_scheduled_bios()
434 blk_finish_plug(&plug); run_scheduled_bios()
H A Dtransaction.c987 struct blk_plug plug; btrfs_write_and_wait_marked_extents() local
989 blk_start_plug(&plug); btrfs_write_and_wait_marked_extents()
991 blk_finish_plug(&plug); btrfs_write_and_wait_marked_extents()
/linux-4.1.27/drivers/usb/musb/
H A Dblackfin.c222 /* Start sampling ID pin, when plug is removed from MUSB */ blackfin_interrupt()
274 * some time to recognize the type of the plug inserted? musb_conn_timer_handler()
296 * the inserting of either A-plug or B-plug. musb_conn_timer_handler()
310 * shortening it, if accelerating A-plug detection musb_conn_timer_handler()
/linux-4.1.27/drivers/usb/serial/
H A Dftdi_sio_ids.h887 #define RTSYSTEMS_USB_59_PID 0x9e50 /* USB-59 USB to 8 pin plug */
888 #define RTSYSTEMS_USB_57A_PID 0x9e51 /* USB-57A USB to 4pin 3.5mm plug */
889 #define RTSYSTEMS_USB_57B_PID 0x9e52 /* USB-57B USB to extended 4pin 3.5mm plug */
890 #define RTSYSTEMS_USB_29A_PID 0x9e53 /* USB-29A USB to 3.5mm stereo plug */
892 #define RTSYSTEMS_USB_29F_PID 0x9e55 /* USB-29F USB to 6 pin modular plug */
893 #define RTSYSTEMS_USB_62B_PID 0x9e56 /* USB-62B USB to 8 pin mini din plug*/
894 #define RTSYSTEMS_USB_S01_PID 0x9e57 /* USB-RTS01 USB to 3.5 mm stereo plug*/
896 #define RTSYSTEMS_USB_29C_PID 0x9e59 /* USB-29C USB to 4 pin modular plug*/
897 #define RTSYSTEMS_USB_81B_PID 0x9e5A /* USB-81 USB to 8 pin mini din plug*/
898 #define RTSYSTEMS_USB_82B_PID 0x9e5B /* USB-82 USB to 2.5 mm stereo plug*/
899 #define RTSYSTEMS_USB_K5D_PID 0x9e5C /* USB-K5D USB to 8 pin modular plug*/
901 #define RTSYSTEMS_USB_K5G_PID 0x9e5E /* USB-K5G USB to 8 pin modular plug*/
902 #define RTSYSTEMS_USB_S05_PID 0x9e5F /* USB-RTS05 USB to 2.5 mm stereo plug*/
909 #define RTSYSTEMS_USB_92_PID 0x9e66 /* USB-92 USB to 12 pin plug*/
910 #define RTSYSTEMS_USB_92D_PID 0x9e67 /* USB-92D USB to 12 pin plug data*/
911 #define RTSYSTEMS_USB_W5R_PID 0x9e68 /* USB-W5R USB to 8 pin modular plug*/
912 #define RTSYSTEMS_USB_A5R_PID 0x9e69 /* USB-A5R USB to 8 pin modular plug*/
913 #define RTSYSTEMS_USB_PW1_PID 0x9e6A /* USB-PW1 USB to 8 pin modular plug*/
/linux-4.1.27/fs/nfs/blocklayout/
H A Dblocklayout.c237 struct blk_plug plug; bl_read_pagelist() local
249 blk_start_plug(&plug); bl_read_pagelist()
314 blk_finish_plug(&plug); bl_read_pagelist()
383 struct blk_plug plug; bl_write_pagelist() local
397 blk_start_plug(&plug); bl_write_pagelist()
436 blk_finish_plug(&plug); bl_write_pagelist()
/linux-4.1.27/drivers/thunderbolt/
H A Dtb.c16 /* enumeration & hot plug handling */
259 "got plug event for connected port, ignoring\n"); tb_handle_hotplug()
345 * plug events and activates pci devices.
H A Dtb.h106 struct workqueue_struct *wq; /* ordered workqueue for plug events */
110 * tb_handle_hotplug will stop progressing plug
H A Dtb_regs.h135 * RW, pause between plug events in
H A Dctl.c367 * tb_ctl_handle_plug_event() - acknowledge a plug event, invoke ctl->callback
381 tb_ctl_warn(ctl, "could not ack plug event on %llx:%x\n", tb_ctl_handle_plug_event()
470 * cb will be invoked once for every hot plug event.
H A Dswitch.c129 * After plug-in the state is TB_PORT_CONNECTING. Give it some tb_wait_for_port()
273 * tb_plug_events_active() - enable/disable plug events on a switch
/linux-4.1.27/drivers/net/wireless/orinoco/
H A Dhermes_dld.c72 * block. They refer to areas in the adapter memory where the plug data
90 char data[0]; /* plug data */
194 /* Process one Plug Data Item - find corresponding PDR and plug it */
236 /* Go through every PDI and plug them into the adapter */ hermes_apply_pda()
H A Dfw.c50 __le32 pri_offset; /* Offset to primary plug data */
125 /* Read current plug data */ orinoco_dl_firmware()
/linux-4.1.27/drivers/staging/unisys/virtpci/
H A Dvirtpci.h85 * not a hot-plug capable
/linux-4.1.27/drivers/pci/hotplug/
H A Dshpchp_sysfs.c36 /* A few routines that create sysfs entries for the hot plug controller */
H A Dcpqphp_nvram.c198 * Read the hot plug Resource Table from NVRAM
233 * Save the hot plug Resource Table in NVRAM
634 * hot plug add compaq_nvram_load()
H A Dcpqphp_pci.c300 * Note: For non-hot plug buses, the slot # saved is the device #
548 * specified slot. this is for hot plug REPLACE
685 * this function is for hot plug ADD
948 * this is for hot plug REPLACE!
1168 * this function is for hot plug ADD!
1402 * hot plug add cpqhp_find_available_resources()
H A Dcpqphp_core.c310 /* Free IRQ associated with hot plug device */ ctrl_slot_cleanup()
1059 info("Initializing the PCI hot plug controller residing on PCI bus %d\n", cpqhpc_probe()
1134 /* find the physical slot number of the first hot plug slot */ cpqhpc_probe()
1176 err("unable to locate PCI configuration resources for hot plug add.\n"); cpqhpc_probe()
1181 * Finish setting up the hot plug ctrl device cpqhpc_probe()
H A Dcpqphp.h396 #define msg_HPC_rev_error "Unsupported revision of the PCI hot plug controller found.\n"
397 #define msg_HPC_non_compaq_or_intel "The PCI hot plug controller is not supported by this driver.\n"
399 #define msg_unable_to_save "unable to store PCI hot plug add resource information. This system must be rebooted before adding any PCI devices.\n"
H A Dacpi_pcihp.c2 * Common ACPI functions for hot plug platforms
H A Dpciehp_hpc.c298 * hot-plug capable downstream port. But old controller might pciehp_check_link_status()
661 * not seen as a hot-unplug, followed by the hot-plug of the device. Thus,
H A Dpciehp_core.c59 MODULE_PARM_DESC(pciehp_poll_mode, "Using polling mechanism for hot-plug events or not");
H A Dshpchp_core.c55 MODULE_PARM_DESC(shpchp_poll_mode, "Using polling mechanism for hot-plug events or not");
H A Dibmphp_ebda.c42 * BIOS Data Area which describe the configuration of the hot-plug
47 * already assigned by POST, as well as linked lists about hot plug
739 * each hpc from physical address to a list of hot plug controllers based on
H A Dcpqphp_ctrl.c1344 /* Wait for ~1 second because of hot plug spec */ board_replaced()
1507 /* Wait for ~1 second because of hot plug spec */ board_added()
2181 * For hot plug ctrl folks to play with.
/linux-4.1.27/arch/tile/kernel/
H A Dpci.c155 /* Re-init number of PCIe controllers to support hot-plug feature. */ tile_pci_init()
163 * the results of pcibios_init(), to support PCIe hot-plug. tile_pci_init()
293 * pcibios_init() yet to support PCIe hot-plug. pcibios_init()
335 * pcibios_init() yet to support PCIe hot-plug. pcibios_init()
H A Dhead_64.S68 * to plug in the pointer from the L0 to the L1 table by hand.
/linux-4.1.27/arch/parisc/include/asm/
H A Dsuperio.h64 * Does NS make a 87415 based plug in PCI card? If so, because of this
/linux-4.1.27/drivers/md/
H A Draid1.c1043 struct raid1_plug_cb *plug = container_of(cb, struct raid1_plug_cb, raid1_unplug() local
1045 struct mddev *mddev = plug->cb.data; raid1_unplug()
1051 bio_list_merge(&conf->pending_bio_list, &plug->pending); raid1_unplug()
1052 conf->pending_count += plug->pending_cnt; raid1_unplug()
1056 kfree(plug); raid1_unplug()
1061 bio = bio_list_get(&plug->pending); raid1_unplug()
1076 kfree(plug); raid1_unplug()
1096 struct raid1_plug_cb *plug = NULL; make_request() local
1417 cb = blk_check_plugged(raid1_unplug, mddev, sizeof(*plug)); make_request()
1419 plug = container_of(cb, struct raid1_plug_cb, cb); make_request()
1421 plug = NULL; make_request()
1423 if (plug) { make_request()
1424 bio_list_add(&plug->pending, mbio); make_request()
1425 plug->pending_cnt++; make_request()
1431 if (!plug) make_request()
2416 struct blk_plug plug; raid1d() local
2420 blk_start_plug(&plug); raid1d()
2458 blk_finish_plug(&plug); raid1d()
H A Ddm-bufio.c709 struct blk_plug plug; __flush_write_list() local
710 blk_start_plug(&plug); __flush_write_list()
718 blk_finish_plug(&plug); __flush_write_list()
1113 struct blk_plug plug; dm_bufio_prefetch() local
1119 blk_start_plug(&plug); dm_bufio_prefetch()
1129 blk_finish_plug(&plug); dm_bufio_prefetch()
1131 blk_start_plug(&plug); dm_bufio_prefetch()
1152 blk_finish_plug(&plug); dm_bufio_prefetch()
H A Ddm-kcopyd.c583 struct blk_plug plug; do_work() local
592 blk_start_plug(&plug); do_work()
596 blk_finish_plug(&plug); do_work()
H A Draid10.c1108 struct raid10_plug_cb *plug = container_of(cb, struct raid10_plug_cb, raid10_unplug() local
1110 struct mddev *mddev = plug->cb.data; raid10_unplug()
1116 bio_list_merge(&conf->pending_bio_list, &plug->pending); raid10_unplug()
1117 conf->pending_count += plug->pending_cnt; raid10_unplug()
1121 kfree(plug); raid10_unplug()
1126 bio = bio_list_get(&plug->pending); raid10_unplug()
1141 kfree(plug); raid10_unplug()
1159 struct raid10_plug_cb *plug = NULL; __make_request() local
1464 sizeof(*plug)); __make_request()
1466 plug = container_of(cb, struct raid10_plug_cb, __make_request()
1469 plug = NULL; __make_request()
1471 if (plug) { __make_request()
1472 bio_list_add(&plug->pending, mbio); __make_request()
1473 plug->pending_cnt++; __make_request()
1479 if (!plug) __make_request()
2794 struct blk_plug plug; raid10d() local
2798 blk_start_plug(&plug); raid10d()
2838 blk_finish_plug(&plug); raid10d()
H A Ddm-crypt.c1183 struct blk_plug plug; dmcrypt_write() local
1222 blk_start_plug(&plug); dmcrypt_write()
1228 blk_finish_plug(&plug); dmcrypt_write()
H A Ddm-thin.c69 * i) plug io further to this physical block. (see bio_prison code).
1779 struct blk_plug plug; process_thin_deferred_bios() local
1803 blk_start_plug(&plug); process_thin_deferred_bios()
1828 blk_finish_plug(&plug); process_thin_deferred_bios()
/linux-4.1.27/mm/
H A Dmadvise.c466 struct blk_plug plug; SYSCALL_DEFINE3() local
506 blk_start_plug(&plug); SYSCALL_DEFINE3()
542 blk_finish_plug(&plug); SYSCALL_DEFINE3()
H A Dswap_state.c458 struct blk_plug plug; swapin_readahead() local
470 blk_start_plug(&plug); swapin_readahead()
481 blk_finish_plug(&plug); swapin_readahead()
H A Dreadahead.c114 struct blk_plug plug; read_pages() local
118 blk_start_plug(&plug); read_pages()
139 blk_finish_plug(&plug); read_pages()
H A Dsparse.c773 * Check to see if allocation came from hot-plug-add free_section_usemap()
H A Dpage-writeback.c2014 struct blk_plug plug; generic_writepages() local
2021 blk_start_plug(&plug); generic_writepages()
2023 blk_finish_plug(&plug); generic_writepages()
/linux-4.1.27/sound/firewire/oxfw/
H A Doxfw-stream.c497 "fail to get current stream format for isoc %s plug %d:%d\n", assume_stream_formats()
572 "fail to get stream format %d for isoc %s plug %d:%d\n", fill_stream_formats()
608 "fail to get stream format %d for isoc %s plug %d:%d\n", fill_stream_formats()
H A Doxfw-command.c133 buf[3] = 0xff & pid; /* plug id */ avc_general_inquiry_sig_fmt()
/linux-4.1.27/drivers/misc/mic/card/
H A Dmic_device.h72 * @hotplug_work: Hot plug work for adding/removing virtio devices.
H A Dmic_virtio.c582 * Interrupt handler for hot plug/config changes etc.
/linux-4.1.27/drivers/staging/comedi/drivers/
H A Dni_labpc.c36 * Kernel-level ISA plug-and-play support for the lab-pc-1200 boards
H A Ddaqboard2000.c37 pinouts, plug and pray has something to catch up with yet).
/linux-4.1.27/drivers/video/fbdev/matrox/
H A Di2c-matroxfb.c177 printk(KERN_INFO "i2c-matroxfb: VGA->TV plug detected, DDC unavailable.\n"); i2c_matroxfb_probe()
/linux-4.1.27/drivers/pnp/
H A Dcore.c27 * skip some blind probes. ISAPNP typically enumerates only plug-in ISA
/linux-4.1.27/include/uapi/linux/
H A Dpmu.h112 PMU_PWR_WAKEUP_AC_INSERT = 0x02, /* Wake on AC adapter plug */
H A Dpkt_sched.h146 /* TCQ_PLUG_BUFFER: Inset a plug into the queue and
149 * to beginning of the next plug.
H A Dethtool.h1183 #define ETHTOOL_GMODULEINFO 0x00000042 /* Get plug-in module information */
1184 #define ETHTOOL_GMODULEEEPROM 0x00000043 /* Get plug-in module eeprom */
1361 /* EEPROM Standards for plug in modules */
/linux-4.1.27/arch/powerpc/platforms/pseries/
H A Dpci.c84 * someone tries to plug in a similar adapter.
/linux-4.1.27/drivers/xen/
H A Dxen-acpi-cpuhotplug.c146 * _STA is mandatory for a processor that supports hot plug is_processor_present()
149 pr_info(PREFIX "Processor does not support hot plug\n"); is_processor_present()
/linux-4.1.27/fs/jbd/
H A Dcommit.c314 struct blk_plug plug; journal_commit_transaction() local
447 blk_start_plug(&plug); journal_commit_transaction()
450 blk_finish_plug(&plug); journal_commit_transaction()
506 blk_start_plug(&plug); journal_commit_transaction()
700 blk_finish_plug(&plug); journal_commit_transaction()
H A Dcheckpoint.c261 struct blk_plug plug; __flush_batch() local
263 blk_start_plug(&plug); __flush_batch()
266 blk_finish_plug(&plug); __flush_batch()
/linux-4.1.27/drivers/isdn/hardware/eicon/
H A Ddivasync.h319 * IDI_SYNC_REQ_PORTDRV_HOOK - signal plug/unplug (Award Cardware only)
328 PORTDRV_HOOK_CB Callback; /* to be called on plug/unplug */
342 SLIENTRYPOINT Callback; /* to be called on plug/unplug */
H A Dcardtype.h249 unsigned short PnPId; /* plug and play ID (for non PCMIA cards) */
273 /* test if the card of type 't' is a plug & play card */
/linux-4.1.27/drivers/target/
H A Dtarget_core_iblock.c364 struct blk_plug plug; iblock_submit_bios() local
367 blk_start_plug(&plug); iblock_submit_bios()
370 blk_finish_plug(&plug); iblock_submit_bios()
/linux-4.1.27/drivers/input/keyboard/
H A Dlkkbd.c23 * Pin numbers for DE9 and DB25 are noted on the plug (quite small:). For
26 * __=__ Hold the plug in front of you, cable downwards,
27 * /___/| nose is hidden behind the plug. Now, pin 1 is at
/linux-4.1.27/fs/xfs/
H A Dxfs_dir2_readdir.c278 struct blk_plug plug; xfs_dir2_leaf_readbuf() local
407 blk_start_plug(&plug); xfs_dir2_leaf_readbuf()
458 blk_finish_plug(&plug); xfs_dir2_leaf_readbuf()
H A Dxfs_itable.c182 struct blk_plug plug; xfs_bulkstat_ichunk_ra() local
191 blk_start_plug(&plug); xfs_bulkstat_ichunk_ra()
199 blk_finish_plug(&plug); xfs_bulkstat_ichunk_ra()
H A Dxfs_buf.c1218 struct blk_plug plug; _xfs_buf_ioapply() local
1291 blk_start_plug(&plug); _xfs_buf_ioapply()
1299 blk_finish_plug(&plug); _xfs_buf_ioapply()
1792 struct blk_plug plug; __xfs_buf_delwri_submit() local
1826 blk_start_plug(&plug); list_for_each_entry_safe()
1843 blk_finish_plug(&plug);
/linux-4.1.27/fs/jbd2/
H A Dcheckpoint.c185 struct blk_plug plug; __flush_batch() local
187 blk_start_plug(&plug); __flush_batch()
190 blk_finish_plug(&plug); __flush_batch()
H A Dcommit.c393 struct blk_plug plug; jbd2_journal_commit_transaction() local
558 blk_start_plug(&plug); jbd2_journal_commit_transaction()
808 blk_finish_plug(&plug); jbd2_journal_commit_transaction()
/linux-4.1.27/fs/
H A Dmpage.c679 struct blk_plug plug; mpage_writepages() local
682 blk_start_plug(&plug); mpage_writepages()
698 blk_finish_plug(&plug); mpage_writepages()
H A Daio.c1569 struct blk_plug plug; do_io_submit() local
1586 blk_start_plug(&plug); do_io_submit()
1610 blk_finish_plug(&plug); do_io_submit()
H A Ddirect-io.c1112 struct blk_plug plug; do_blockdev_direct_IO() local
1242 blk_start_plug(&plug); do_blockdev_direct_IO()
1273 blk_finish_plug(&plug); do_blockdev_direct_IO()
H A Dblock_dev.c1608 struct blk_plug plug; blkdev_write_iter() local
1622 blk_start_plug(&plug); blkdev_write_iter()
1630 blk_finish_plug(&plug); blkdev_write_iter()
/linux-4.1.27/fs/ext4/
H A Dfile.c96 struct blk_plug plug; ext4_file_write_iter() local
138 blk_start_plug(&plug); ext4_file_write_iter()
181 blk_finish_plug(&plug); ext4_file_write_iter()
H A Dinode.c2428 struct blk_plug plug; ext4_writepages() local
2442 struct blk_plug plug; ext4_writepages() local
2444 blk_start_plug(&plug); ext4_writepages()
2446 blk_finish_plug(&plug); ext4_writepages()
2512 blk_start_plug(&plug); ext4_writepages()
2582 blk_finish_plug(&plug); ext4_writepages()
/linux-4.1.27/fs/f2fs/
H A Dgc.c664 struct blk_plug plug; do_garbage_collect() local
669 blk_start_plug(&plug); do_garbage_collect()
681 blk_finish_plug(&plug); do_garbage_collect()
H A Dcheckpoint.c813 struct blk_plug plug; block_operations() local
816 blk_start_plug(&plug); block_operations()
849 blk_finish_plug(&plug); block_operations()
H A Dnode.c1077 struct blk_plug plug; get_node_page_ra() local
1097 blk_start_plug(&plug); get_node_page_ra()
1109 blk_finish_plug(&plug); get_node_page_ra()
/linux-4.1.27/drivers/ide/
H A Dalim15x3.c43 * ALi devices are not plug in. Otherwise these static values would
531 * hot plug layer.
H A Dide-io.c438 /* Use 3ms as that was the old plug delay */ __ide_requeue_and_plug()
463 unsigned long queue_run_ms = 3; /* old plug delay */ do_ide_request()
H A Dsetup-pci.c132 * the DMA end. This has to be become dynamic to handle hot-plug. ide_pci_check_simplex()
/linux-4.1.27/drivers/scsi/mvsas/
H A Dmv_defs.h401 PHY_PLUG_IN = (1U << 0), /* phy plug in */
402 PHY_PLUG_OUT = (1U << 1), /* phy plug out */
H A Dmv_sas.c2026 mv_dprintk("notify plug in on phy[%d]\n", phy_no); mvs_int_port()
2044 /* whether driver is going to handle hot plug */ mvs_int_port()
/linux-4.1.27/drivers/pci/pcie/
H A Dportdrv_core.c282 * Disable hot-plug interrupts in case they have been get_port_device_capability()
283 * enabled by the BIOS and the hot-plug service driver get_port_device_capability()
/linux-4.1.27/drivers/input/mouse/
H A Dvsxxxaa.c38 * a quite uncommon plug and the requirement to additionally get a power
41 * If you look at the socket/jack (_not_ at the plug), we use this pin
/linux-4.1.27/drivers/gpu/drm/radeon/
H A Dradeon_irq_kms.c68 * This is the hot plug event work handler (all asics).
70 * was a hot plug interrupt. It walks the connector table
/linux-4.1.27/drivers/usb/wusbcore/
H A Drh.c214 /* FIXME: maybe plug bit 0 to the power input status, wusbhc_rh_clear_hub_feat()
236 /* FIXME: maybe plug bit 0 to the power input status (if any)? */ wusbhc_rh_get_hub_status()
H A Dcbaf.c28 * time you plug the device with a cable, association is done between
/linux-4.1.27/sound/pci/emu10k1/
H A Demu10k1_callback.c173 /* Problem apparent on plug, unplug then plug */ free_voice()
/linux-4.1.27/drivers/scsi/lpfc/
H A Dlpfc_bsg.h64 #define EXTERNAL_LOOP_BACK 0x2 /* requires an external loopback plug */
/linux-4.1.27/drivers/staging/unisys/common-spar/include/
H A Dvbusdeviceinfo.h133 /* plug in the decimal ascii string representing the number, by */ vbuschannel_itoa()
/linux-4.1.27/drivers/extcon/
H A Dextcon-palmas.c138 /* cold plug for host mode needs this delay */ palmas_enable_irq()
/linux-4.1.27/arch/sparc/include/asm/
H A Dleon_amba.h255 #define GAISLER_PLUGPLAY 0xfff /* internal device: plug & play configarea */
/linux-4.1.27/drivers/ata/
H A Dsata_promise.c988 /* check for a plug or unplug event */ pdc_interrupt()
1153 /* clear plug/unplug flags for all ports */ pdc_host_init()
1158 if (is_gen2) /* unmask plug/unplug ints */ pdc_host_init()
1160 else /* mask plug/unplug ints */ pdc_host_init()
H A Dahci_imx.c74 MODULE_PARM_DESC(hotplug, "AHCI IMX hot-plug support (0=Don't support, 1=support)");
H A Dsata_sil.c559 /* plug IRQ */ sil_freeze()
H A Dlibata-pmp.c325 "hotplug won't work on fan-out ports. Use warm-plug instead.\n"); sata_pmp_configure()
H A Dsata_sil24.c619 /* temporarily plug completion and error interrupts */ sil24_exec_polled_cmd()
/linux-4.1.27/drivers/usb/misc/
H A Dusb_u132.h47 * hot plug system when the U132 adapter is plugged in. The module
/linux-4.1.27/arch/arm64/include/asm/
H A Duaccess.h248 else /* security hole - plug it */ copy_from_user()
/linux-4.1.27/arch/arm/mach-s3c24xx/
H A Dmach-anubis.c173 * Note, there is no current hot-plug support for the External
H A Dmach-osiris.c186 * Note, there is no current hot-plug support for the External
H A Dmach-bast.c238 * Note, there is no current hot-plug support for the SmartMedia
/linux-4.1.27/arch/arm/mach-gemini/include/mach/
H A Dglobal_reg.h226 #define USB1_PLUG_MINIB (1 << 30) /* else plug is mini-A */
/linux-4.1.27/sound/pci/pcxhr/
H A Dpcxhr.h97 unsigned int board_has_aes1:1; /* if 1 board has AES1 plug and SRC */
H A Dpcxhr_mixer.c599 reg = mask; /* audio source from digital plug */ pcxhr_set_audio_source()
601 reg = 0; /* audio source from analog plug */ pcxhr_set_audio_source()
874 /* instead of CS8420_01_CS use CS8416_01_CS for AES SYNC plug */ pcxhr_iec958_capture_byte()
892 /* instead of CS8420_CSB0 use CS8416_CSBx for AES SYNC plug */ pcxhr_iec958_capture_byte()
H A Dpcxhr_mix22.c604 /* get data from the AES1 plug */ hr222_set_audio_source()
/linux-4.1.27/sound/soc/codecs/
H A Dts3a227e.c193 /* Check for plug/unplug. */ ts3a227e_interrupt()
/linux-4.1.27/drivers/video/fbdev/
H A Dsh_mobile_hdmi.c184 #define HDMI_HOT_PLUG_MSENS_STATUS 0xDF /* Hot plug/MSENS status */
278 enum hotplug_state hp_state; /* hot-plug status */
1065 /* Check, if hot plug & MSENS pin status are both high */ sh_hdmi_hotplug()
1067 /* Display plug in */ sh_hdmi_hotplug()
1112 * HDMI_HOTPLUG_CONNECTED: on monitor plug-in sh_hdmi_display_on()
/linux-4.1.27/drivers/net/ethernet/chelsio/cxgb3/
H A Dael1002.c469 /* modules have max 300 ms init time after hot plug */ ael2005_intr_handler()
775 /* modules have max 300 ms init time after hot plug */ ael2020_intr_handler()
/linux-4.1.27/drivers/power/
H A D88pm860x_charger.c502 * plug in/out usb, So we can not rely on info->online, we pm860x_done_handler()
505 * automatically or it is triggered by usb plug out; pm860x_done_handler()
/linux-4.1.27/drivers/media/platform/s5p-tv/
H A Dsdo_drv.c62 /** regulator for SDO plug detection */
H A Dhdmi_drv.c163 /* clearing flags for HPD plug/unplug */ hdmi_irq_handler()
/linux-4.1.27/drivers/staging/fwserial/
H A Dfwserial.h159 /* 1 min. plug timeout -- suitable for userland authorization */
H A Dfwserial.c2540 * guid values; the loser sends the plug response.
2704 fwtty_err(&peer->unit, "plug req: busy\n"); fwserial_parse_mgmt_write()
2719 fwtty_notice(&peer->unit, "NACK plug rsp\n"); fwserial_parse_mgmt_write()
/linux-4.1.27/drivers/staging/xgifb/
H A DXGI_main.h64 /* PR: Tv plug type (for overriding autodetection) */
/linux-4.1.27/drivers/gpu/drm/msm/hdmi/
H A Dhdmi_phy_8960.c42 * To get the parent clock setup properly, we need to plug in hdmi pll
/linux-4.1.27/drivers/watchdog/
H A Dsc1200wdt.c77 static int io_len = 2; /* for non plug and play */
/linux-4.1.27/sound/pci/ca0106/
H A Dca0106_proc.c23 * Enable playback 48000 and 96000 rates. (Rates other that these do not work, even with "plug:front".)
H A Dca0106.h23 * Enable playback 48000 and 96000 rates. (Rates other that these do not work, even with "plug:front".)
234 /* A standard 2 pole mono mini-jack to RCA plug can be used for SPDIF Stereo PCM output from the Front channel.
H A Dca0106_mixer.c23 * Enable playback 48000 and 96000 rates. (Rates other that these do not work, even with "plug:front".)
/linux-4.1.27/tools/power/cpupower/utils/idle_monitor/
H A Dcpupower-monitor.c191 * It's up to the monitor plug-in to check .is_online, this one print_results()
/linux-4.1.27/drivers/scsi/aic94xx/
H A Daic94xx_scb.c113 /* hot plug SATA, no COMWAKE sent */ asd_phy_event_tasklet()
692 ASD_DPRINTK("%s: phy%d: hot plug or device present\n", control_phy_tasklet_complete()
789 /* decide hot plug delay */ asd_build_control_phy()
/linux-4.1.27/fs/gfs2/
H A Dlog.c149 struct blk_plug plug; gfs2_ail1_flush() local
152 blk_start_plug(&plug); gfs2_ail1_flush()
162 blk_finish_plug(&plug);
/linux-4.1.27/sound/ppc/
H A Dtumbler.c21 * * update from shadow registers on wakeup and headphone plug
22 * * automatically toggle DRC on headphone plug
1046 /* interrupt - headphone plug changed */ headphone_intr()
/linux-4.1.27/drivers/block/xen-blkback/
H A Dblkback.c1199 struct blk_plug plug; dispatch_rw_block_io() local
1358 blk_start_plug(&plug); dispatch_rw_block_io()
1364 blk_finish_plug(&plug); dispatch_rw_block_io()
/linux-4.1.27/drivers/scsi/bnx2i/
H A Dbnx2i_init.c278 * called from either cnic_register_driver() or device hot plug context and
/linux-4.1.27/drivers/scsi/isci/
H A Dphy.h72 * recognize a hot plug after OOB signal but before the SN signals. We need to
/linux-4.1.27/drivers/usb/renesas_usbhs/
H A Dcommon.c669 * manual call notify_hotplug for cold plug usbhs_probe()
/linux-4.1.27/drivers/uwb/
H A Dlc-dev.c431 /* plug the beacon cache */ uwbd_dev_onair()
/linux-4.1.27/arch/m68k/include/asm/
H A Dmac_via.h161 * 0=plug is inserted. On SE/30, always 0 */
/linux-4.1.27/arch/arm/include/asm/
H A Duaccess.h492 else /* security hole - plug it */ copy_from_user()
/linux-4.1.27/sound/
H A Dsound_core.c85 * plug into this. The fact they don't all go via OSS doesn't mean
/linux-4.1.27/drivers/scsi/
H A Dgdth.h881 u8 lock; /* drive locked? (hot plug) */
893 u8 lock; /* channel locked? (hot plug) */
/linux-4.1.27/arch/tile/include/hv/
H A Ddrv_mpipe_intf.h501 * This requires that an external loopback plug be installed on the
504 * external loopack with the plug and no special configuration. */
/linux-4.1.27/drivers/net/ethernet/
H A Djme.c53 "Enable pseudo hot-plug feature manually by driver instead of BIOS.");
55 MODULE_PARM_DESC(no_pseudohp, "Disable pseudo hot-plug feature.");
58 "Do not use external plug signal for pseudo hot-plug.");
/linux-4.1.27/drivers/net/irda/
H A Dkingsun-sir.c47 * first plug-in) and its contents should be discarded. There is currently no
/linux-4.1.27/drivers/staging/lustre/lustre/libcfs/linux/
H A Dlinux-cpu.c975 "Lustre: can't support CPU plug-out well now, performance and stability could be impacted [CPU %u action: %lx]\n", cfs_cpu_notify()
/linux-4.1.27/drivers/firmware/google/
H A Dgsmi.c732 * firmware that didn't support this interface used to plug the gsmi_system_valid()
/linux-4.1.27/drivers/gpu/drm/gma500/
H A Dpsb_intel_sdvo_regs.h206 * Returns a struct intel_sdvo_output_flags of displays with hot plug
/linux-4.1.27/drivers/gpu/drm/i915/
H A Dintel_sdvo_regs.h211 * Returns a struct intel_sdvo_output_flags of displays with hot plug
/linux-4.1.27/arch/x86/include/asm/uv/
H A Duv_bau.h516 unsigned long s_resets_plug; /* ipi-style resets from plug
/linux-4.1.27/arch/x86/pci/
H A Dfixup.c265 * hot-plug driver. pcie_rootport_aspm_quirk()
/linux-4.1.27/drivers/amba/
H A Dbus.c361 /* Hard-coded primecell ID instead of plug-n-play */ amba_device_add()
/linux-4.1.27/drivers/base/
H A Dnode.c591 /* initialize work queue for memory hot plug */
/linux-4.1.27/drivers/usb/core/
H A Ddevices.c37 * this in any plug-and-play environment.)
/linux-4.1.27/include/scsi/
H A Dlibsas.h81 PHYE_SPINUP_HOLD = 3, /* hot plug SATA, no COMWAKE sent */
/linux-4.1.27/include/trace/events/
H A Dblock.h482 * @q: request queue to plug
/linux-4.1.27/arch/powerpc/include/asm/
H A Dsmu.h368 SMU_PWR_WAKEUP_AC_INSERT = 0x02, /* Wake on AC adapter plug */
/linux-4.1.27/arch/arm/kernel/
H A Dbios32.c384 * PCI standard swizzle is implemented on plug-in cards and Cardbus based
/linux-4.1.27/tools/testing/selftests/x86/
H A Dsigreturn.c22 * sigcontext frame, plug in the values to be tested, and then return,
/linux-4.1.27/drivers/firewire/
H A Dnet.c303 /* Did the new fragment plug a hole? */ fwnet_frag_new()
319 /* Did the new fragment plug a hole? */ fwnet_frag_new()
/linux-4.1.27/sound/oss/
H A Daedsp16.c85 NOTE: This is something like plug-and-play: we have only to plug
/linux-4.1.27/drivers/vhost/
H A Dscsi.c1753 struct se_lun *lun, bool plug) vhost_scsi_do_plug()
1765 if (plug) vhost_scsi_do_plug()
1752 vhost_scsi_do_plug(struct vhost_scsi_tpg *tpg, struct se_lun *lun, bool plug) vhost_scsi_do_plug() argument
/linux-4.1.27/drivers/net/ethernet/dec/tulip/
H A Dxircom_cb.c1036 transceiver_voodoo() enables the external UTP plug thingy.
/linux-4.1.27/drivers/scsi/sym53c8xx_2/
H A Dsym_hipd.h554 * Is part of the CCB, but is also used separately to plug
/linux-4.1.27/drivers/target/iscsi/
H A Discsi_target.c1149 * plug the CmdSN gap. iscsit_get_immediate_data()
1155 * CmdSN and issue a retry to plug the sequence. iscsit_get_immediate_data()
1710 * initiator plug the CmdSN gap. iscsit_handle_nop_out()
2128 * initiator plug the CmdSN gap. iscsit_handle_text_cmd()
/linux-4.1.27/drivers/gpu/drm/bridge/
H A Ddw_hdmi.c1274 /* enable cable hot plug irq */ dw_hdmi_fb_registered()
/linux-4.1.27/drivers/gpu/drm/exynos/
H A Dexynos_dp_core.c81 dev_err(dp->dev, "failed to get hpd plug status\n"); exynos_dp_detect_hpd()
/linux-4.1.27/arch/x86/kernel/cpu/
H A Dperf_event_intel_uncore.c957 /* CPU hot plug/unplug are serialized by cpu_add_remove_lock mutex */
/linux-4.1.27/drivers/base/power/
H A Dopp.c727 /* plug in new node */ _opp_set_availability()
/linux-4.1.27/drivers/usb/phy/
H A Dphy-fsl-usb.c953 * The identification (id) input is FALSE when a Mini-A plug is inserted usb_otg_start()

Completed in 6503 milliseconds

12