/linux-4.1.27/drivers/i2c/ |
H A D | i2c-smbus.c | 30 struct work_struct alert; member in struct:i2c_smbus_alert 58 if (driver->alert) smbus_do_alert() 59 driver->alert(client, data->flag); smbus_do_alert() 61 dev_warn(&client->dev, "no driver alert()!\n"); smbus_do_alert() 63 dev_dbg(&client->dev, "alert with no driver\n"); smbus_do_alert() 71 * The alert IRQ handler needs to hand work off to a task which can issue 76 struct i2c_smbus_alert *alert; smbus_alert() local 80 alert = container_of(work, struct i2c_smbus_alert, alert); smbus_alert() 81 ara = alert->ara; smbus_alert() 110 /* Notify driver for the device which issued the alert */ smbus_alert() 117 if (!alert->alert_edge_triggered) smbus_alert() 118 enable_irq(alert->irq); smbus_alert() 123 struct i2c_smbus_alert *alert = d; smbalert_irq() local 126 if (!alert->alert_edge_triggered) smbalert_irq() 129 schedule_work(&alert->alert); smbalert_irq() 138 struct i2c_smbus_alert *alert; smbalert_probe() local 142 alert = devm_kzalloc(&ara->dev, sizeof(struct i2c_smbus_alert), smbalert_probe() 144 if (!alert) smbalert_probe() 147 alert->alert_edge_triggered = setup->alert_edge_triggered; smbalert_probe() 148 alert->irq = setup->irq; smbalert_probe() 149 INIT_WORK(&alert->alert, smbus_alert); smbalert_probe() 150 alert->ara = ara; smbalert_probe() 154 0, "smbus_alert", alert); smbalert_probe() 159 i2c_set_clientdata(ara, alert); smbalert_probe() 169 struct i2c_smbus_alert *alert = i2c_get_clientdata(ara); smbalert_remove() local 171 cancel_work_sync(&alert->alert); smbalert_remove() 191 * i2c_setup_smbus_alert - Setup SMBus alert support 193 * @setup: setup data for the SMBus alert handler 196 * Setup handling of the SMBus alert protocol on a given I2C bus segment. 203 * If triggering the alert seems to wedge the system, you probably 223 * i2c_handle_smbus_alert - Handle an SMBus alert 228 * handler. It will schedule the alert work, in turn calling the 229 * corresponding I2C device driver's alert function. 236 struct i2c_smbus_alert *alert = i2c_get_clientdata(ara); i2c_handle_smbus_alert() local 238 return schedule_work(&alert->alert); i2c_handle_smbus_alert()
|
/linux-4.1.27/arch/mips/include/asm/ |
H A D | seccomp.h | 6 * Kludge alert:
|
/linux-4.1.27/include/uapi/linux/ |
H A D | net_dropmon.h | 42 struct net_dm_alert_msg alert; member in union:net_dm_user_msg::__anon13438
|
/linux-4.1.27/drivers/isdn/divert/ |
H A D | isdn_divert.h | 26 #define IIOCDODFACT _IO('I', 8) /* hangup/reject/alert/immediately deflect a call */ 37 #define DEFLECT_ALERT 3 /* alert and deflect after delay */ 61 3 = report call, alert and deflect after waittime 80 1 = alert,
|
H A D | isdn_divert.c | 236 case 1: /* alert */ deflect_extern_action()
|
/linux-4.1.27/include/linux/platform_data/ |
H A D | max6697.h | 24 u8 alert_mask; /* set bit to 1 to disable alert */
|
/linux-4.1.27/arch/s390/include/asm/ |
H A D | cpu_mf.h | 20 #define CPU_MF_INT_SF_PRA (1 << 29) /* program request alert */ 21 #define CPU_MF_INT_SF_SACA (1 << 23) /* sampler auth. change alert */ 22 #define CPU_MF_INT_SF_LSDA (1 << 22) /* loss of sample data alert */ 23 #define CPU_MF_INT_CF_CACA (1 << 7) /* counter auth. change alert */ 24 #define CPU_MF_INT_CF_LCDA (1 << 6) /* loss of counter data alert */
|
H A D | crw.h | 42 #define CRW_RSC_CONFIG 0x9 /* configuration-alert facility */
|
H A D | etr.h | 17 unsigned int ea : 1; /* ETR alert control */ 128 unsigned int eai : 1; /* ETR alert indication */
|
H A D | cio.h | 107 * @ioerr: i/o-error alert
|
/linux-4.1.27/include/linux/ |
H A D | i2c-smbus.h | 30 * @alert_edge_triggered: whether the alert interrupt is edge (1) or level (0)
|
H A D | i2c.h | 133 * @alert: Alert callback, for example for the SMBus alert protocol 176 /* Alert callback, for example for the SMBus alert protocol. 178 * For the SMBus alert protocol, there is a single bit of data passed 179 * as the alert response's low bit ("event flag"). 181 void (*alert)(struct i2c_client *, unsigned int data); member in struct:i2c_driver
|
H A D | netdevice.h | 3890 netif_level(alert, priv, type, dev, fmt, ##args)
|
/linux-4.1.27/drivers/thermal/ti-soc-thermal/ |
H A D | ti-bandgap.h | 171 * @t_hot: temperature to trigger a thermal alert (high initial value) 172 * @t_cold: temperature to trigger a thermal alert (low initial value) 182 * for a specific temperature sensor, like shutdown temperature, alert 231 * @irq: MPU IRQ number for thermal alert 298 * a signal representing violation of programmable alert thresholds. 352 * @report_temperature: callback to report thermal alert to thermal API
|
H A D | ti-bandgap.c | 198 * ti_bandgap_talert_irq_handler() - handles Temperature alert IRQs 397 * @t_hot: hot temperature value to trigger alert signal 398 * @t_cold: cold temperature value to trigger alert signal 491 * alert threshold is modified in ti_bandgap_update_alert_threshold() 1351 /* Set default thresholds for alert and shutdown */ ti_bandgap_probe() 1363 /* Enable the alert events */ ti_bandgap_probe()
|
/linux-4.1.27/drivers/cpufreq/ |
H A D | highbank-cpufreq.c | 9 * the cpufreq-dt driver changes to frequency to alert the highbank
|
/linux-4.1.27/fs/xfs/ |
H A D | xfs_message.c | 78 xfs_alert(mp, "Transforming an alert into a BUG."); xfs_alert_tag()
|
/linux-4.1.27/drivers/i2c/busses/ |
H A D | i2c-parport.c | 156 dev_dbg(&ara->dev, "SMBus alert received\n"); i2c_parport_irq() 160 "SMBus alert received but no ARA client!\n"); i2c_parport_irq() 217 /* Setup SMBus alert if supported */ i2c_parport_attach()
|
H A D | i2c-parport-light.c | 124 /* SMBus alert support */ 155 /* Setup SMBus alert if supported */ i2c_parport_probe()
|
/linux-4.1.27/arch/s390/kernel/ |
H A D | perf_cpum_cf.c | 225 unsigned int alert, unsigned long unused) cpumf_measurement_alert() 229 if (!(alert & CPU_MF_INT_CF_MASK)) cpumf_measurement_alert() 240 /* counter authorization change alert */ cpumf_measurement_alert() 241 if (alert & CPU_MF_INT_CF_CACA) cpumf_measurement_alert() 244 /* loss of counter data alert */ cpumf_measurement_alert() 245 if (alert & CPU_MF_INT_CF_LCDA) cpumf_measurement_alert() 669 /* register handler for measurement-alert interruptions */ cpumf_pmu_init() 224 cpumf_measurement_alert(struct ext_code ext_code, unsigned int alert, unsigned long unused) cpumf_measurement_alert() argument
|
H A D | perf_cpum_sf.c | 409 * Control indicator to trigger a measurement-alert to harvest allocate_buffers() 1459 unsigned int alert, unsigned long unused) cpumf_measurement_alert() 1463 if (!(alert & CPU_MF_INT_SF_MASK)) cpumf_measurement_alert() 1473 /* The processing below must take care of multiple alert events that cpumf_measurement_alert() 1476 /* Program alert request */ cpumf_measurement_alert() 1477 if (alert & CPU_MF_INT_SF_PRA) { cpumf_measurement_alert() 1485 if (alert != CPU_MF_INT_SF_PRA) cpumf_measurement_alert() 1486 debug_sprintf_event(sfdbg, 6, "measurement alert: 0x%x\n", alert); cpumf_measurement_alert() 1489 if (alert & CPU_MF_INT_SF_SACA) cpumf_measurement_alert() 1493 if (alert & CPU_MF_INT_SF_LSDA) { cpumf_measurement_alert() 1500 if (alert & (CPU_MF_INT_SF_IAE|CPU_MF_INT_SF_ISE)) { cpumf_measurement_alert() 1501 pr_err("A sampling buffer entry is incorrect (alert=0x%x)\n", cpumf_measurement_alert() 1502 alert); cpumf_measurement_alert() 1458 cpumf_measurement_alert(struct ext_code ext_code, unsigned int alert, unsigned long unused) cpumf_measurement_alert() argument
|
H A D | time.c | 155 /* Always allow the timing alert external interrupt. */ init_cpu_timer() 282 /* request the timing alert external interrupt */ time_init() 579 * ETR timing alert. There are two causes: 581 * 2) port alert, one of the ETR-data-validity bits (v1-v2 bits of the 595 * ETR port alert on either port 0, 1 or both. etr_timing_alert() 1488 * STP timing alert. There are three causes:
|
/linux-4.1.27/arch/arm/mach-sa1100/include/mach/ |
H A D | assabet.h | 56 #define ASSABET_BCR_VIB_ON (1<<15) /* Vibration motor (quiet alert) */
|
/linux-4.1.27/drivers/memory/ |
H A D | emif.c | 605 u32 alert = 0, interval, devcnt; get_temp_alert_config() local 615 alert |= (interval << TA_REFINTERVAL_SHIFT); get_temp_alert_config() 624 alert |= devcnt << TA_DEVCNT_SHIFT; get_temp_alert_config() 627 alert |= (sdram_io_width - 2) << TA_DEVWDT_SHIFT; get_temp_alert_config() 629 alert |= 1 << TA_SFEXITEN_SHIFT; get_temp_alert_config() 630 alert |= 1 << TA_CS0EN_SHIFT; get_temp_alert_config() 631 alert |= (cs1_used ? 1 : 0) << TA_CS1EN_SHIFT; get_temp_alert_config() 633 return alert; get_temp_alert_config() 917 * alert interrupt. Temperature alert can happen when the temperature 966 dev_err(emif->dev, "temperature alert before registers are calculated, not de-rating timings\n"); handle_temp_alert() 1025 * Handle temperature alert emif_interrupt_handler() 1026 * Temperature alert should be same for all ports emif_interrupt_handler() 1071 dev_err(emif->dev, "temperature alert before registers are calculated, not de-rating timings\n"); emif_threaded_isr() 1269 poll_intvl = of_get_property(np_emif, "temp-alert-poll-interval", &len); of_get_custom_configs()
|
/linux-4.1.27/arch/mips/kernel/ |
H A D | cevt-r4k.c | 65 * Suckage alert: c0_compare_interrupt()
|
/linux-4.1.27/arch/arm/mach-pxa/include/mach/ |
H A D | mainstone.h | 65 #define MST_MSCWR1_MTR_ON (1 << 1) /* Silent alert motor */
|
/linux-4.1.27/sound/drivers/pcsp/ |
H A D | pcsp.c | 155 /* Well, CONFIG_DEBUG_PAGEALLOC makes the sound horrible. Lets alert */ alsa_card_pcsp_init()
|
/linux-4.1.27/drivers/net/ethernet/broadcom/bnx2x/ |
H A D | bnx2x_vfpf.h | 401 #define MAC_ADDR_VALID 0 /* alert the vf that a new mac address 411 #define LINK_VALID 3 /* alert the VF thet a new link status
|
/linux-4.1.27/lib/ |
H A D | string_helpers.c | 243 * '\a' - alert (BEL) 448 * '\a' - alert (BEL)
|
/linux-4.1.27/net/netfilter/ |
H A D | nf_conntrack_h323_main.c | 999 Alerting_UUIE *alert) process_alerting() 1006 if (alert->options & eAlerting_UUIE_h245Address) { process_alerting() 1008 &alert->h245Address); process_alerting() 1013 if (alert->options & eAlerting_UUIE_fastStart) { process_alerting() 1014 for (i = 0; i < alert->fastStart.count; i++) { process_alerting() 1017 &alert->fastStart.item[i]); process_alerting() 995 process_alerting(struct sk_buff *skb, struct nf_conn *ct, enum ip_conntrack_info ctinfo, unsigned int protoff, unsigned char **data, int dataoff, Alerting_UUIE *alert) process_alerting() argument
|
/linux-4.1.27/drivers/misc/mei/ |
H A D | pci-txe.c | 200 * mei_remove is called by the PCI subsystem to alert the driver
|
H A D | pci-me.c | 255 * mei_remove is called by the PCI subsystem to alert the driver
|
/linux-4.1.27/drivers/scsi/ |
H A D | sgiwd93.c | 210 * Kludge alert - the SCSI code calls the abort and reset method with int
|
H A D | pmcraid.c | 525 * 2. IOA reset alert doorbell is set 664 /* If we are able to access IOA PCI config space, alert IOA that we are pmcraid_reset_alert() 688 pmcraid_info("doorbells after reset alert: %x\n", doorbells); pmcraid_reset_alert() 2124 * Alert IOA for a possible reset. If reset alert fails, IOA pmcraid_ioa_reset()
|
H A D | ipr.c | 2825 /* Signal address valid - clear IOA Reset alert */ ipr_get_ldump_data_section() 2850 /* Signal end of block transfer. Set reset alert then clear IO debug ack */ ipr_get_ldump_data_section() 2861 /* Wait for IOA to signal LDUMP exit - IOA reset alert will be cleared */ ipr_get_ldump_data_section() 10041 * If HRRQ updated interrupt is not masked, or reset alert is set, ipr_probe_ioa()
|
/linux-4.1.27/arch/mips/pci/ |
H A D | pci-ip27.c | 56 /* XXX: kludge alert.. */ bridge_probe()
|
/linux-4.1.27/arch/m68k/include/asm/ |
H A D | mac_psc.h | 163 * alert sound volume.
|
/linux-4.1.27/net/core/ |
H A D | drop_monitor.c | 127 * This is the timer function to delay the sending of an alert
|
/linux-4.1.27/drivers/hwmon/ |
H A D | max6697.c | 47 * Applies to alert register and over-temperature register. 505 prop = of_get_property(node, "alert-mask", &len); max6697_get_config_of()
|
H A D | lm90.c | 190 #define LM90_HAVE_BROKEN_ALERT (1 << 7) /* Broken alert */ 1634 * SMBus alert correctly; they should only hold the alert line lm90_alert() 1659 .alert = lm90_alert,
|
H A D | fschmd.c | 222 /* there only really is an alarm if the sensor is working and alert == 1 */ 561 * The FSC hwmon family has the ability to force an attached alert led to flash
|
H A D | lm63.c | 1095 "alert output"); lm63_init_client()
|
/linux-4.1.27/drivers/net/ethernet/sfc/ |
H A D | falcon_boards.c | 268 /* Clear any over-temperature alert */ sfe4001_poweroff() 280 /* Clear any previous over-temperature alert */ sfe4001_poweron()
|
H A D | mcdi.c | 1023 "MC Scheduler alert (0x%x)\n", data); efx_mcdi_process_event()
|
H A D | mcdi_pcol.h | 33 /* The 'doorbell' addresses are hard-wired to alert the MC when written */ 435 /* enum: Firmware alert. */
|
/linux-4.1.27/drivers/ps3/ |
H A D | ps3-sys-manager.c | 36 * mechanism for reporting events like thermal alert and button presses to 122 * @PS3_SM_ATTR_THERMAL: System thermal alert.
|
/linux-4.1.27/drivers/iio/adc/ |
H A D | ad7291.c | 72 * AD7291 alert register bits
|
/linux-4.1.27/fs/afs/ |
H A D | cell.c | 296 * bizarre errno to alert the user. Things like afs_cell_lookup()
|
/linux-4.1.27/drivers/char/ipmi/ |
H A D | ipmi_ssif.c | 937 /* The alert already happened, try now. */ msg_written_handler() 1597 /* A successful return means the alert is supported. */ ssif_probe() 1958 .alert = ssif_alert,
|
/linux-4.1.27/drivers/misc/mic/host/ |
H A D | mic_main.c | 448 * mic_remove is called by the PCI subsystem to alert the driver
|
/linux-4.1.27/drivers/s390/cio/ |
H A D | device_status.c | 152 /* Copy i/o-error alert. */ ccw_device_accumulate_esw()
|
/linux-4.1.27/drivers/gpu/drm/radeon/ |
H A D | radeon_irq_kms.c | 72 * a drm hotplug event to alert userspace.
|
H A D | pptable.h | 136 #define ATOM_PP_PLATFORM_CAP_DONT_WAIT_FOR_VBLANK_ON_ALERT 0x4000 // Do NOT wait for VBLANK during an alert (e.g. AC->DC transition).
|
H A D | atombios.h | 7601 // due to design. This ID is used to alert driver that the sequence is not "standard"!
|
/linux-4.1.27/arch/hexagon/include/asm/ |
H A D | pgtable.h | 419 * VM may require a virtual instruction to alert the MMU.
|
/linux-4.1.27/net/tipc/ |
H A D | discover.c | 99 * disc_dupl_alert - issue node address duplication alert
|
/linux-4.1.27/drivers/net/wireless/ath/ath5k/ |
H A D | pcu.c | 675 * beacon alert (DBA) timer and timer2 as next ath5k_hw_init_beacon_timers() 676 * software beacon alert. Both in 1/8TUs. */ ath5k_hw_init_beacon_timers()
|
H A D | reg.h | 309 #define AR5K_ISR_SWBA 0x00010000 /* Software beacon alert */ 411 #define AR5K_IMR_SWBA 0x00010000 /* Software beacon alert*/ 622 #define AR5K_QCU_MISC_FRSHED_DBA_GT 2 /* DMA Beacon alert gated */ 1287 * Next DMA beacon alert register 1295 * Next software beacon alert register
|
H A D | ath5k.h | 983 * @AR5K_INT_BNR: Beacon queue got triggered (DMA beacon alert) while empty.
|
H A D | base.c | 2186 * Software beacon alert--time to send a beacon. ath5k_tasklet_beacon()
|
/linux-4.1.27/drivers/power/ |
H A D | axp288_fuel_gauge.c | 736 "temp alert min set fail:%d\n", ret); fuel_gauge_set_property() 749 "temp alert max set fail:%d\n", ret); fuel_gauge_set_property()
|
H A D | bq24190_charger.c | 1496 /* Things may have changed while suspended so alert upper layer */ bq24190_pm_resume()
|
/linux-4.1.27/drivers/net/ethernet/qlogic/qlcnic/ |
H A D | qlcnic_hdr.h | 555 QLCNIC_TEMP_WARN, /* Sound alert, temperature getting high */
|
/linux-4.1.27/drivers/media/pci/ivtv/ |
H A D | ivtv-i2c.c | 490 /* Issue a start condition on the i2c bus to alert slaves to prepare for
|
/linux-4.1.27/drivers/scsi/qla2xxx/ |
H A D | qla_nx.h | 1195 QLA82XX_TEMP_WARN, /* Sound alert, temperature getting high */
|
/linux-4.1.27/drivers/scsi/qla4xxx/ |
H A D | ql4_nx.h | 40 QLA82XX_TEMP_WARN, /* Sound alert, temperature getting high */
|
/linux-4.1.27/drivers/tty/serial/ |
H A D | dz.c | 639 * Hack alert!
|
H A D | zs.c | 962 * Hack alert!
|
/linux-4.1.27/arch/s390/oprofile/ |
H A D | hwsampler.c | 435 printk(KERN_ERR "hwsampler: CPU %d CPUMF Request alert," stop_sampling()
|
/linux-4.1.27/drivers/net/ethernet/apple/ |
H A D | bmac.c | 873 crc = bmac_crc((unsigned short *)addr) & 0x3f; /* Big-endian alert! */ bmac_addhash() 888 crc = bmac_crc((unsigned short *)addr) & 0x3f; /* Big-endian alert! */ bmac_removehash()
|
/linux-4.1.27/fs/btrfs/ |
H A D | super.c | 177 "alert", 282 * issues an alert, and either panics or BUGs, depending on mount options.
|
/linux-4.1.27/drivers/isdn/isdnloop/ |
H A D | isdnloop.c | 878 /* si1 does not match, don't alert but start timer */ isdnloop_parse_cmd()
|
/linux-4.1.27/drivers/net/ethernet/qlogic/netxen/ |
H A D | netxen_nic_hdr.h | 813 NX_TEMP_WARN, /* Sound alert, temperature getting high */
|
/linux-4.1.27/drivers/scsi/pm8001/ |
H A D | pm8001_hwi.h | 230 * use to alert the host about the hardware event(64 bytes)
|
H A D | pm80xx_hwi.h | 318 * use to alert the host about the hardware event(64 bytes)
|
/linux-4.1.27/drivers/net/ethernet/atheros/alx/ |
H A D | main.c | 311 netdev_warn(alx->dev, "alert interrupt: 0x%x\n", intr); alx_intr_handle()
|
/linux-4.1.27/drivers/media/common/siano/ |
H A D | smscoreapi.h | 890 u32 ews_alert_active; /* signals if EWS alert is currently on */
|
/linux-4.1.27/fs/cifs/ |
H A D | smb1ops.c | 483 * HACK alert! Ancient servers have very small buffers. Even though cifs_negotiate_rsize()
|
/linux-4.1.27/net/ipv4/ |
H A D | ip_sockglue.c | 295 /* Special input handler for packets caught by router alert option.
|
H A D | ipmr.c | 1984 * Cisco IOS <= 11.2(8)) do not put router alert ip_mr_input()
|
/linux-4.1.27/drivers/media/rc/ |
H A D | imon.c | 1445 * Hack alert: instead of using keycodes, we have imon_pad_to_keys() 1508 * Hack alert: instead of using keycodes, we have imon_pad_to_keys()
|
/linux-4.1.27/arch/powerpc/kvm/ |
H A D | book3s_hv_rmhandlers.S | 1462 * to cause a performance monitor alert (and hence interrupt). 1464 * if there is no PMU alert pending when we read MMCR0
|
/linux-4.1.27/drivers/s390/char/ |
H A D | tape_3590.c | 99 [0xae] = "Subsystem environmental alert",
|
/linux-4.1.27/drivers/net/wireless/ |
H A D | zd1201.c | 659 /* Magic alert: The firmware doesn't seem to like the MAC state being
|
/linux-4.1.27/arch/microblaze/pci/ |
H A D | pci-common.c | 442 /* Hack alert ! pci_mmap_legacy_page_range()
|
/linux-4.1.27/drivers/atm/ |
H A D | iphase.h | 976 u16 rpop_pyel_state; // 1 = path yellow alert
|
/linux-4.1.27/arch/mips/mm/ |
H A D | c-r4k.c | 517 * Kludge alert. For obscure reasons R4000SC and R4400SC go nuts if we local_r4k_flush_cache_mm()
|
/linux-4.1.27/arch/mn10300/kernel/ |
H A D | gdb-stub.c | 728 /* uh-oh - silly address alert, try and restore things */ gdbstub_single_step()
|
/linux-4.1.27/drivers/net/ethernet/intel/fm10k/ |
H A D | fm10k_pci.c | 1888 * fm10k_remove is called by the PCI subsystem to alert the driver
|
/linux-4.1.27/drivers/net/ethernet/intel/i40evf/ |
H A D | i40evf_main.c | 2443 * i40evf_remove is called by the PCI subsystem to alert the driver
|
/linux-4.1.27/drivers/net/ethernet/intel/ixgb/ |
H A D | ixgb_main.c | 551 * ixgb_remove is called by the PCI subsystem to alert the driver
|
/linux-4.1.27/drivers/net/ethernet/intel/ixgbe/ |
H A D | ixgbe_82599.c | 635 * alert the link partner that it also needs to restart autotry on its
|
H A D | ixgbe_main.c | 2829 * shared interrupt alert! ixgbe_intr() 8772 * ixgbe_remove is called by the PCI subsystem to alert the driver
|
/linux-4.1.27/drivers/net/wan/ |
H A D | dscc4.c | 468 printk(KERN_DEBUG "%s (%s): state=%08x (UFO alert)\n", state_check()
|
/linux-4.1.27/drivers/net/ |
H A D | xen-netfront.c | 537 /* If skb->len is too big for wire format, drop skb and alert xennet_start_xmit()
|
/linux-4.1.27/drivers/net/ethernet/atheros/atl1e/ |
H A D | atl1e_main.c | 2451 * atl1e_remove is called by the PCI subsystem to alert the driver
|
/linux-4.1.27/arch/x86/kernel/cpu/mcheck/ |
H A D | mce.c | 1195 * doomed. We still need to mark the page as poisoned and alert any do_machine_check()
|
/linux-4.1.27/drivers/tty/ |
H A D | n_tty.c | 1101 * buffer is 'output'. The signal is processed first to alert any current
|
/linux-4.1.27/fs/ocfs2/ |
H A D | super.c | 2612 * TODO: This should abort the journal and alert other nodes __ocfs2_abort()
|
/linux-4.1.27/arch/powerpc/include/asm/ |
H A D | reg.h | 702 /* performance monitor alert has occurred, set to 0 after handling exception */
|
/linux-4.1.27/arch/powerpc/kernel/ |
H A D | pci-common.c | 572 /* Hack alert ! pci_mmap_legacy_page_range()
|
H A D | traps.c | 1609 /* Hack alert: On BookE, Branch Taken stops on the branch itself, while DebugException()
|
/linux-4.1.27/arch/powerpc/perf/ |
H A D | core-book3s.c | 2124 * clear FC (freeze counters) and PMAO (perf mon alert occurred) perf_event_interrupt()
|
/linux-4.1.27/sound/pci/rme9652/ |
H A D | rme9652.c | 1442 /* XXX bug alert: loop-based timing !!!! */ snd_rme9652_get_tc_value()
|
/linux-4.1.27/drivers/net/ethernet/intel/igbvf/ |
H A D | netdev.c | 2814 * igbvf_remove is called by the PCI subsystem to alert the driver
|
/linux-4.1.27/drivers/net/ethernet/tehuti/ |
H A D | tehuti.c | 2423 * bdx_remove is called by the PCI subsystem to alert the driver
|
/linux-4.1.27/drivers/s390/block/ |
H A D | dasd_3990_erp.c | 788 "check alert\n"); dasd_3990_handle_env_data()
|
/linux-4.1.27/drivers/net/ethernet/atheros/atl1c/ |
H A D | atl1c_main.c | 2681 * atl1c_remove is called by the PCI subsystem to alert the driver
|
/linux-4.1.27/drivers/net/ethernet/atheros/atlx/ |
H A D | atl1.c | 3110 * atl1_remove is called by the PCI subsystem to alert the driver
|
H A D | atl2.c | 1480 * atl2_remove is called by the PCI subsystem to alert the driver
|
/linux-4.1.27/fs/ocfs2/dlm/ |
H A D | dlmrecovery.c | 1623 * lockres and alert the sender that this lockres dlm_lockres_master_requery()
|
/linux-4.1.27/net/ipv6/ |
H A D | mcast.c | 18 * yoshfuji : fix format of router-alert option
|
/linux-4.1.27/drivers/net/ethernet/chelsio/cxgb3/ |
H A D | t3_hw.c | 1394 * optionally printing a warning or alert message, and optionally
|
/linux-4.1.27/drivers/net/ethernet/intel/e1000/ |
H A D | e1000_main.c | 1265 * e1000_remove is called by the PCI subsystem to alert the driver
|
/linux-4.1.27/drivers/net/ethernet/intel/ixgbevf/ |
H A D | ixgbevf_main.c | 4090 * ixgbevf_remove is called by the PCI subsystem to alert the driver
|
/linux-4.1.27/drivers/scsi/csiostor/ |
H A D | csio_hw.c | 2657 * optionally emitting a warning or alert message. The table is terminated
|
/linux-4.1.27/drivers/scsi/ufs/ |
H A D | ufshcd.c | 3143 * device to alert host in critical scenarios.
|
/linux-4.1.27/drivers/infiniband/hw/qib/ |
H A D | qib_iba7220.c | 1886 * to alert developer. To avoid endless repeats, clear unlikely_7220_intr()
|
/linux-4.1.27/drivers/usb/dwc2/ |
H A D | gadget.c | 442 * enable correct FIFO interrupt to alert us when there s3c_hsotg_write_fifo()
|
/linux-4.1.27/kernel/ |
H A D | signal.c | 660 * is to alert stop-signal processing code when another dequeue_signal()
|
/linux-4.1.27/mm/ |
H A D | mmap.c | 1900 * Ugly calling convention alert:
|
/linux-4.1.27/scripts/ |
H A D | checkpatch.pl | 362 (?:[a-z0-9]+_){1,2}(?:printk|emerg|alert|crit|err|warning|warn|notice|info|debug|dbg|vdbg|devel|cont|WARN)(?:_ratelimited|_once|)|
|
/linux-4.1.27/drivers/net/ethernet/chelsio/cxgb4/ |
H A D | t4_hw.c | 2167 * optionally emitting a warning or alert message. The table is terminated
|
/linux-4.1.27/drivers/net/ethernet/intel/e1000e/ |
H A D | netdev.c | 7092 * e1000_remove is called by the PCI subsystem to alert the driver
|
/linux-4.1.27/drivers/net/ethernet/realtek/ |
H A D | r8169.c | 7416 /* XXX - Hack alert. See rtl_task(). */ rtl_slow_event_work()
|
/linux-4.1.27/drivers/scsi/mpt3sas/ |
H A D | mpt3sas_scsih.c | 7339 * Sending RAID Action to alert the Integrated RAID subsystem of the IOC that
|
/linux-4.1.27/drivers/net/ethernet/intel/igb/ |
H A D | igb_main.c | 2784 * igb_remove is called by the PCI subsystem to alert the driver
|
/linux-4.1.27/drivers/scsi/mpt2sas/ |
H A D | mpt2sas_scsih.c | 7706 * Sending RAID Action to alert the Integrated RAID subsystem of the IOC that
|
/linux-4.1.27/drivers/isdn/hardware/eicon/ |
H A D | message.c | 3347 if ((plci->State == INC_CON_PENDING) || (plci->State == INC_CON_ALERT)) /* send alert tone inband to the network, */ select_b_req()
|
/linux-4.1.27/drivers/net/ethernet/intel/i40e/ |
H A D | i40e_main.c | 10045 * i40e_remove is called by the PCI subsystem to alert the driver
|