/linux-4.1.27/sound/core/oss/ |
H A D | io.c | 28 #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 D | pcm_plugin.c | 35 #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 D | pcm_plugin.h | 27 #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 D | copy.c | 61 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 D | route.c | 85 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 D | linear.c | 147 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 D | rate.c | 300 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 D | mulaw.c | 298 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 D | fcp.h | 19 unsigned short plug); 22 unsigned short plug);
|
H A D | cmp.h | 20 * computer and a device's input plug (iPCR) and output plug (oPCR).
|
H A D | cmp.c | 251 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 D | fcp.c | 57 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 D | interrupt.c | 42 * @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 D | setup.c | 76 * irq on an unmasked plug exists. MSR[EE] has no effect. ps3_power_save()
|
/linux-4.1.27/net/sched/ |
H A D | sch_plug.c | 10 * 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 D | buffer.c | 16 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 D | bebob_stream.c | 166 * 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 D | bebob_command.c | 28 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 D | bebob_maudio.c | 301 /* Input plug shows actual rate. Output plug is needless for this purpose. */ special_get_rate()
|
/linux-4.1.27/tools/firewire/ |
H A D | decode-fcp.c | 84 [0x02] = { "plug info" }, 93 [0x19] = { "input plug signal format" }, 94 [0x18] = { "output plug signal format" },
|
/linux-4.1.27/sound/isa/sb/ |
H A D | emu8000_synth.c | 6 * Emu8000 synth plug-in routine 29 MODULE_DESCRIPTION("Emu8000 synth plug-in routine");
|
H A D | emu8000_pcm.c | 36 * type plug
|
/linux-4.1.27/block/ |
H A D | blk-core.c | 1530 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 D | blk-lib.c | 51 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 D | blk-mq.c | 1075 * 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 D | blk-throttle.c | 1269 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 D | elevator.c | 9 * one or even write a new "plug in". There are three pieces:
|
/linux-4.1.27/arch/ia64/include/asm/ |
H A D | nodedata.h | 51 * "local_node_data" at hot-plug phase. The local_node_data
|
/linux-4.1.27/drivers/staging/wlan-ng/ |
H A D | prism2fw.c | 340 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 D | blkdev.h | 1086 * 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 D | zorro.h | 59 void (*remove)(struct zorro_dev *z); /* Device removed (NULL if not a hot-plug capable driver) */
|
H A D | ethtool.h | 200 * a plug-in module. 201 * @get_module_eeprom: Get the eeprom information from the plug-in module
|
H A D | notifier.h | 187 * low memory chain, screenblank chain (for plug in modular screenblankers)
|
H A D | blk-mq.h | 176 void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule);
|
H A D | dio.h | 91 void (*remove)(struct dio_dev *z); /* Device removed (NULL if not a hot-plug capable driver) */
|
H A D | phy.h | 571 /* 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 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);
|
H A D | firedtv-avc.c | 425 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 D | common.c | 122 * 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 D | sti_hdmi.h | 43 * @hpd: hot plug detect status
|
H A D | sti_hdmi.c | 145 /* Hot plug/unplug IRQ */ hdmi_irq_thread()
|
H A D | sti_hqvdp.c | 326 * @vid_plane: VID plug used as link with compositor IP
|
/linux-4.1.27/drivers/staging/sm750fb/ |
H A D | ddk750_sii164.c | 319 * 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 D | raid56.c | 99 * 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 D | tree-log.c | 2634 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 D | volumes.c | 265 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 D | transaction.c | 987 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 D | blackfin.c | 222 /* 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 D | ftdi_sio_ids.h | 887 #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 D | blocklayout.c | 237 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 D | tb.c | 16 /* 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 D | tb.h | 106 struct workqueue_struct *wq; /* ordered workqueue for plug events */ 110 * tb_handle_hotplug will stop progressing plug
|
H A D | tb_regs.h | 135 * RW, pause between plug events in
|
H A D | ctl.c | 367 * 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 D | switch.c | 129 * 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 D | hermes_dld.c | 72 * 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 D | fw.c | 50 __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 D | virtpci.h | 85 * not a hot-plug capable
|
/linux-4.1.27/drivers/pci/hotplug/ |
H A D | shpchp_sysfs.c | 36 /* A few routines that create sysfs entries for the hot plug controller */
|
H A D | cpqphp_nvram.c | 198 * 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 D | cpqphp_pci.c | 300 * 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 D | cpqphp_core.c | 310 /* 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 D | cpqphp.h | 396 #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 D | acpi_pcihp.c | 2 * Common ACPI functions for hot plug platforms
|
H A D | pciehp_hpc.c | 298 * 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 D | pciehp_core.c | 59 MODULE_PARM_DESC(pciehp_poll_mode, "Using polling mechanism for hot-plug events or not");
|
H A D | shpchp_core.c | 55 MODULE_PARM_DESC(shpchp_poll_mode, "Using polling mechanism for hot-plug events or not");
|
H A D | ibmphp_ebda.c | 42 * 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 D | cpqphp_ctrl.c | 1344 /* 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 D | pci.c | 155 /* 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 D | head_64.S | 68 * to plug in the pointer from the L0 to the L1 table by hand.
|
/linux-4.1.27/arch/parisc/include/asm/ |
H A D | superio.h | 64 * Does NS make a 87415 based plug in PCI card? If so, because of this
|
/linux-4.1.27/drivers/md/ |
H A D | raid1.c | 1043 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 D | dm-bufio.c | 709 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 D | dm-kcopyd.c | 583 struct blk_plug plug; do_work() local 592 blk_start_plug(&plug); do_work() 596 blk_finish_plug(&plug); do_work()
|
H A D | raid10.c | 1108 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 D | dm-crypt.c | 1183 struct blk_plug plug; dmcrypt_write() local 1222 blk_start_plug(&plug); dmcrypt_write() 1228 blk_finish_plug(&plug); dmcrypt_write()
|
H A D | dm-thin.c | 69 * 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 D | madvise.c | 466 struct blk_plug plug; SYSCALL_DEFINE3() local 506 blk_start_plug(&plug); SYSCALL_DEFINE3() 542 blk_finish_plug(&plug); SYSCALL_DEFINE3()
|
H A D | swap_state.c | 458 struct blk_plug plug; swapin_readahead() local 470 blk_start_plug(&plug); swapin_readahead() 481 blk_finish_plug(&plug); swapin_readahead()
|
H A D | readahead.c | 114 struct blk_plug plug; read_pages() local 118 blk_start_plug(&plug); read_pages() 139 blk_finish_plug(&plug); read_pages()
|
H A D | sparse.c | 773 * Check to see if allocation came from hot-plug-add free_section_usemap()
|
H A D | page-writeback.c | 2014 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 D | oxfw-stream.c | 497 "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 D | oxfw-command.c | 133 buf[3] = 0xff & pid; /* plug id */ avc_general_inquiry_sig_fmt()
|
/linux-4.1.27/drivers/misc/mic/card/ |
H A D | mic_device.h | 72 * @hotplug_work: Hot plug work for adding/removing virtio devices.
|
H A D | mic_virtio.c | 582 * Interrupt handler for hot plug/config changes etc.
|
/linux-4.1.27/drivers/staging/comedi/drivers/ |
H A D | ni_labpc.c | 36 * Kernel-level ISA plug-and-play support for the lab-pc-1200 boards
|
H A D | daqboard2000.c | 37 pinouts, plug and pray has something to catch up with yet).
|
/linux-4.1.27/drivers/video/fbdev/matrox/ |
H A D | i2c-matroxfb.c | 177 printk(KERN_INFO "i2c-matroxfb: VGA->TV plug detected, DDC unavailable.\n"); i2c_matroxfb_probe()
|
/linux-4.1.27/drivers/pnp/ |
H A D | core.c | 27 * skip some blind probes. ISAPNP typically enumerates only plug-in ISA
|
/linux-4.1.27/include/uapi/linux/ |
H A D | pmu.h | 112 PMU_PWR_WAKEUP_AC_INSERT = 0x02, /* Wake on AC adapter plug */
|
H A D | pkt_sched.h | 146 /* TCQ_PLUG_BUFFER: Inset a plug into the queue and 149 * to beginning of the next plug.
|
H A D | ethtool.h | 1183 #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 D | pci.c | 84 * someone tries to plug in a similar adapter.
|
/linux-4.1.27/drivers/xen/ |
H A D | xen-acpi-cpuhotplug.c | 146 * _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 D | commit.c | 314 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 D | checkpoint.c | 261 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 D | divasync.h | 319 * 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 D | cardtype.h | 249 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 D | target_core_iblock.c | 364 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 D | lkkbd.c | 23 * 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 D | xfs_dir2_readdir.c | 278 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 D | xfs_itable.c | 182 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 D | xfs_buf.c | 1218 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 D | checkpoint.c | 185 struct blk_plug plug; __flush_batch() local 187 blk_start_plug(&plug); __flush_batch() 190 blk_finish_plug(&plug); __flush_batch()
|
H A D | commit.c | 393 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 D | mpage.c | 679 struct blk_plug plug; mpage_writepages() local 682 blk_start_plug(&plug); mpage_writepages() 698 blk_finish_plug(&plug); mpage_writepages()
|
H A D | aio.c | 1569 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 D | direct-io.c | 1112 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 D | block_dev.c | 1608 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 D | file.c | 96 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 D | inode.c | 2428 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 D | gc.c | 664 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 D | checkpoint.c | 813 struct blk_plug plug; block_operations() local 816 blk_start_plug(&plug); block_operations() 849 blk_finish_plug(&plug); block_operations()
|
H A D | node.c | 1077 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 D | alim15x3.c | 43 * ALi devices are not plug in. Otherwise these static values would 531 * hot plug layer.
|
H A D | ide-io.c | 438 /* 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 D | setup-pci.c | 132 * 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 D | mv_defs.h | 401 PHY_PLUG_IN = (1U << 0), /* phy plug in */ 402 PHY_PLUG_OUT = (1U << 1), /* phy plug out */
|
H A D | mv_sas.c | 2026 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 D | portdrv_core.c | 282 * 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 D | vsxxxaa.c | 38 * 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 D | radeon_irq_kms.c | 68 * 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 D | rh.c | 214 /* 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 D | cbaf.c | 28 * time you plug the device with a cable, association is done between
|
/linux-4.1.27/sound/pci/emu10k1/ |
H A D | emu10k1_callback.c | 173 /* Problem apparent on plug, unplug then plug */ free_voice()
|
/linux-4.1.27/drivers/scsi/lpfc/ |
H A D | lpfc_bsg.h | 64 #define EXTERNAL_LOOP_BACK 0x2 /* requires an external loopback plug */
|
/linux-4.1.27/drivers/staging/unisys/common-spar/include/ |
H A D | vbusdeviceinfo.h | 133 /* plug in the decimal ascii string representing the number, by */ vbuschannel_itoa()
|
/linux-4.1.27/drivers/extcon/ |
H A D | extcon-palmas.c | 138 /* cold plug for host mode needs this delay */ palmas_enable_irq()
|
/linux-4.1.27/arch/sparc/include/asm/ |
H A D | leon_amba.h | 255 #define GAISLER_PLUGPLAY 0xfff /* internal device: plug & play configarea */
|
/linux-4.1.27/drivers/ata/ |
H A D | sata_promise.c | 988 /* 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 D | ahci_imx.c | 74 MODULE_PARM_DESC(hotplug, "AHCI IMX hot-plug support (0=Don't support, 1=support)");
|
H A D | sata_sil.c | 559 /* plug IRQ */ sil_freeze()
|
H A D | libata-pmp.c | 325 "hotplug won't work on fan-out ports. Use warm-plug instead.\n"); sata_pmp_configure()
|
H A D | sata_sil24.c | 619 /* temporarily plug completion and error interrupts */ sil24_exec_polled_cmd()
|
/linux-4.1.27/drivers/usb/misc/ |
H A D | usb_u132.h | 47 * hot plug system when the U132 adapter is plugged in. The module
|
/linux-4.1.27/arch/arm64/include/asm/ |
H A D | uaccess.h | 248 else /* security hole - plug it */ copy_from_user()
|
/linux-4.1.27/arch/arm/mach-s3c24xx/ |
H A D | mach-anubis.c | 173 * Note, there is no current hot-plug support for the External
|
H A D | mach-osiris.c | 186 * Note, there is no current hot-plug support for the External
|
H A D | mach-bast.c | 238 * Note, there is no current hot-plug support for the SmartMedia
|
/linux-4.1.27/arch/arm/mach-gemini/include/mach/ |
H A D | global_reg.h | 226 #define USB1_PLUG_MINIB (1 << 30) /* else plug is mini-A */
|
/linux-4.1.27/sound/pci/pcxhr/ |
H A D | pcxhr.h | 97 unsigned int board_has_aes1:1; /* if 1 board has AES1 plug and SRC */
|
H A D | pcxhr_mixer.c | 599 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 D | pcxhr_mix22.c | 604 /* get data from the AES1 plug */ hr222_set_audio_source()
|
/linux-4.1.27/sound/soc/codecs/ |
H A D | ts3a227e.c | 193 /* Check for plug/unplug. */ ts3a227e_interrupt()
|
/linux-4.1.27/drivers/video/fbdev/ |
H A D | sh_mobile_hdmi.c | 184 #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 D | ael1002.c | 469 /* 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 D | 88pm860x_charger.c | 502 * 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 D | sdo_drv.c | 62 /** regulator for SDO plug detection */
|
H A D | hdmi_drv.c | 163 /* clearing flags for HPD plug/unplug */ hdmi_irq_handler()
|
/linux-4.1.27/drivers/staging/fwserial/ |
H A D | fwserial.h | 159 /* 1 min. plug timeout -- suitable for userland authorization */
|
H A D | fwserial.c | 2540 * 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 D | XGI_main.h | 64 /* PR: Tv plug type (for overriding autodetection) */
|
/linux-4.1.27/drivers/gpu/drm/msm/hdmi/ |
H A D | hdmi_phy_8960.c | 42 * To get the parent clock setup properly, we need to plug in hdmi pll
|
/linux-4.1.27/drivers/watchdog/ |
H A D | sc1200wdt.c | 77 static int io_len = 2; /* for non plug and play */
|
/linux-4.1.27/sound/pci/ca0106/ |
H A D | ca0106_proc.c | 23 * Enable playback 48000 and 96000 rates. (Rates other that these do not work, even with "plug:front".)
|
H A D | ca0106.h | 23 * 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 D | ca0106_mixer.c | 23 * 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 D | cpupower-monitor.c | 191 * 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 D | aic94xx_scb.c | 113 /* 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 D | log.c | 149 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 D | tumbler.c | 21 * * 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 D | blkback.c | 1199 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 D | bnx2i_init.c | 278 * called from either cnic_register_driver() or device hot plug context and
|
/linux-4.1.27/drivers/scsi/isci/ |
H A D | phy.h | 72 * 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 D | common.c | 669 * manual call notify_hotplug for cold plug usbhs_probe()
|
/linux-4.1.27/drivers/uwb/ |
H A D | lc-dev.c | 431 /* plug the beacon cache */ uwbd_dev_onair()
|
/linux-4.1.27/arch/m68k/include/asm/ |
H A D | mac_via.h | 161 * 0=plug is inserted. On SE/30, always 0 */
|
/linux-4.1.27/arch/arm/include/asm/ |
H A D | uaccess.h | 492 else /* security hole - plug it */ copy_from_user()
|
/linux-4.1.27/sound/ |
H A D | sound_core.c | 85 * plug into this. The fact they don't all go via OSS doesn't mean
|
/linux-4.1.27/drivers/scsi/ |
H A D | gdth.h | 881 u8 lock; /* drive locked? (hot plug) */ 893 u8 lock; /* channel locked? (hot plug) */
|
/linux-4.1.27/arch/tile/include/hv/ |
H A D | drv_mpipe_intf.h | 501 * 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 D | jme.c | 53 "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 D | kingsun-sir.c | 47 * 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 D | linux-cpu.c | 975 "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 D | gsmi.c | 732 * firmware that didn't support this interface used to plug the gsmi_system_valid()
|
/linux-4.1.27/drivers/gpu/drm/gma500/ |
H A D | psb_intel_sdvo_regs.h | 206 * Returns a struct intel_sdvo_output_flags of displays with hot plug
|
/linux-4.1.27/drivers/gpu/drm/i915/ |
H A D | intel_sdvo_regs.h | 211 * Returns a struct intel_sdvo_output_flags of displays with hot plug
|
/linux-4.1.27/arch/x86/include/asm/uv/ |
H A D | uv_bau.h | 516 unsigned long s_resets_plug; /* ipi-style resets from plug
|
/linux-4.1.27/arch/x86/pci/ |
H A D | fixup.c | 265 * hot-plug driver. pcie_rootport_aspm_quirk()
|
/linux-4.1.27/drivers/amba/ |
H A D | bus.c | 361 /* Hard-coded primecell ID instead of plug-n-play */ amba_device_add()
|
/linux-4.1.27/drivers/base/ |
H A D | node.c | 591 /* initialize work queue for memory hot plug */
|
/linux-4.1.27/drivers/usb/core/ |
H A D | devices.c | 37 * this in any plug-and-play environment.)
|
/linux-4.1.27/include/scsi/ |
H A D | libsas.h | 81 PHYE_SPINUP_HOLD = 3, /* hot plug SATA, no COMWAKE sent */
|
/linux-4.1.27/include/trace/events/ |
H A D | block.h | 482 * @q: request queue to plug
|
/linux-4.1.27/arch/powerpc/include/asm/ |
H A D | smu.h | 368 SMU_PWR_WAKEUP_AC_INSERT = 0x02, /* Wake on AC adapter plug */
|
/linux-4.1.27/arch/arm/kernel/ |
H A D | bios32.c | 384 * PCI standard swizzle is implemented on plug-in cards and Cardbus based
|
/linux-4.1.27/tools/testing/selftests/x86/ |
H A D | sigreturn.c | 22 * sigcontext frame, plug in the values to be tested, and then return,
|
/linux-4.1.27/drivers/firewire/ |
H A D | net.c | 303 /* 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 D | aedsp16.c | 85 NOTE: This is something like plug-and-play: we have only to plug
|
/linux-4.1.27/drivers/vhost/ |
H A D | scsi.c | 1753 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 D | xircom_cb.c | 1036 transceiver_voodoo() enables the external UTP plug thingy.
|
/linux-4.1.27/drivers/scsi/sym53c8xx_2/ |
H A D | sym_hipd.h | 554 * Is part of the CCB, but is also used separately to plug
|
/linux-4.1.27/drivers/target/iscsi/ |
H A D | iscsi_target.c | 1149 * 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 D | dw_hdmi.c | 1274 /* enable cable hot plug irq */ dw_hdmi_fb_registered()
|
/linux-4.1.27/drivers/gpu/drm/exynos/ |
H A D | exynos_dp_core.c | 81 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 D | perf_event_intel_uncore.c | 957 /* CPU hot plug/unplug are serialized by cpu_add_remove_lock mutex */
|
/linux-4.1.27/drivers/base/power/ |
H A D | opp.c | 727 /* plug in new node */ _opp_set_availability()
|
/linux-4.1.27/drivers/usb/phy/ |
H A D | phy-fsl-usb.c | 953 * The identification (id) input is FALSE when a Mini-A plug is inserted usb_otg_start()
|