Home
last modified time | relevance | path

Searched refs:act (Results 1 – 200 of 210) sorted by relevance

12

/linux-4.1.27/drivers/s390/scsi/
Dzfcp_erp.c64 static int zfcp_erp_action_exists(struct zfcp_erp_action *act) in zfcp_erp_action_exists() argument
68 list_for_each_entry(curr_act, &act->adapter->erp_running_head, list) in zfcp_erp_action_exists()
69 if (act == curr_act) in zfcp_erp_action_exists()
74 static void zfcp_erp_action_ready(struct zfcp_erp_action *act) in zfcp_erp_action_ready() argument
76 struct zfcp_adapter *adapter = act->adapter; in zfcp_erp_action_ready()
78 list_move(&act->list, &act->adapter->erp_ready_head); in zfcp_erp_action_ready()
79 zfcp_dbf_rec_run("erardy1", act); in zfcp_erp_action_ready()
81 zfcp_dbf_rec_run("erardy2", act); in zfcp_erp_action_ready()
84 static void zfcp_erp_action_dismiss(struct zfcp_erp_action *act) in zfcp_erp_action_dismiss() argument
86 act->status |= ZFCP_STATUS_ERP_DISMISSED; in zfcp_erp_action_dismiss()
[all …]
/linux-4.1.27/drivers/s390/block/
Ddasd_fba.c477 struct ccw1 *act, *end, *last; in dasd_fba_dump_sense() local
516 act = req->cpaddr; in dasd_fba_dump_sense()
517 for (last = act; last->flags & (CCW_FLAG_CC | CCW_FLAG_DC); last++); in dasd_fba_dump_sense()
518 end = min(act + 8, last); in dasd_fba_dump_sense()
520 while (act <= end) { in dasd_fba_dump_sense()
523 act, ((int *) act)[0], ((int *) act)[1]); in dasd_fba_dump_sense()
524 for (count = 0; count < 32 && count < act->count; in dasd_fba_dump_sense()
527 ((int *) (addr_t) act->cda) in dasd_fba_dump_sense()
530 act++; in dasd_fba_dump_sense()
537 if (act < ((struct ccw1 *)(addr_t) irb->scsw.cmd.cpa) - 2) { in dasd_fba_dump_sense()
[all …]
/linux-4.1.27/net/sched/
Dact_api.c285 int tcf_register_action(struct tc_action_ops *act, unsigned int mask) in tcf_register_action() argument
291 if (!act->act || !act->dump || !act->init) in tcf_register_action()
295 if (!act->lookup) in tcf_register_action()
296 act->lookup = tcf_hash_search; in tcf_register_action()
297 if (!act->walk) in tcf_register_action()
298 act->walk = tcf_generic_walker; in tcf_register_action()
300 act->hinfo = kmalloc(sizeof(struct tcf_hashinfo), GFP_KERNEL); in tcf_register_action()
301 if (!act->hinfo) in tcf_register_action()
303 err = tcf_hashinfo_init(act->hinfo, mask); in tcf_register_action()
305 kfree(act->hinfo); in tcf_register_action()
[all …]
Dact_bpf.c36 static int tcf_bpf(struct sk_buff *skb, const struct tc_action *act, in tcf_bpf() argument
39 struct tcf_bpf *prog = act->priv; in tcf_bpf()
123 static int tcf_bpf_dump(struct sk_buff *skb, struct tc_action *act, in tcf_bpf_dump() argument
127 struct tcf_bpf *prog = act->priv; in tcf_bpf_dump()
266 struct nlattr *est, struct tc_action *act, in tcf_bpf_init() argument
299 if (!tcf_hash_check(parm->index, act, bind)) { in tcf_bpf_init()
300 ret = tcf_hash_create(parm->index, est, act, in tcf_bpf_init()
311 tcf_hash_release(act, bind); in tcf_bpf_init()
318 prog = to_bpf(act); in tcf_bpf_init()
338 tcf_hash_insert(act); in tcf_bpf_init()
[all …]
Dcls_api.c523 struct tc_action *act; in tcf_exts_validate() local
527 act = tcf_action_init_1(net, tb[exts->police], rate_tlv, in tcf_exts_validate()
530 if (IS_ERR(act)) in tcf_exts_validate()
531 return PTR_ERR(act); in tcf_exts_validate()
533 act->type = exts->type = TCA_OLD_COMPAT; in tcf_exts_validate()
534 list_add(&act->list, &exts->actions); in tcf_exts_validate()
592 struct tc_action *act = tcf_exts_first_act(exts); in tcf_exts_dump() local
594 if (nest == NULL || !act) in tcf_exts_dump()
596 if (tcf_action_dump_old(skb, act, 0, 0) < 0) in tcf_exts_dump()
Dact_ipt.c266 .act = tcf_ipt,
276 .act = tcf_ipt,
Dact_connmark.c170 .act = tcf_connmark,
Dact_simple.c167 .act = tcf_simp,
Dact_gact.c184 .act = tcf_gact,
Dact_skbedit.c179 .act = tcf_skbedit,
Dact_vlan.c187 .act = tcf_vlan,
Dact_mirred.c241 .act = tcf_mirred,
Dact_pedit.c221 .act = tcf_pedit,
Dact_nat.c287 .act = tcf_nat,
Dact_police.c353 .act = tcf_act_police,
Dact_csum.c565 .act = tcf_csum,
/linux-4.1.27/Documentation/filesystems/
Ddnotify_test.c17 struct sigaction act; in main() local
20 act.sa_sigaction = handler; in main()
21 sigemptyset(&act.sa_mask); in main()
22 act.sa_flags = SA_SIGINFO; in main()
23 sigaction(SIGRTMIN + 1, &act, NULL); in main()
Dext3.txt98 bsddf (*) Make 'df' act like BSD.
99 minixdf Make 'df' act like Minix.
Dext2.txt17 bsddf (*) Makes `df' act like BSD.
18 minixdf Makes `df' act like Minix.
Dext4.txt215 bsddf (*) Make 'df' act like BSD.
216 minixdf Make 'df' act like Minix.
/linux-4.1.27/drivers/input/serio/
Dhp_sdc.c201 if (curr->act.semaphore) in hp_sdc_take()
202 up(curr->act.semaphore); in hp_sdc_take()
205 if (curr->act.irqhook) in hp_sdc_take()
206 curr->act.irqhook(irq, dev_id, status, data); in hp_sdc_take()
331 if (curr->act.semaphore) in hp_sdc_tasklet()
332 up(curr->act.semaphore); in hp_sdc_tasklet()
338 if (curr->act.irqhook) in hp_sdc_tasklet()
339 curr->act.irqhook(0, NULL, 0, 0); in hp_sdc_tasklet()
354 uint8_t act; in hp_sdc_put() local
427 act = curr->seq[idx]; in hp_sdc_put()
[all …]
Dgscps2.c95 u8 act, append; /* position in buffer[] */ member
137 ps2port->act = ps2port->append = 0; in gscps2_flush()
252 while (ps2port->act != ps2port->append) { in gscps2_interrupt()
262 status = ps2port->buffer[ps2port->act].str; in gscps2_interrupt()
263 data = ps2port->buffer[ps2port->act].data; in gscps2_interrupt()
265 ps2port->act = ((ps2port->act+1) & BUFFER_SIZE); in gscps2_interrupt()
Dhp_sdc_mlc.c196 if (priv->trans.act.semaphore != &mlc->csem) in hp_sdc_mlc_cts()
206 priv->trans.act.semaphore = &mlc->csem; in hp_sdc_mlc_cts()
220 priv->trans.act.semaphore = &mlc->osem; in hp_sdc_mlc_cts()
248 priv->trans.act.semaphore = &mlc->osem; in hp_sdc_mlc_out()
289 priv->trans.act.semaphore = &mlc->osem; in hp_sdc_mlc_out()
319 hp_sdc_mlc_priv.trans.act.semaphore = &mlc->osem; in hp_sdc_mlc_init()
Dhil_mlc.c588 switch (node->act) { in hilse_setup_input()
637 switch (node->act) { in hilse_donode()
691 if ((node + 1)->act & HILSE_IN) in hilse_donode()
/linux-4.1.27/Documentation/devicetree/bindings/pinctrl/
Dmarvell,kirkwood-pinctrl.txt67 mpp5 5 gpo, nand(io7), uart0(txd), ptp(trig), sata0(act)
76 ptp-2(trig), sata0(act)
80 mpp15 15 gpio, sdio(d1), uart0(rts), uart1(txd), sata0(act)
86 mpp21 21 gpio, ge1(txd1), sata0(act)
100 mpp35 35 gpio, ge1(rxerr), sata0(act), mii(rxerr)
110 mpp4 4 gpio, nand(io6), uart0(rxd), ptp(clk), sata1(act)
111 mpp5 5 gpo, nand(io7), uart0(txd), ptp(trig), sata0(act)
118 mpp10 10 gpo, spi(sck), uart0(txd), ptp(trig), sata1(act)
120 ptp-2(trig), sata0(act)
124 mpp15 15 gpio, sdio(d1), uart0(rts), uart1(txd), sata0(act)
[all …]
Dmarvell,dove-pinctrl.txt22 mpp3 3 gpio, pmu, uart2(rxd), sdio0(ledctrl), sata(act),
31 mpp11 11 gpio, pmu, sata(prsnt), sata-1(act), sdio0(ledctrl),
34 sata(act), pmu*
Dmarvell,orion-pinctrl.txt53 mpp6 6 gpio, pci(req5), nand(re0), sata0(act)
54 mpp7 7 gpio, pci(gnt5), nand(we0), sata1(act)
Dpinctrl-sirf.txt16 SiRFprimaII's pinmux nodes act as a container for an arbitrary number of subnodes.
Dlantiq,falcon-pinumx.txt12 Lantiq's pin configuration nodes act as a container for an arbitrary number of
Dqcom,apq8064-pinctrl.txt21 Qualcomm's pin configuration nodes act as a container for an arbitrary number of
Dqcom,ipq8064-pinctrl.txt21 Qualcomm's pin configuration nodes act as a container for an arbitrary number of
Dxlnx,zynq-pinctrl.txt12 Zynq's pin configuration nodes act as a container for an arbitrary number of
Dpinctrl-palmas.txt16 Palmas's pin configuration nodes act as a container for an arbitrary number of
Dlantiq,xway-pinumx.txt12 Lantiq's pin configuration nodes act as a container for an arbitrary number of
Dqcom,msm8974-pinctrl.txt21 Qualcomm's pin configuration nodes act as a container for an arbitrary number of
Dste,nomadik.txt12 ST Ericsson's pin configuration nodes act as a container for an arbitrary number of
Dimg,tz1090-pdc-pinctrl.txt12 TZ1090-PDC's pin configuration nodes act as a container for an arbitrary number
Dqcom,pmic-mpp.txt45 The pin configuration nodes act as a container for an arbitrary number of
Dpinctrl_spear.txt35 SPEAr's pinmux nodes act as a container for an arbitrary number of subnodes. Each
Dqcom,apq8084-pinctrl.txt50 The pin configuration nodes act as a container for an arbitrary number of
Dqcom,msm8960-pinctrl.txt50 The pin configuration nodes act as a container for an arbitrary number of
Dqcom,msm8916-pinctrl.txt50 The pin configuration nodes act as a container for an arbitrary number of
Dqcom,pmic-gpio.txt49 The pin configuration nodes act as a container for an arbitrary number of
Dnvidia,tegra20-pinmux.txt12 Tegra's pin configuration nodes act as a container for an arbitrary number of
Dnvidia,tegra210-pinmux.txt13 Tegra's pin configuration nodes act as a container for an arbitrary number of
Dimg,tz1090-pinctrl.txt12 TZ1090's pin configuration nodes act as a container for an arbitrary number of
/linux-4.1.27/drivers/clocksource/
Dbcm2835_timer.c47 struct irqaction act; member
135 timer->act.name = node->name; in bcm2835_timer_init()
136 timer->act.flags = IRQF_TIMER | IRQF_SHARED; in bcm2835_timer_init()
137 timer->act.dev_id = timer; in bcm2835_timer_init()
138 timer->act.handler = bcm2835_time_interrupt; in bcm2835_timer_init()
140 if (setup_irq(irq, &timer->act)) in bcm2835_timer_init()
/linux-4.1.27/arch/sparc/kernel/
Dsys_sparc_32.c166 struct old_sigaction __user *,act, in SYSCALL_DEFINE3()
170 return sys_sigaction(-sig, act, oact); in SYSCALL_DEFINE3()
174 const struct sigaction __user *, act, in SYSCALL_DEFINE5()
186 if (act) { in SYSCALL_DEFINE5()
188 if (copy_from_user(&new_ka.sa, act, sizeof(*act))) in SYSCALL_DEFINE5()
192 ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL); in SYSCALL_DEFINE5()
Dsys_sparc32.c147 struct compat_old_sigaction __user *,act, in COMPAT_SYSCALL_DEFINE3()
151 return compat_sys_sigaction(-sig, act, oact); in COMPAT_SYSCALL_DEFINE3()
155 struct compat_sigaction __user *,act, in COMPAT_SYSCALL_DEFINE5()
168 if (act) { in COMPAT_SYSCALL_DEFINE5()
172 ret = get_user(u_handler, &act->sa_handler); in COMPAT_SYSCALL_DEFINE5()
174 ret |= copy_from_user(&set32, &act->sa_mask, sizeof(compat_sigset_t)); in COMPAT_SYSCALL_DEFINE5()
176 ret |= get_user(new_ka.sa.sa_flags, &act->sa_flags); in COMPAT_SYSCALL_DEFINE5()
177 ret |= get_user(u_restorer, &act->sa_restorer); in COMPAT_SYSCALL_DEFINE5()
183 ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL); in COMPAT_SYSCALL_DEFINE5()
Dsys_sparc_64.c617 SYSCALL_DEFINE5(rt_sigaction, int, sig, const struct sigaction __user *, act, in SYSCALL_DEFINE5() argument
628 if (act) { in SYSCALL_DEFINE5()
630 if (copy_from_user(&new_ka.sa, act, sizeof(*act))) in SYSCALL_DEFINE5()
634 ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL); in SYSCALL_DEFINE5()
/linux-4.1.27/tools/testing/selftests/timers/
Dalarmtimer-suspend.c135 struct sigaction act; in main() local
139 sigfillset(&act.sa_mask); in main()
140 act.sa_flags = 0; in main()
141 act.sa_handler = sigalarm; in main()
142 sigaction(signum, &act, NULL); in main()
Dset-timer-lat.c189 struct sigaction act; in main() local
194 sigfillset(&act.sa_mask); in main()
195 act.sa_flags = 0; in main()
196 act.sa_handler = sigalarm; in main()
197 sigaction(signum, &act, NULL); in main()
/linux-4.1.27/arch/arm/boot/dts/
Ddove-d2plug.dts28 wlan-act {
29 label = "wlan-act";
33 bluetooth-act {
34 label = "bt-act";
Ddove-d3plug.dts23 wlan-act {
24 label = "wlan-act";
Dbcm2835-rpi-b.dts9 act {
Dkirkwood-blackarmor-nas220.dts110 pmx_act_sata0: pmx-act-sata0 {
115 pmx_act_sata1: pmx-act-sata1 {
Dbcm2835-rpi-b-plus.dts9 act {
Dbcm2835-rpi.dtsi11 act {
Dkirkwood-nsa320.dts80 pmx_mcu_act: pmx-mcu-act {
Domap5-cm-t54.dts572 /* VDD_3V_GP: act led/serial console */
Dexynos3250-rinato.dts210 wr-act = <1>;
/linux-4.1.27/samples/seccomp/
Dbpf-direct.c91 struct sigaction act; in install_emulator() local
93 memset(&act, 0, sizeof(act)); in install_emulator()
97 act.sa_sigaction = &emulator; in install_emulator()
98 act.sa_flags = SA_SIGINFO; in install_emulator()
99 if (sigaction(SIGSYS, &act, NULL) < 0) { in install_emulator()
/linux-4.1.27/arch/alpha/kernel/
Dsignal.c58 const struct osf_sigaction __user *, act, in SYSCALL_DEFINE3()
64 if (act) { in SYSCALL_DEFINE3()
66 if (!access_ok(VERIFY_READ, act, sizeof(*act)) || in SYSCALL_DEFINE3()
67 __get_user(new_ka.sa.sa_handler, &act->sa_handler) || in SYSCALL_DEFINE3()
68 __get_user(new_ka.sa.sa_flags, &act->sa_flags) || in SYSCALL_DEFINE3()
69 __get_user(mask, &act->sa_mask)) in SYSCALL_DEFINE3()
75 ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL); in SYSCALL_DEFINE3()
88 SYSCALL_DEFINE5(rt_sigaction, int, sig, const struct sigaction __user *, act, in SYSCALL_DEFINE5() argument
99 if (act) { in SYSCALL_DEFINE5()
101 if (copy_from_user(&new_ka.sa, act, sizeof(*act))) in SYSCALL_DEFINE5()
[all …]
/linux-4.1.27/tools/usb/usbip/src/
Dusbipd.c446 struct sigaction act; in set_signal() local
448 memset(&act, 0, sizeof(act)); in set_signal()
449 act.sa_handler = signal_handler; in set_signal()
450 sigemptyset(&act.sa_mask); in set_signal()
451 sigaction(SIGTERM, &act, NULL); in set_signal()
452 sigaction(SIGINT, &act, NULL); in set_signal()
453 act.sa_handler = SIG_IGN; in set_signal()
454 sigaction(SIGCLD, &act, NULL); in set_signal()
/linux-4.1.27/tools/testing/selftests/powerpc/mm/
Dsubpage_prot.c141 struct sigaction act = { in test_anon() local
153 sigaction(SIGSEGV, &act, NULL); in test_anon()
175 struct sigaction act = { in test_file() local
188 sigaction(SIGSEGV, &act, NULL); in test_file()
/linux-4.1.27/tools/perf/bench/
Dfutex-wake.c113 struct sigaction act; in bench_futex_wake() local
124 sigfillset(&act.sa_mask); in bench_futex_wake()
125 act.sa_sigaction = toggle_done; in bench_futex_wake()
126 sigaction(SIGINT, &act, NULL); in bench_futex_wake()
Dfutex-requeue.c112 struct sigaction act; in bench_futex_requeue() local
121 sigfillset(&act.sa_mask); in bench_futex_requeue()
122 act.sa_sigaction = toggle_done; in bench_futex_requeue()
123 sigaction(SIGINT, &act, NULL); in bench_futex_requeue()
Dfutex-hash.c114 struct sigaction act; in bench_futex_hash() local
127 sigfillset(&act.sa_mask); in bench_futex_hash()
128 act.sa_sigaction = toggle_done; in bench_futex_hash()
129 sigaction(SIGINT, &act, NULL); in bench_futex_hash()
/linux-4.1.27/kernel/
Dsignal.c3101 int do_sigaction(int sig, struct k_sigaction *act, struct k_sigaction *oact) in do_sigaction() argument
3107 if (!valid_signal(sig) || sig < 1 || (act && sig_kernel_only(sig))) in do_sigaction()
3116 if (act) { in do_sigaction()
3117 sigdelsetmask(&act->sa.sa_mask, in do_sigaction()
3119 *k = *act; in do_sigaction()
3353 const struct sigaction __user *, act, in SYSCALL_DEFINE4()
3364 if (act) { in SYSCALL_DEFINE4()
3365 if (copy_from_user(&new_sa.sa, act, sizeof(new_sa.sa))) in SYSCALL_DEFINE4()
3369 ret = do_sigaction(sig, act ? &new_sa : NULL, oact ? &old_sa : NULL); in SYSCALL_DEFINE4()
3380 const struct compat_sigaction __user *, act, in COMPAT_SYSCALL_DEFINE4()
[all …]
/linux-4.1.27/arch/mips/kernel/
Dsignal.c315 SYSCALL_DEFINE3(sigaction, int, sig, const struct sigaction __user *, act, in SYSCALL_DEFINE3() argument
322 if (act) { in SYSCALL_DEFINE3()
325 if (!access_ok(VERIFY_READ, act, sizeof(*act))) in SYSCALL_DEFINE3()
327 err |= __get_user(new_ka.sa.sa_handler, &act->sa_handler); in SYSCALL_DEFINE3()
328 err |= __get_user(new_ka.sa.sa_flags, &act->sa_flags); in SYSCALL_DEFINE3()
329 err |= __get_user(mask, &act->sa_mask.sig[0]); in SYSCALL_DEFINE3()
336 ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL); in SYSCALL_DEFINE3()
Dsignal32.c316 SYSCALL_DEFINE3(32_sigaction, long, sig, const struct compat_sigaction __user *, act,
323 if (act) {
327 if (!access_ok(VERIFY_READ, act, sizeof(*act)))
329 err |= __get_user(handler, &act->sa_handler);
331 err |= __get_user(new_ka.sa.sa_flags, &act->sa_flags);
332 err |= __get_user(mask, &act->sa_mask.sig[0]);
339 ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
/linux-4.1.27/arch/mips/lantiq/falcon/
Dsysctrl.c126 unsigned int act; in sysctl_reboot() local
129 act = sysctl_r32(clk->module, SYSCTL_ACT); in sysctl_reboot()
130 bits = ~act & clk->bits; in sysctl_reboot()
136 sysctl_w32(clk->module, act & clk->bits, SYSCTL_RBT); in sysctl_reboot()
/linux-4.1.27/drivers/net/ethernet/samsung/sxgbe/
Dsxgbe_mdio.c151 bool act; in sxgbe_mdio_register() local
204 act = (priv->plat->phy_addr == phy_addr); in sxgbe_mdio_register()
219 dev_name(&phy->dev), act ? " active" : ""); in sxgbe_mdio_register()
/linux-4.1.27/drivers/misc/lis3lv02d/
DKconfig16 the laptop to act as a pinball machine-esque joystick.
33 the device to act as a pinball machine-esque joystick.
/linux-4.1.27/include/uapi/linux/
Dblktrace_api.h32 #define BLK_TC_ACT(act) ((act) << BLK_TC_SHIFT) argument
/linux-4.1.27/lib/
Dasn1_decoder.c415 unsigned char act; in asn1_ber_decoder() local
417 act = machine[pc + 2]; in asn1_ber_decoder()
419 act = machine[pc + 1]; in asn1_ber_decoder()
420 ret = actions[act](context, hdr, 0, data + tdp, len); in asn1_ber_decoder()
/linux-4.1.27/drivers/net/ethernet/stmicro/stmmac/
Dstmmac_mdio.c241 int act = 0; in stmmac_mdio_register() local
263 act = (priv->plat->phy_addr == addr); in stmmac_mdio_register()
279 act ? " active" : ""); in stmmac_mdio_register()
/linux-4.1.27/scripts/
Dasn1_compiler.c1333 const char *act; in render_out_of_line_list() local
1348 act = e->action ? "_ACT" : ""; in render_out_of_line_list()
1351 render_opcode(out, "ASN1_OP_END_SEQ%s,\n", act); in render_out_of_line_list()
1354 render_opcode(out, "ASN1_OP_END_SEQ_OF%s,\n", act); in render_out_of_line_list()
1358 render_opcode(out, "ASN1_OP_END_SET%s,\n", act); in render_out_of_line_list()
1361 render_opcode(out, "ASN1_OP_END_SET_OF%s,\n", act); in render_out_of_line_list()
1380 const char *cond, *act; in render_element() local
1400 act = e->action ? "_ACT" : ""; in render_element()
1403 render_opcode(out, "ASN1_OP_%sMATCH_ANY%s,", cond, act); in render_element()
1433 cond, act, in render_element()
[all …]
/linux-4.1.27/Documentation/devicetree/bindings/usb/
Dtwlxxxx-usb.txt7 the controller has to act as host and the second interrupt number is the
9 act as device
/linux-4.1.27/drivers/acpi/
Dthermal.c70 static int act; variable
71 module_param(act, int, 0644);
72 MODULE_PARM_DESC(act, "Disable or override all lowest active trip points.");
423 if (act == -1) in acpi_thermal_trips_update()
434 if (act <= 0) in acpi_thermal_trips_update()
438 CELSIUS_TO_KELVIN(act); in acpi_thermal_trips_update()
446 CELSIUS_TO_KELVIN(act) ? in acpi_thermal_trips_update()
448 CELSIUS_TO_KELVIN(act)); in acpi_thermal_trips_update()
1179 if (act == 0) { in thermal_act()
1182 act = -1; in thermal_act()
/linux-4.1.27/drivers/block/
Dswim3.c241 static void act(struct floppy_state *fs);
385 act(fs); in start_request()
503 static void act(struct floppy_state *fs) in act() function
592 act(fs); in scan_timeout()
630 act(fs); in settle_timeout()
711 act(fs); in swim3_interrupt()
721 act(fs); in swim3_interrupt()
735 act(fs); in swim3_interrupt()
742 act(fs); in swim3_interrupt()
784 act(fs); in swim3_interrupt()
[all …]
/linux-4.1.27/drivers/input/touchscreen/
Dchipone_icn8318.c120 bool act = icn8318_touch_active(touch->event); in icn8318_irq() local
123 input_mt_report_slot_state(data->input, MT_TOOL_FINGER, act); in icn8318_irq()
124 if (!act) in icn8318_irq()
/linux-4.1.27/drivers/scsi/
Dxen-scsifront.c81 unsigned char act; member
291 if (info->shadow[ring_rsp->rqid]->act == VSCSIIF_ACT_SCSI_CDB) in scsifront_do_response()
560 ring_req->act = VSCSIIF_ACT_SCSI_CDB; in scsifront_queuecommand()
563 shadow->act = VSCSIIF_ACT_SCSI_CDB; in scsifront_queuecommand()
596 static int scsifront_action_handler(struct scsi_cmnd *sc, uint8_t act) in scsifront_action_handler() argument
633 ring_req->act = act; in scsifront_action_handler()
636 shadow->act = act; in scsifront_action_handler()
/linux-4.1.27/include/net/
Dact_api.h90 int (*act)(struct sk_buff *, const struct tc_action *, struct tcf_result *); member
95 struct nlattr *est, struct tc_action *act, int ovr,
/linux-4.1.27/net/ax25/
DKconfig58 If you say Y here, your Linux box will act as a DAMA slave; this is
60 configuration. Linux cannot yet act as a DAMA server. This option
73 If you say Y here, your Linux box will act as a DAMA master; this is
75 configuration. Linux cannot yet act as a DAMA server. This option
/linux-4.1.27/include/xen/interface/io/
Dvscsiif.h192 uint8_t act; /* command between backend and frontend */ member
/linux-4.1.27/drivers/usb/gadget/function/
Drndis.c967 struct list_head *act, *tmp; in rndis_free_response() local
969 list_for_each_safe(act, tmp, in rndis_free_response()
972 r = list_entry(act, rndis_resp_t, list); in rndis_free_response()
984 struct list_head *act, *tmp; in rndis_get_next_response() local
988 list_for_each_safe(act, tmp, in rndis_get_next_response()
991 r = list_entry(act, rndis_resp_t, list); in rndis_get_next_response()
/linux-4.1.27/kernel/irq/
Dmanage.c1305 int setup_irq(unsigned int irq, struct irqaction *act) in setup_irq() argument
1313 retval = __setup_irq(irq, desc, act); in setup_irq()
1413 void remove_irq(unsigned int irq, struct irqaction *act) in remove_irq() argument
1418 __free_irq(irq, act->dev_id); in remove_irq()
1700 void remove_percpu_irq(unsigned int irq, struct irqaction *act) in remove_percpu_irq() argument
1705 __free_percpu_irq(irq, act->percpu_dev_id); in remove_percpu_irq()
1739 int setup_percpu_irq(unsigned int irq, struct irqaction *act) in setup_percpu_irq() argument
1747 retval = __setup_irq(irq, desc, act); in setup_percpu_irq()
/linux-4.1.27/net/atm/
DKconfig46 LANE client can also act as an proxy client bridging packets between
63 This device will act like an ethernet from the kernels point of view,
/linux-4.1.27/drivers/watchdog/
Dmachzwd.c388 static void __init zf_show_action(int act) in zf_show_action() argument
392 pr_info("Watchdog using action = %s\n", str[act]); in zf_show_action()
/linux-4.1.27/drivers/mtd/nand/
Dnand_bbt.c177 int res, ret = 0, i, j, act = 0; in read_bbt() local
220 for (j = 0; j < 8; j += bits, act++) { in read_bbt()
226 (loff_t)(offs + act) << in read_bbt()
228 bbt_mark_entry(this, offs + act, in read_bbt()
238 (loff_t)(offs + act) << in read_bbt()
242 bbt_mark_entry(this, offs + act, in read_bbt()
245 bbt_mark_entry(this, offs + act, in read_bbt()
/linux-4.1.27/Documentation/devicetree/bindings/mmc/
Dmxs-mmc.txt3 The Freescale MXS Synchronous Serial Ports (SSP) can act as a MMC controller
/linux-4.1.27/include/linux/
Dhil_mlc.h93 enum hilse_act act; /* How to process this node */ member
Dhp_sdc.h72 } act; member
Dirq.h417 extern void remove_irq(unsigned int irq, struct irqaction *act);
419 extern void remove_percpu_irq(unsigned int irq, struct irqaction *act);
Dcompat.h391 const struct compat_old_sigaction __user *act,
/linux-4.1.27/drivers/scsi/osd/
Dosd_initiator.c592 __be16 act, const struct osd_obj_id *obj, u64 offset, u64 len) in _osdv1_req_encode_common() argument
602 act &= cpu_to_be16(~0x0080); /* V1 action code */ in _osdv1_req_encode_common()
604 OSD_DEBUG("OSDv1 execute opcode 0x%x\n", be16_to_cpu(act)); in _osdv1_req_encode_common()
608 ocdb->h.varlen_cdb.service_action = act; in _osdv1_req_encode_common()
617 __be16 act, const struct osd_obj_id *obj, u64 offset, u64 len) in _osdv2_req_encode_common() argument
621 OSD_DEBUG("OSDv2 execute opcode 0x%x\n", be16_to_cpu(act)); in _osdv2_req_encode_common()
625 ocdb->h.varlen_cdb.service_action = act; in _osdv2_req_encode_common()
634 __be16 act, const struct osd_obj_id *obj, u64 offset, u64 len) in _osd_req_encode_common() argument
637 _osdv1_req_encode_common(or, act, obj, offset, len); in _osd_req_encode_common()
639 _osdv2_req_encode_common(or, act, obj, offset, len); in _osd_req_encode_common()
[all …]
/linux-4.1.27/drivers/net/wireless/orinoco/
DKconfig75 adaptors are not a full PCMCIA controller but act as a more limited
86 adaptors are not a full PCMCIA controller but act as a more limited
96 adaptors are not full PCMCIA controllers, but act as a more limited
/linux-4.1.27/net/hsr/
DKconfig8 If you say Y here, then your Linux box will be able to act as a
/linux-4.1.27/fs/coda/
DKconfig13 If you say Y here, your Linux box will be able to act as a Coda
/linux-4.1.27/drivers/scsi/device_handler/
Dscsi_dh_rdac.c674 int act = 0; in rdac_activate() local
683 act = 1; in rdac_activate()
688 act = 1; in rdac_activate()
694 if (act) { in rdac_activate()
/linux-4.1.27/kernel/sched/
Ddeadline.c505 ktime_t now, act; in start_dl_timer() local
517 act = ns_to_ktime(dl_se->deadline); in start_dl_timer()
520 act = ktime_add_ns(act, delta); in start_dl_timer()
527 if (ktime_us_delta(act, now) < 0) in start_dl_timer()
530 hrtimer_set_expires(&dl_se->dl_timer, act); in start_dl_timer()
/linux-4.1.27/kernel/trace/
Dblktrace.c1145 typedef void (blk_log_action_t) (struct trace_iterator *iter, const char *act);
1147 static void blk_log_action_classic(struct trace_iterator *iter, const char *act) in blk_log_action_classic() argument
1160 secs, nsec_rem, iter->ent->pid, act, rwbs); in blk_log_action_classic()
1163 static void blk_log_action(struct trace_iterator *iter, const char *act) in blk_log_action() argument
1170 MAJOR(t->device), MINOR(t->device), act, rwbs); in blk_log_action()
1329 const char *act[2]; member
1371 log_action(iter, what2act[what].act[long_act]); in print_one_line()
/linux-4.1.27/Documentation/devicetree/bindings/sound/
Dst,sta350.txt104 act on the master volume. Otherwise, the functions will act on the
/linux-4.1.27/drivers/gpu/drm/radeon/
Dradeon_kfd.c551 uint32_t act; in kgd_hqd_is_occupied() local
556 act = read_register(kgd, CP_HQD_ACTIVE); in kgd_hqd_is_occupied()
557 if (act) { in kgd_hqd_is_occupied()
/linux-4.1.27/drivers/net/appletalk/
DKconfig11 so that your Linux box can act as a print and file server for Macs as
86 you want your Linux box to act as an Internet gateway for a zoo of
/linux-4.1.27/Documentation/virtual/kvm/devices/
Dmpic.txt9 MPIC will act as the system interrupt controller, connecting to each
Darm-vgic.txt9 legacy KVM_CREATE_IRQCHIP api. The created VGIC will act as the VM interrupt
/linux-4.1.27/Documentation/devicetree/bindings/spmi/
Dqcom,spmi-pmic-arb.txt7 The PMIC Arbiter can also act as an interrupt controller, providing interrupts
/linux-4.1.27/Documentation/devicetree/bindings/gpio/
Dgpio-max732x.txt23 The I/O expander can detect input state changes, and thus optionally act as
Dgpio-pcf857x.txt45 The I/O expander can detect input state changes, and thus optionally act as
/linux-4.1.27/net/netfilter/
Dnf_conntrack_h323_asn1.c27 #define IFTHEN(cond, act) if(cond){act;} argument
35 #define IFTHEN(cond, act) argument
/linux-4.1.27/tools/perf/
Dbuiltin-top.c459 struct sigaction act = { in perf_top__handle_keypress() local
464 sigaction(SIGWINCH, &act, NULL); in perf_top__handle_keypress()
1259 struct sigaction act = { in cmd_top() local
1264 sigaction(SIGWINCH, &act, NULL); in cmd_top()
/linux-4.1.27/Documentation/devicetree/bindings/leds/
Dcommon.txt24 "backlight" - LED will act as a back-light, controlled by the framebuffer
/linux-4.1.27/net/bridge/
DKconfig11 If you say Y here, then your Linux box will be able to act as an
/linux-4.1.27/drivers/staging/iio/Documentation/
Dinkernel.txt3 The IIO subsystem can act as a layer under other elements of the kernel
/linux-4.1.27/drivers/hwtracing/coresight/
DKconfig28 Depending on its configuration the device can act as a link (embedded
/linux-4.1.27/drivers/input/misc/
Dhp_sdc_rtc.c105 t.act.semaphore = &tsem; in hp_sdc_rtc_do_read_bbrtc()
177 t.act.semaphore = &i8042tregs; in hp_sdc_rtc_read_i8042timer()
/linux-4.1.27/Documentation/
Dvolatile-considered-harmful.txt35 primitives act as memory barriers - they are explicitly written to do so -
68 waiting is generally an anti-social act to begin with.
Dlockup-watchdogs.txt5 The Linux kernel can act as a watchdog to detect both soft and hard
Dmemory-barriers.txt457 pair is -not- guaranteed to act as a full memory barrier. However, after
888 Firstly, write barriers act as partial orderings on store operations.
926 Secondly, data dependency barriers act as partial orderings on data-dependent
1314 The Linux kernel has a variety of different barriers that act at different
1846 CPU or task, or (b) the RELEASE and ACQUIRE act on the same variable.
1948 (RELEASE equivalent) will act as compiler barriers only. So if memory or I/O
2645 barriers for the most part act at the interface between the CPU and its cache
2646 (memory barriers logically act on the dotted line in the following diagram):
Dnommu-mmap.txt201 act on a complete mapping.
Dparport-lowlevel.txt151 i.e. functions that act on data,
/linux-4.1.27/Documentation/devicetree/bindings/net/
Dcpsw.txt26 - dual_emac : Specifies Switch to act as Dual EMAC
/linux-4.1.27/Documentation/laptops/
Dtoshiba_haps.txt27 userspace tools or daemons act accordingly, as well as providing a sysfs
/linux-4.1.27/Documentation/devicetree/bindings/powerpc/fsl/
Dboard.txt43 Some BCSR registers act as simple GPIO controllers, each such
/linux-4.1.27/drivers/staging/speakup/
DDefaultKeyAssignments6 We have remapped the insert or zero key on the keypad to act as a
/linux-4.1.27/Documentation/hwmon/
Dadm102536 different manners. It can act as the +12V power-supply voltage analog
Dpmbus-core22 Also, different PMBUs devices act differently if non-supported commands are
/linux-4.1.27/Documentation/vm/
Dzsmalloc.txt14 pages act as a single higher-order page i.e. an object can span 0-order
/linux-4.1.27/Documentation/networking/mac80211_hwsim/
DREADME48 one to act as an access point and the other as a station that
/linux-4.1.27/Documentation/devicetree/bindings/arm/
Dvexpress-sysreg.txt59 This block also can also act a bridge to the platform's configuration
Dgic-v3.txt28 has a value of 0 or 1, cells 4 and beyond act as padding, and may be
/linux-4.1.27/drivers/net/wireless/hostap/
DKconfig20 Host AP mode that allows the card to act as an IEEE 802.11
/linux-4.1.27/drivers/usb/core/
DKconfig50 "Dual-Role" device, which can act as either a device
/linux-4.1.27/drivers/pci/host/
DKconfig11 act both as EP and RC. This reuses the Designware core.
/linux-4.1.27/Documentation/devicetree/bindings/powerpc/fsl/cpm_qe/
Dqe.txt7 Basically, it is a bus of devices, that could act more or less
/linux-4.1.27/Documentation/filesystems/nfs/
Drpc-server-gss.txt8 NFSv4.1 and higher don't require the client to act as a server for the
Dnfs-rdma.txt207 We recommend that you use two machines, one to act as the client and
208 one to act as the server.
/linux-4.1.27/arch/um/
DKconfig.net140 at least one UML with one of the other transports to act as a
164 UML act as a network monitor for the host. You must have libcap
/linux-4.1.27/drivers/staging/rtl8192u/ieee80211/
Dieee80211_softmac.c1898 u8 *act = ieee80211_get_payload(header); in ieee80211_process_action() local
1901 if (act == NULL) in ieee80211_process_action()
1906 tmp = *act; in ieee80211_process_action()
1907 act ++; in ieee80211_process_action()
1910 if (*act == ACT_ADDBAREQ) in ieee80211_process_action()
1912 else if (*act == ACT_ADDBARSP) in ieee80211_process_action()
1914 else if (*act == ACT_DELBA) in ieee80211_process_action()
/linux-4.1.27/fs/ncpfs/
DKconfig16 You do not have to say Y here if you want your Linux box to act as a
/linux-4.1.27/Documentation/sound/alsa/
Dserial-u16550.txt71 the MIDI Outs to act independently at double the aggregate throughput of M/B,
/linux-4.1.27/Documentation/misc-devices/
Dlis3lv02d35 the laptop to act as a pinball machine-esque joystick. Joystick device can be
/linux-4.1.27/Documentation/frv/
Datomic-ops.txt29 (*) The CCCR.CC3 register is reserved within the kernel to act as an atomic modify abort flag.
/linux-4.1.27/Documentation/powerpc/
Dfirmware-assisted-dump.txt110 so that it can act as a receptacle for a copy of the boot memory
184 fadump is enabled in the kernel and act accordingly.
Dhvcs.txt215 Applications (e.g. "minicom" and "screen") that act as terminal emulators
227 act as a conduit for data transfer to and from the tty device. They do not
/linux-4.1.27/drivers/net/wireless/rtlwifi/
Dbase.c1234 u8 *act = (u8 *)(((u8 *)skb->data + MAC80211_3ADDR_LEN)); in rtl_action_proc() local
1240 category = *act; in rtl_action_proc()
1241 act++; in rtl_action_proc()
1244 switch (*act) { in rtl_action_proc()
/linux-4.1.27/Documentation/input/
Datarikbd.txt78 MOUSE BUTTON ACTION has set the buttons to act like part of the keyboard.
220 ; mss=100, mouse buttons act like keys
225 When buttons act like keys, LEFT=0x74 & RIGHT=0x75.
356 N.B. If the mouse buttons have been commanded to act like keyboard keys, this
Dmulti-touch-protocol.txt42 input_sync() function. This instructs the receiver to act upon events
/linux-4.1.27/Documentation/mic/mpssd/
Dmpssd.c1562 struct sigaction act = { in init_mic() local
1603 sigemptyset(&act.sa_mask); in init_mic()
1604 err = sigaction(SIGUSR1, &act, NULL); in init_mic()
/linux-4.1.27/drivers/tty/vt/
Dcp437.uni49 # have to act as substitutes, especially the upper-case characters.
/linux-4.1.27/Documentation/devicetree/bindings/mfd/
Dqcom-rpm.txt213 mode, i.e. to act as a switch
/linux-4.1.27/security/smack/
Dsmack_lsm.c2336 int act) in smk_ipv6_port_check() argument
2351 if (act == SMK_RECEIVING) { in smk_ipv6_port_check()
2375 if (act == SMK_RECEIVING) { in smk_ipv6_port_check()
2384 if (act == SMK_CONNECTING) in smk_ipv6_port_check()
2395 if (act == SMK_RECEIVING) in smk_ipv6_port_check()
/linux-4.1.27/drivers/xen/
Dxen-scsiback.c593 enum tcm_tmreq_table act, int tag) in scsiback_device_action() argument
610 rc = core_tmr_alloc_req(se_cmd, tmr, act, GFP_KERNEL); in scsiback_device_action()
754 switch (ring_req.act) { in scsiback_do_cmd_fn()
/linux-4.1.27/scripts/kconfig/
Dqconf.cc893 void ConfigView::setOptionMode(QAction *act) in setOptionMode() argument
895 if (act == showNormalAction) in setOptionMode()
897 else if (act == showAllAction) in setOptionMode()
/linux-4.1.27/Documentation/arm/
DIXP4xx147 and IXP2400/2800 system to act as the system controller. It simply
Dvlocks.txt73 priority rule to act as a tie-breaker, or any counters which could
/linux-4.1.27/arch/arm/mm/
Dcache-l2x0.c593 static int l2c310_cpu_enable_flz(struct notifier_block *nb, unsigned long act, void *data) in l2c310_cpu_enable_flz() argument
595 switch (act & ~CPU_TASKS_FROZEN) { in l2c310_cpu_enable_flz()
/linux-4.1.27/Documentation/networking/
Dl2tp.txt129 LNSMODE - 0 => act as LAC.
130 1 => act as LNS.
DLICENSE.qlge83 covered by this License; they are outside its scope. The act of
97 You may charge a fee for the physical act of transferring a copy, and
DLICENSE.qlcnic83 covered by this License; they are outside its scope. The act of
97 You may charge a fee for the physical act of transferring a copy, and
Dde4x5.txt28 ZNYX346 10/100 4 port (can act as a 10/100 bridge!)
Dcs89x0.txt470 connection to act as the Responder. Run the CS8900/20 Setup Utility
/linux-4.1.27/drivers/net/ethernet/qlogic/qlcnic/
Dqlcnic_main.c3315 int act, state, active_mask; in qlcnic_check_drv_state() local
3319 act = QLC_SHARED_REG_RD32(adapter, QLCNIC_CRB_DRV_ACTIVE); in qlcnic_check_drv_state()
3323 act = act & active_mask; in qlcnic_check_drv_state()
3326 if (((state & 0x11111111) == (act & 0x11111111)) || in qlcnic_check_drv_state()
3327 ((act & 0x11111111) == ((state >> 1) & 0x11111111))) in qlcnic_check_drv_state()
/linux-4.1.27/sound/drivers/
DKconfig42 driver for the PC speaker which allows it to act like a primitive
/linux-4.1.27/drivers/net/ethernet/brocade/bna/
Dbfa_ioc.c1467 u32 act:1; member
1479 u32 act:1;
1531 cmd.r.act = 1; in bfa_flash_set_cmd()
1556 if (cmd.r.act) in bfa_flash_cmd_act_check()
/linux-4.1.27/drivers/usb/host/
Dxhci.c3805 const char *act = setup == SETUP_CONTEXT_ONLY ? "context" : "address"; in xhci_setup_device() local
3913 act, udev->slot_id); in xhci_setup_device()
3917 dev_warn(&udev->dev, "Device not responding to setup %s.\n", act); in xhci_setup_device()
3922 "ERROR: Incompatible device for setup %s command\n", act); in xhci_setup_device()
3927 "Successful setup %s command", act); in xhci_setup_device()
3932 act, command->status); in xhci_setup_device()
/linux-4.1.27/Documentation/blockdev/
Dcciss.txt184 act as a RAID controller for disk drives, so the vast majority of commands
/linux-4.1.27/tools/perf/util/
Devlist.c1390 struct sigaction act = { in perf_evlist__prepare_workload() local
1394 sigaction(SIGUSR1, &act, NULL); in perf_evlist__prepare_workload()
/linux-4.1.27/Documentation/scsi/
DLICENSE.qla4xxx84 covered by this License; they are outside its scope. The act of
98 You may charge a fee for the physical act of transferring a copy, and
DLICENSE.qla2xxx85 covered by this License; they are outside its scope. The act of
99 You may charge a fee for the physical act of transferring a copy, and
/linux-4.1.27/drivers/staging/rtl8192e/
Drtllib_softmac.c2197 u8 *act = rtllib_get_payload((struct rtllib_hdr *)header); in rtllib_process_action() local
2200 if (act == NULL) { in rtllib_process_action()
2206 category = *act; in rtllib_process_action()
2207 act++; in rtllib_process_action()
2210 switch (*act) { in rtllib_process_action()
Dlicense77 covered by this License; they are outside its scope. The act of running
90 You may charge a fee for the physical act of transferring a copy, and you
/linux-4.1.27/Documentation/virtual/kvm/
Dppc-pv.txt138 also act on the shared page. So calling privileged instructions still works as
/linux-4.1.27/drivers/scsi/bfa/
Dbfa_ioc.c4802 res->act = swab32(res->act); in bfa_diag_memtest_done()
4808 bfa_trc(diag, res->act); in bfa_diag_memtest_done()
6701 u32 act:1; member
6713 u32 act:1;
6771 cmd.r.act = 1; in bfa_flash_set_cmd()
6796 if (cmd.r.act) in bfa_flash_cmd_act_check()
Dbfa_defs.h1167 u32 act; /* actually value read */ member
/linux-4.1.27/tools/usb/usbip/
DCOPYING73 covered by this License; they are outside its scope. The act of
87 You may charge a fee for the physical act of transferring a copy, and
/linux-4.1.27/drivers/staging/rtl8192u/
Dcopying73 covered by this License; they are outside its scope. The act of
87 You may charge a fee for the physical act of transferring a copy, and
/linux-4.1.27/
DCOPYING89 covered by this License; they are outside its scope. The act of
103 You may charge a fee for the physical act of transferring a copy, and
/linux-4.1.27/Documentation/security/
Dcredentials.txt74 Most of the objects in the system are inactive: they don't act on other
109 is granted or denied permission to act in the desired manner on the
/linux-4.1.27/net/ipv4/
DKconfig26 Note that your box can only act as a router if you enable IP
219 This is used if you want your machine to act as a router for IP
/linux-4.1.27/drivers/net/
DKconfig356 This driver allows the kernel to act as a Xen network driver
/linux-4.1.27/Documentation/gpio/
Dconsumer.txt214 that can't be accessed from hardIRQ handlers, these calls act the same as the
Dgpio-legacy.txt222 on GPIOs that can't be accessed from hardIRQ handlers, these calls act
/linux-4.1.27/Documentation/target/
Dtcmu-design.txt26 allows userspace programs to be written which act as iSCSI targets.
/linux-4.1.27/Documentation/fmc/
Dcarrier.txt66 * op: the operations to act on the device.
/linux-4.1.27/Documentation/usb/
Dproc_usb_info.txt216 USB devices may have multiple configurations, each of which act
/linux-4.1.27/Documentation/video4linux/cx2341x/
Dfw-decoder-regs.txt682 bit(s) act as a simple transparency switch, with 0 being solid & 1 being
/linux-4.1.27/Documentation/rapidio/
Drapidio.txt85 common services may act separately from device-specific drivers or be used by
/linux-4.1.27/arch/s390/
DKconfig585 This driver allows usage of EADM subchannels. EADM subchannels act
/linux-4.1.27/Documentation/development-process/
D5.Posting107 to a single file as 500 separate patches - an act which did not make him
/linux-4.1.27/Documentation/filesystems/caching/
Dcachefiles.txt343 and asks LSM to supply a security ID as which it should act given the
/linux-4.1.27/drivers/misc/
DKconfig222 Images which act independently of each other and have
/linux-4.1.27/Documentation/crypto/
Ddescore-readme.txt302 is called with m, the routine will act like standard des
/linux-4.1.27/Documentation/trace/
Dring-buffer-design.txt66 algorithm. The writers act like a "stack". The way interrupts works
/linux-4.1.27/Documentation/video4linux/
Dvivid.txt15 These inputs and outputs act exactly as a real hardware device would behave. This
760 Disconnect: emulates a USB disconnect. The device will act as if it has
/linux-4.1.27/drivers/platform/x86/
DKconfig480 the laptop to act as a pinball machine-esque joystick.
/linux-4.1.27/Documentation/cgroups/
Dcgroups.txt53 anything that wants to act on a group of processes, e.g. a
Dmemory.txt784 "Activity Manager") might analyze vmstat and act in advance (i.e.

12