/linux-4.4.14/drivers/s390/scsi/ |
D | zfcp_erp.c | 64 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.4.14/drivers/s390/block/ |
D | dasd_fba.c | 477 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.4.14/Documentation/filesystems/ |
D | dnotify_test.c | 17 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()
|
D | ext2.txt | 17 bsddf (*) Makes `df' act like BSD. 18 minixdf Makes `df' act like Minix.
|
D | ext4.txt | 215 bsddf (*) Make 'df' act like BSD. 216 minixdf Make 'df' act like Minix.
|
/linux-4.4.14/net/sched/ |
D | act_api.c | 308 int tcf_register_action(struct tc_action_ops *act, unsigned int mask) in tcf_register_action() argument 314 if (!act->act || !act->dump || !act->init) in tcf_register_action() 318 if (!act->lookup) in tcf_register_action() 319 act->lookup = tcf_hash_search; in tcf_register_action() 320 if (!act->walk) in tcf_register_action() 321 act->walk = tcf_generic_walker; in tcf_register_action() 323 act->hinfo = kmalloc(sizeof(struct tcf_hashinfo), GFP_KERNEL); in tcf_register_action() 324 if (!act->hinfo) in tcf_register_action() 326 err = tcf_hashinfo_init(act->hinfo, mask); in tcf_register_action() 328 kfree(act->hinfo); in tcf_register_action() [all …]
|
D | act_bpf.c | 36 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() 129 static int tcf_bpf_dump(struct sk_buff *skb, struct tc_action *act, in tcf_bpf_dump() argument 133 struct tcf_bpf *prog = act->priv; in tcf_bpf_dump() 275 struct nlattr *est, struct tc_action *act, in tcf_bpf_init() argument 297 if (!tcf_hash_check(parm->index, act, bind)) { in tcf_bpf_init() 298 ret = tcf_hash_create(parm->index, est, act, in tcf_bpf_init() 309 tcf_hash_release(act, bind); in tcf_bpf_init() 329 prog = to_bpf(act); in tcf_bpf_init() 347 tcf_hash_insert(act); in tcf_bpf_init() [all …]
|
D | cls_api.c | 523 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()
|
D | act_ipt.c | 267 .act = tcf_ipt, 277 .act = tcf_ipt,
|
D | act_connmark.c | 176 .act = tcf_connmark,
|
D | act_simple.c | 168 .act = tcf_simp,
|
D | act_gact.c | 190 .act = tcf_gact,
|
D | act_skbedit.c | 180 .act = tcf_skbedit,
|
D | act_vlan.c | 188 .act = tcf_vlan,
|
D | act_pedit.c | 218 .act = tcf_pedit,
|
D | act_mirred.c | 256 .act = tcf_mirred,
|
D | act_nat.c | 289 .act = tcf_nat,
|
D | act_police.c | 353 .act = tcf_act_police,
|
D | act_csum.c | 566 .act = tcf_csum,
|
/linux-4.4.14/drivers/input/serio/ |
D | hp_sdc.c | 201 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 …]
|
D | gscps2.c | 95 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()
|
D | hp_sdc_mlc.c | 196 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()
|
D | hil_mlc.c | 588 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.4.14/drivers/clocksource/ |
D | bcm2835_timer.c | 47 struct irqaction act; member 119 timer->act.name = node->name; in bcm2835_timer_init() 120 timer->act.flags = IRQF_TIMER | IRQF_SHARED; in bcm2835_timer_init() 121 timer->act.dev_id = timer; in bcm2835_timer_init() 122 timer->act.handler = bcm2835_time_interrupt; in bcm2835_timer_init() 124 if (setup_irq(irq, &timer->act)) in bcm2835_timer_init()
|
D | timer-imx-gpt.c | 86 struct irqaction act; member 305 struct irqaction *act = &imxtm->act; in mxc_clockevent_init() local 319 act->name = "i.MX Timer Tick"; in mxc_clockevent_init() 320 act->flags = IRQF_TIMER | IRQF_IRQPOLL; in mxc_clockevent_init() 321 act->handler = mxc_timer_interrupt; in mxc_clockevent_init() 322 act->dev_id = ced; in mxc_clockevent_init() 324 return setup_irq(imxtm->irq, act); in mxc_clockevent_init()
|
/linux-4.4.14/Documentation/devicetree/bindings/pinctrl/ |
D | marvell,kirkwood-pinctrl.txt | 67 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 …]
|
D | marvell,dove-pinctrl.txt | 22 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*
|
D | marvell,orion-pinctrl.txt | 53 mpp6 6 gpio, pci(req5), nand(re0), sata0(act) 54 mpp7 7 gpio, pci(gnt5), nand(we0), sata1(act)
|
D | pinctrl-sirf.txt | 16 SiRFprimaII's pinmux nodes act as a container for an arbitrary number of subnodes.
|
D | pinctrl-atlas7.txt | 63 SiRFatlas7's pinmux nodes act as a container for an abitrary number of subnodes.
|
D | lantiq,pinctrl-falcon.txt | 12 Lantiq's pin configuration nodes act as a container for an arbitrary number of
|
D | qcom,apq8064-pinctrl.txt | 21 Qualcomm's pin configuration nodes act as a container for an arbitrary number of
|
D | qcom,msm8660-pinctrl.txt | 21 Qualcomm's pin configuration nodes act as a container for an arbitrary number of
|
D | qcom,ipq8064-pinctrl.txt | 21 Qualcomm's pin configuration nodes act as a container for an arbitrary number of
|
D | pinctrl-palmas.txt | 16 Palmas's pin configuration nodes act as a container for an arbitrary number of
|
D | xlnx,zynq-pinctrl.txt | 12 Zynq's pin configuration nodes act as a container for an arbitrary number of
|
D | qcom,msm8974-pinctrl.txt | 21 Qualcomm's pin configuration nodes act as a container for an arbitrary number of
|
D | lantiq,pinctrl-xway.txt | 12 Lantiq's pin configuration nodes act as a container for an arbitrary number of
|
D | ste,nomadik.txt | 14 ST Ericsson's pin configuration nodes act as a container for an arbitrary number of
|
D | img,tz1090-pdc-pinctrl.txt | 12 TZ1090-PDC's pin configuration nodes act as a container for an arbitrary number
|
D | pinctrl_spear.txt | 35 SPEAr's pinmux nodes act as a container for an arbitrary number of subnodes. Each
|
D | qcom,msm8960-pinctrl.txt | 50 The pin configuration nodes act as a container for an arbitrary number of
|
D | qcom,apq8084-pinctrl.txt | 50 The pin configuration nodes act as a container for an arbitrary number of
|
D | qcom,msm8916-pinctrl.txt | 50 The pin configuration nodes act as a container for an arbitrary number of
|
D | qcom,pmic-mpp.txt | 50 The pin configuration nodes act as a container for an arbitrary number of
|
D | qcom,pmic-gpio.txt | 49 The pin configuration nodes act as a container for an arbitrary number of
|
D | nvidia,tegra20-pinmux.txt | 12 Tegra's pin configuration nodes act as a container for an arbitrary number of
|
D | nvidia,tegra210-pinmux.txt | 13 Tegra's pin configuration nodes act as a container for an arbitrary number of
|
D | img,tz1090-pinctrl.txt | 12 TZ1090's pin configuration nodes act as a container for an arbitrary number of
|
/linux-4.4.14/arch/sparc/kernel/ |
D | sys_sparc_32.c | 166 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()
|
D | sys_sparc32.c | 147 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()
|
D | sys_sparc_64.c | 617 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.4.14/tools/testing/selftests/timers/ |
D | alarmtimer-suspend.c | 135 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()
|
D | set-timer-lat.c | 189 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()
|
D | leap-a-day.c | 191 struct sigaction act; in main() local 235 sigfillset(&act.sa_mask); in main() 236 act.sa_flags = 0; in main() 237 act.sa_handler = sigalarm; in main() 238 sigaction(signum, &act, NULL); in main()
|
/linux-4.4.14/arch/arm/boot/dts/ |
D | dove-d2plug.dts | 28 wlan-act { 29 label = "wlan-act"; 33 bluetooth-act { 34 label = "bt-act";
|
D | dove-d3plug.dts | 23 wlan-act { 24 label = "wlan-act";
|
D | bcm2835-rpi-b.dts | 9 act {
|
D | bcm2835-rpi-b-rev2.dts | 9 act {
|
D | kirkwood-blackarmor-nas220.dts | 110 pmx_act_sata0: pmx-act-sata0 { 115 pmx_act_sata1: pmx-act-sata1 {
|
D | bcm2835-rpi-a-plus.dts | 9 act {
|
D | bcm2835-rpi-b-plus.dts | 9 act {
|
D | bcm2835-rpi.dtsi | 11 act {
|
D | kirkwood-nsa320.dts | 80 pmx_mcu_act: pmx-mcu-act {
|
D | omap5-cm-t54.dts | 572 /* VDD_3V_GP: act led/serial console */
|
D | exynos3250-rinato.dts | 231 wr-act = <1>;
|
/linux-4.4.14/samples/seccomp/ |
D | bpf-direct.c | 91 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.4.14/tools/perf/ui/browsers/ |
D | hists.c | 1444 int (*fn)(struct hist_browser *browser, struct popup_action *act); 1448 do_annotate(struct hist_browser *browser, struct popup_action *act) in do_annotate() argument 1458 notes = symbol__annotation(act->ms.sym); in do_annotate() 1463 err = map_symbol__tui_annotate(&act->ms, evsel, browser->hbt); in do_annotate() 1480 struct popup_action *act, char **optstr, in add_annotate_opt() argument 1489 act->ms.map = map; in add_annotate_opt() 1490 act->ms.sym = sym; in add_annotate_opt() 1491 act->fn = do_annotate; in add_annotate_opt() 1496 do_zoom_thread(struct hist_browser *browser, struct popup_action *act) in do_zoom_thread() argument 1498 struct thread *thread = act->thread; in do_zoom_thread() [all …]
|
/linux-4.4.14/arch/alpha/kernel/ |
D | signal.c | 58 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.4.14/tools/usb/usbip/src/ |
D | usbipd.c | 446 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.4.14/tools/testing/selftests/powerpc/mm/ |
D | subpage_prot.c | 141 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.4.14/tools/perf/bench/ |
D | futex-wake.c | 118 struct sigaction act; in bench_futex_wake() local 129 sigfillset(&act.sa_mask); in bench_futex_wake() 130 act.sa_sigaction = toggle_done; in bench_futex_wake() 131 sigaction(SIGINT, &act, NULL); in bench_futex_wake()
|
D | futex-requeue.c | 112 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()
|
D | futex-lock-pi.c | 142 struct sigaction act; in bench_futex_lock_pi() local 151 sigfillset(&act.sa_mask); in bench_futex_lock_pi() 152 act.sa_sigaction = toggle_done; in bench_futex_lock_pi() 153 sigaction(SIGINT, &act, NULL); in bench_futex_lock_pi()
|
D | futex-hash.c | 114 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()
|
D | futex-wake-parallel.c | 200 struct sigaction act; in bench_futex_wake_parallel() local 211 sigfillset(&act.sa_mask); in bench_futex_wake_parallel() 212 act.sa_sigaction = toggle_done; in bench_futex_wake_parallel() 213 sigaction(SIGINT, &act, NULL); in bench_futex_wake_parallel()
|
/linux-4.4.14/arch/mips/kernel/ |
D | signal32.c | 141 SYSCALL_DEFINE3(32_sigaction, long, sig, const struct compat_sigaction __user *, act, 148 if (act) { 152 if (!access_ok(VERIFY_READ, act, sizeof(*act))) 154 err |= __get_user(handler, &act->sa_handler); 156 err |= __get_user(new_ka.sa.sa_flags, &act->sa_flags); 157 err |= __get_user(mask, &act->sa_mask.sig[0]); 164 ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
|
D | signal.c | 554 SYSCALL_DEFINE3(sigaction, int, sig, const struct sigaction __user *, act, in SYSCALL_DEFINE3() argument 561 if (act) { in SYSCALL_DEFINE3() 564 if (!access_ok(VERIFY_READ, act, sizeof(*act))) in SYSCALL_DEFINE3() 566 err |= __get_user(new_ka.sa.sa_handler, &act->sa_handler); in SYSCALL_DEFINE3() 567 err |= __get_user(new_ka.sa.sa_flags, &act->sa_flags); in SYSCALL_DEFINE3() 568 err |= __get_user(mask, &act->sa_mask.sig[0]); in SYSCALL_DEFINE3() 575 ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL); in SYSCALL_DEFINE3()
|
/linux-4.4.14/kernel/ |
D | signal.c | 3047 int do_sigaction(int sig, struct k_sigaction *act, struct k_sigaction *oact) in do_sigaction() argument 3053 if (!valid_signal(sig) || sig < 1 || (act && sig_kernel_only(sig))) in do_sigaction() 3062 if (act) { in do_sigaction() 3063 sigdelsetmask(&act->sa.sa_mask, in do_sigaction() 3065 *k = *act; in do_sigaction() 3299 const struct sigaction __user *, act, in SYSCALL_DEFINE4() 3310 if (act) { in SYSCALL_DEFINE4() 3311 if (copy_from_user(&new_sa.sa, act, sizeof(new_sa.sa))) in SYSCALL_DEFINE4() 3315 ret = do_sigaction(sig, act ? &new_sa : NULL, oact ? &old_sa : NULL); in SYSCALL_DEFINE4() 3326 const struct compat_sigaction __user *, act, in COMPAT_SYSCALL_DEFINE4() [all …]
|
/linux-4.4.14/arch/mips/lantiq/falcon/ |
D | sysctrl.c | 126 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.4.14/drivers/net/ethernet/samsung/sxgbe/ |
D | sxgbe_mdio.c | 151 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.4.14/drivers/misc/lis3lv02d/ |
D | Kconfig | 16 the laptop to act as a pinball machine-esque joystick. 33 the device to act as a pinball machine-esque joystick.
|
/linux-4.4.14/include/uapi/linux/ |
D | blktrace_api.h | 32 #define BLK_TC_ACT(act) ((act) << BLK_TC_SHIFT) argument
|
/linux-4.4.14/scripts/ |
D | asn1_compiler.c | 1399 const char *act; in render_out_of_line_list() local 1414 act = e->action ? "_ACT" : ""; in render_out_of_line_list() 1417 render_opcode(out, "ASN1_OP_END_SEQ%s,\n", act); in render_out_of_line_list() 1420 render_opcode(out, "ASN1_OP_END_SEQ_OF%s,\n", act); in render_out_of_line_list() 1424 render_opcode(out, "ASN1_OP_END_SET%s,\n", act); in render_out_of_line_list() 1427 render_opcode(out, "ASN1_OP_END_SET_OF%s,\n", act); in render_out_of_line_list() 1446 const char *cond, *act; in render_element() local 1464 act = e->action ? "_ACT" : ""; in render_element() 1468 cond, act, skippable ? "_OR_SKIP" : ""); in render_element() 1496 cond, act, in render_element() [all …]
|
/linux-4.4.14/lib/ |
D | asn1_decoder.c | 425 unsigned char act; in asn1_ber_decoder() local 427 act = machine[pc + 2]; in asn1_ber_decoder() 429 act = machine[pc + 1]; in asn1_ber_decoder() 430 ret = actions[act](context, hdr, 0, data + tdp, len); in asn1_ber_decoder()
|
/linux-4.4.14/drivers/acpi/ |
D | thermal.c | 66 static int act; variable 67 module_param(act, int, 0644); 68 MODULE_PARM_DESC(act, "Disable or override all lowest active trip points."); 419 if (act == -1) in acpi_thermal_trips_update() 430 if (act <= 0) in acpi_thermal_trips_update() 434 CELSIUS_TO_DECI_KELVIN(act); in acpi_thermal_trips_update() 442 CELSIUS_TO_DECI_KELVIN(act) ? in acpi_thermal_trips_update() 444 CELSIUS_TO_DECI_KELVIN(act)); in acpi_thermal_trips_update() 1178 if (act == 0) { in thermal_act() 1181 act = -1; in thermal_act()
|
/linux-4.4.14/drivers/net/ethernet/stmicro/stmmac/ |
D | stmmac_mdio.c | 244 int act = 0; in stmmac_mdio_register() local 266 act = (priv->plat->phy_addr == addr); in stmmac_mdio_register() 282 act ? " active" : ""); in stmmac_mdio_register()
|
/linux-4.4.14/drivers/block/ |
D | swim3.c | 241 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.4.14/Documentation/devicetree/bindings/usb/ |
D | twlxxxx-usb.txt | 7 the controller has to act as host and the second interrupt number is the 9 act as device
|
/linux-4.4.14/drivers/scsi/ |
D | xen-scsifront.c | 81 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.4.14/drivers/input/touchscreen/ |
D | ft6236.c | 122 bool act = (event == FT6236_EVENT_PRESS_DOWN || in ft6236_interrupt() local 126 input_mt_report_slot_state(input, MT_TOOL_FINGER, act); in ft6236_interrupt() 127 if (!act) in ft6236_interrupt()
|
D | chipone_icn8318.c | 120 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.4.14/include/net/ |
D | act_api.h | 103 int (*act)(struct sk_buff *, const struct tc_action *, struct tcf_result *); member 108 struct nlattr *est, struct tc_action *act, int ovr,
|
/linux-4.4.14/net/ax25/ |
D | Kconfig | 58 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.4.14/include/xen/interface/io/ |
D | vscsiif.h | 192 uint8_t act; /* command between backend and frontend */ member
|
/linux-4.4.14/drivers/usb/gadget/function/ |
D | rndis.c | 1010 struct list_head *act, *tmp; in rndis_free_response() local 1012 list_for_each_safe(act, tmp, &(params->resp_queue)) in rndis_free_response() 1014 r = list_entry(act, rndis_resp_t, list); in rndis_free_response() 1026 struct list_head *act, *tmp; in rndis_get_next_response() local 1030 list_for_each_safe(act, tmp, &(params->resp_queue)) in rndis_get_next_response() 1032 r = list_entry(act, rndis_resp_t, list); in rndis_get_next_response()
|
/linux-4.4.14/kernel/irq/ |
D | manage.c | 1407 int setup_irq(unsigned int irq, struct irqaction *act) in setup_irq() argument 1415 retval = __setup_irq(irq, desc, act); in setup_irq() 1523 void remove_irq(unsigned int irq, struct irqaction *act) in remove_irq() argument 1528 __free_irq(irq, act->dev_id); in remove_irq() 1810 void remove_percpu_irq(unsigned int irq, struct irqaction *act) in remove_percpu_irq() argument 1815 __free_percpu_irq(irq, act->percpu_dev_id); in remove_percpu_irq() 1850 int setup_percpu_irq(unsigned int irq, struct irqaction *act) in setup_percpu_irq() argument 1858 retval = __setup_irq(irq, desc, act); in setup_percpu_irq()
|
/linux-4.4.14/net/atm/ |
D | Kconfig | 46 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.4.14/drivers/watchdog/ |
D | machzwd.c | 388 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.4.14/drivers/mtd/nand/ |
D | nand_bbt.c | 174 int res, ret = 0, i, j, act = 0; in read_bbt() local 217 for (j = 0; j < 8; j += bits, act++) { in read_bbt() 223 (loff_t)(offs + act) << in read_bbt() 225 bbt_mark_entry(this, offs + act, in read_bbt() 235 (loff_t)(offs + act) << in read_bbt() 239 bbt_mark_entry(this, offs + act, in read_bbt() 242 bbt_mark_entry(this, offs + act, in read_bbt()
|
/linux-4.4.14/include/linux/ |
D | hil_mlc.h | 93 enum hilse_act act; /* How to process this node */ member
|
D | hp_sdc.h | 72 } act; member
|
D | irq.h | 432 extern void remove_irq(unsigned int irq, struct irqaction *act); 434 extern void remove_percpu_irq(unsigned int irq, struct irqaction *act);
|
D | compat.h | 391 const struct compat_old_sigaction __user *act,
|
/linux-4.4.14/Documentation/devicetree/bindings/mmc/ |
D | mxs-mmc.txt | 3 The Freescale MXS Synchronous Serial Ports (SSP) can act as a MMC controller
|
D | mtk-sd.txt | 3 The MTK MSDC can act as a MMC controller
|
/linux-4.4.14/drivers/scsi/osd/ |
D | osd_initiator.c | 592 __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.4.14/drivers/net/wireless/orinoco/ |
D | Kconfig | 75 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.4.14/fs/coda/ |
D | Kconfig | 13 If you say Y here, your Linux box will be able to act as a Coda
|
/linux-4.4.14/net/hsr/ |
D | Kconfig | 8 If you say Y here, then your Linux box will be able to act as a
|
/linux-4.4.14/drivers/gpu/drm/amd/amdgpu/ |
D | amdgpu_amdkfd_gfx_v8.c | 315 uint32_t act; in kgd_hqd_is_occupied() local 320 act = RREG32(mmCP_HQD_ACTIVE); in kgd_hqd_is_occupied() 321 if (act) { in kgd_hqd_is_occupied()
|
D | amdgpu_amdkfd_gfx_v7.c | 403 uint32_t act; in kgd_hqd_is_occupied() local 408 act = RREG32(mmCP_HQD_ACTIVE); in kgd_hqd_is_occupied() 409 if (act) { in kgd_hqd_is_occupied()
|
/linux-4.4.14/drivers/scsi/device_handler/ |
D | scsi_dh_rdac.c | 668 int act = 0; in rdac_activate() local 677 act = 1; in rdac_activate() 682 act = 1; in rdac_activate() 688 if (act) { in rdac_activate()
|
/linux-4.4.14/kernel/sched/ |
D | deadline.c | 528 ktime_t now, act; in start_dl_timer() local 538 act = ns_to_ktime(dl_se->deadline); in start_dl_timer() 541 act = ktime_add_ns(act, delta); in start_dl_timer() 548 if (ktime_us_delta(act, now) < 0) in start_dl_timer() 562 hrtimer_start(timer, act, HRTIMER_MODE_ABS); in start_dl_timer()
|
/linux-4.4.14/kernel/trace/ |
D | blktrace.c | 1136 typedef void (blk_log_action_t) (struct trace_iterator *iter, const char *act); 1138 static void blk_log_action_classic(struct trace_iterator *iter, const char *act) in blk_log_action_classic() argument 1151 secs, nsec_rem, iter->ent->pid, act, rwbs); in blk_log_action_classic() 1154 static void blk_log_action(struct trace_iterator *iter, const char *act) in blk_log_action() argument 1161 MAJOR(t->device), MINOR(t->device), act, rwbs); in blk_log_action() 1320 const char *act[2]; member 1363 log_action(iter, what2act[what].act[long_act]); in print_one_line()
|
/linux-4.4.14/Documentation/devicetree/bindings/sound/ |
D | st,sta350.txt | 104 act on the master volume. Otherwise, the functions will act on the
|
/linux-4.4.14/drivers/net/appletalk/ |
D | Kconfig | 11 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.4.14/Documentation/devicetree/bindings/nvmem/ |
D | nvmem.txt | 8 and act upon it. Obviously, the OS has to know about where to retrieve
|
/linux-4.4.14/Documentation/devicetree/bindings/gpio/ |
D | gpio-max732x.txt | 23 The I/O expander can detect input state changes, and thus optionally act as
|
D | gpio-pcf857x.txt | 45 The I/O expander can detect input state changes, and thus optionally act as
|
/linux-4.4.14/Documentation/virtual/kvm/devices/ |
D | mpic.txt | 9 MPIC will act as the system interrupt controller, connecting to each
|
D | arm-vgic.txt | 9 legacy KVM_CREATE_IRQCHIP api. The created VGIC will act as the VM interrupt
|
/linux-4.4.14/Documentation/devicetree/bindings/spmi/ |
D | qcom,spmi-pmic-arb.txt | 7 The PMIC Arbiter can also act as an interrupt controller, providing interrupts
|
/linux-4.4.14/net/netfilter/ |
D | nf_conntrack_h323_asn1.c | 27 #define IFTHEN(cond, act) if(cond){act;} argument 35 #define IFTHEN(cond, act) argument
|
/linux-4.4.14/drivers/gpu/drm/radeon/ |
D | radeon_kfd.c | 601 uint32_t act; in kgd_hqd_is_occupied() local 606 act = read_register(kgd, CP_HQD_ACTIVE); in kgd_hqd_is_occupied() 607 if (act) { in kgd_hqd_is_occupied()
|
/linux-4.4.14/tools/perf/ |
D | builtin-top.c | 465 struct sigaction act = { in perf_top__handle_keypress() local 470 sigaction(SIGWINCH, &act, NULL); in perf_top__handle_keypress() 1321 struct sigaction act = { in cmd_top() local 1326 sigaction(SIGWINCH, &act, NULL); in cmd_top()
|
/linux-4.4.14/drivers/staging/iio/Documentation/ |
D | inkernel.txt | 3 The IIO subsystem can act as a layer under other elements of the kernel
|
/linux-4.4.14/net/bridge/ |
D | Kconfig | 11 If you say Y here, then your Linux box will be able to act as an
|
/linux-4.4.14/Documentation/ |
D | volatile-considered-harmful.txt | 35 primitives act as memory barriers - they are explicitly written to do so - 68 waiting is generally an anti-social act to begin with.
|
D | lockup-watchdogs.txt | 5 The Linux kernel can act as a watchdog to detect both soft and hard
|
D | memory-barriers.txt | 457 pair is -not- guaranteed to act as a full memory barrier. However, after 890 Firstly, write barriers act as partial orderings on store operations. 928 Secondly, data dependency barriers act as partial orderings on data-dependent 1316 The Linux kernel has a variety of different barriers that act at different 1937 (RELEASE equivalent) will act as compiler barriers only. So if memory or I/O 2600 barriers for the most part act at the interface between the CPU and its cache 2601 (memory barriers logically act on the dotted line in the following diagram):
|
D | nommu-mmap.txt | 201 act on a complete mapping.
|
/linux-4.4.14/drivers/input/misc/ |
D | hp_sdc_rtc.c | 105 t.act.semaphore = &tsem; in hp_sdc_rtc_do_read_bbrtc() 177 t.act.semaphore = &i8042tregs; in hp_sdc_rtc_read_i8042timer()
|
/linux-4.4.14/drivers/staging/speakup/ |
D | DefaultKeyAssignments | 6 We have remapped the insert or zero key on the keypad to act as a
|
/linux-4.4.14/Documentation/laptops/ |
D | toshiba_haps.txt | 27 userspace tools or daemons act accordingly, as well as providing a sysfs
|
/linux-4.4.14/Documentation/devicetree/bindings/board/ |
D | fsl-board.txt | 53 Some BCSR registers act as simple GPIO controllers, each such
|
/linux-4.4.14/Documentation/hwmon/ |
D | adm1025 | 36 different manners. It can act as the +12V power-supply voltage analog
|
D | pmbus-core | 22 Also, different PMBUs devices act differently if non-supported commands are
|
/linux-4.4.14/Documentation/devicetree/bindings/leds/ |
D | common.txt | 24 "backlight" - LED will act as a back-light, controlled by the framebuffer
|
D | leds-bcm6328.txt | 287 /* USB link/act and INET act routed to USB LED */
|
/linux-4.4.14/drivers/hwtracing/coresight/ |
D | Kconfig | 28 Depending on its configuration the device can act as a link (embedded
|
/linux-4.4.14/Documentation/vm/ |
D | zsmalloc.txt | 14 pages act as a single higher-order page i.e. an object can span 0-order
|
/linux-4.4.14/Documentation/devicetree/bindings/arm/ |
D | vexpress-sysreg.txt | 59 This block also can also act a bridge to the platform's configuration
|
/linux-4.4.14/Documentation/devicetree/bindings/net/ |
D | cpsw.txt | 30 - dual_emac : Specifies Switch to act as Dual EMAC
|
/linux-4.4.14/Documentation/networking/mac80211_hwsim/ |
D | README | 48 one to act as an access point and the other as a station that
|
/linux-4.4.14/security/smack/ |
D | smack_lsm.c | 2515 struct sockaddr_in6 *address, int act) in smk_ipv6_check() argument 2527 if (act == SMK_RECEIVING) in smk_ipv6_check() 2620 int act) in smk_ipv6_port_check() argument 2628 if (act == SMK_RECEIVING) { in smk_ipv6_port_check() 2640 return smk_ipv6_check(skp, object, address, act); in smk_ipv6_port_check() 2650 return smk_ipv6_check(skp, object, address, act); in smk_ipv6_port_check() 2655 if (act == SMK_RECEIVING) in smk_ipv6_port_check() 2663 if (act == SMK_CONNECTING) in smk_ipv6_port_check() 2668 return smk_ipv6_check(skp, object, address, act); in smk_ipv6_port_check()
|
/linux-4.4.14/drivers/net/wireless/hostap/ |
D | Kconfig | 20 Host AP mode that allows the card to act as an IEEE 802.11
|
/linux-4.4.14/tools/testing/selftests/seccomp/ |
D | seccomp_bpf.c | 690 struct sigaction act; in TEST_F() local 693 memset(&act, 0, sizeof(act)); in TEST_F() 697 act.sa_sigaction = &TRAP_action; in TEST_F() 698 act.sa_flags = SA_SIGINFO; in TEST_F() 699 ret = sigaction(SIGSYS, &act, NULL); in TEST_F()
|
/linux-4.4.14/Documentation/devicetree/bindings/interrupt-controller/ |
D | arm,gic-v3.txt | 28 has a value of 0 or 1, cells 4 and beyond act as padding, and may be
|
/linux-4.4.14/Documentation/devicetree/bindings/powerpc/fsl/cpm_qe/ |
D | qe.txt | 7 Basically, it is a bus of devices, that could act more or less
|
/linux-4.4.14/Documentation/filesystems/nfs/ |
D | rpc-server-gss.txt | 8 NFSv4.1 and higher don't require the client to act as a server for the
|
D | nfs-rdma.txt | 207 We recommend that you use two machines, one to act as the client and 208 one to act as the server.
|
/linux-4.4.14/arch/um/ |
D | Kconfig.net | 140 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.4.14/drivers/staging/rtl8192u/ieee80211/ |
D | ieee80211_softmac.c | 1888 u8 *act = ieee80211_get_payload(header); in ieee80211_process_action() local 1891 if (act == NULL) in ieee80211_process_action() 1896 tmp = *act; in ieee80211_process_action() 1897 act ++; in ieee80211_process_action() 1900 if (*act == ACT_ADDBAREQ) in ieee80211_process_action() 1902 else if (*act == ACT_ADDBARSP) in ieee80211_process_action() 1904 else if (*act == ACT_DELBA) in ieee80211_process_action()
|
/linux-4.4.14/drivers/usb/core/ |
D | Kconfig | 50 "Dual-Role" device, which can act as either a device
|
/linux-4.4.14/Documentation/frv/ |
D | atomic-ops.txt | 29 (*) The CCCR.CC3 register is reserved within the kernel to act as an atomic modify abort flag.
|
/linux-4.4.14/Documentation/sound/alsa/ |
D | serial-u16550.txt | 71 the MIDI Outs to act independently at double the aggregate throughput of M/B,
|
/linux-4.4.14/Documentation/misc-devices/ |
D | lis3lv02d | 35 the laptop to act as a pinball machine-esque joystick. Joystick device can be
|
/linux-4.4.14/fs/ncpfs/ |
D | Kconfig | 16 You do not have to say Y here if you want your Linux box to act as a
|
/linux-4.4.14/drivers/pci/host/ |
D | Kconfig | 12 act both as EP and RC. This reuses the Designware core.
|
/linux-4.4.14/Documentation/powerpc/ |
D | firmware-assisted-dump.txt | 110 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.
|
D | hvcs.txt | 215 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.4.14/drivers/net/wireless/realtek/rtlwifi/ |
D | base.c | 1232 u8 *act = (u8 *)(((u8 *)skb->data + MAC80211_3ADDR_LEN)); in rtl_action_proc() local 1238 category = *act; in rtl_action_proc() 1239 act++; in rtl_action_proc() 1242 switch (*act) { in rtl_action_proc()
|
/linux-4.4.14/Documentation/input/ |
D | atarikbd.txt | 78 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
|
/linux-4.4.14/Documentation/devicetree/bindings/clock/ |
D | qoriq-clock.txt | 58 The clockgen node should act as a clock provider, though in older device
|
/linux-4.4.14/Documentation/mic/mpssd/ |
D | mpssd.c | 1629 struct sigaction act = { in init_mic() local 1696 sigemptyset(&act.sa_mask); in init_mic() 1697 err = sigaction(SIGUSR1, &act, NULL); in init_mic()
|
/linux-4.4.14/drivers/xen/ |
D | xen-scsiback.c | 587 enum tcm_tmreq_table act, int tag) in scsiback_device_action() argument 604 rc = core_tmr_alloc_req(se_cmd, tmr, act, GFP_KERNEL); in scsiback_device_action() 748 switch (ring_req.act) { in scsiback_do_cmd_fn()
|
/linux-4.4.14/Documentation/devicetree/bindings/mfd/ |
D | qcom-rpm.txt | 213 mode, i.e. to act as a switch
|
/linux-4.4.14/drivers/tty/vt/ |
D | cp437.uni | 49 # have to act as substitutes, especially the upper-case characters.
|
/linux-4.4.14/scripts/kconfig/ |
D | qconf.cc | 943 void ConfigView::setOptionMode(QAction *act) in setOptionMode() argument 945 if (act == showNormalAction) in setOptionMode() 947 else if (act == showAllAction) in setOptionMode()
|
/linux-4.4.14/Documentation/arm/ |
D | IXP4xx | 147 and IXP2400/2800 system to act as the system controller. It simply
|
D | vlocks.txt | 73 priority rule to act as a tie-breaker, or any counters which could
|
/linux-4.4.14/Documentation/networking/ |
D | l2tp.txt | 129 LNSMODE - 0 => act as LAC. 130 1 => act as LNS.
|
D | LICENSE.qlcnic | 83 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
|
D | LICENSE.qlge | 83 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
|
D | de4x5.txt | 28 ZNYX346 10/100 4 port (can act as a 10/100 bridge!)
|
/linux-4.4.14/arch/arm/mm/ |
D | cache-l2x0.c | 600 static int l2c310_cpu_enable_flz(struct notifier_block *nb, unsigned long act, void *data) in l2c310_cpu_enable_flz() argument 602 switch (act & ~CPU_TASKS_FROZEN) { in l2c310_cpu_enable_flz()
|
/linux-4.4.14/drivers/net/ethernet/qlogic/qlcnic/ |
D | qlcnic_main.c | 3325 int act, state, active_mask; in qlcnic_check_drv_state() local 3329 act = QLC_SHARED_REG_RD32(adapter, QLCNIC_CRB_DRV_ACTIVE); in qlcnic_check_drv_state() 3333 act = act & active_mask; in qlcnic_check_drv_state() 3336 if (((state & 0x11111111) == (act & 0x11111111)) || in qlcnic_check_drv_state() 3337 ((act & 0x11111111) == ((state >> 1) & 0x11111111))) in qlcnic_check_drv_state()
|
/linux-4.4.14/sound/drivers/ |
D | Kconfig | 42 driver for the PC speaker which allows it to act like a primitive
|
/linux-4.4.14/drivers/net/ethernet/brocade/bna/ |
D | bfa_ioc.c | 1450 u32 act:1; member 1462 u32 act:1; 1514 cmd.r.act = 1; in bfa_flash_set_cmd() 1539 if (cmd.r.act) in bfa_flash_cmd_act_check()
|
/linux-4.4.14/drivers/usb/host/ |
D | xhci.c | 3793 const char *act = setup == SETUP_CONTEXT_ONLY ? "context" : "address"; in xhci_setup_device() local 3901 act, udev->slot_id); in xhci_setup_device() 3905 dev_warn(&udev->dev, "Device not responding to setup %s.\n", act); in xhci_setup_device() 3910 "ERROR: Incompatible device for setup %s command\n", act); in xhci_setup_device() 3915 "Successful setup %s command", act); in xhci_setup_device() 3920 act, command->status); in xhci_setup_device()
|
/linux-4.4.14/Documentation/blockdev/ |
D | cciss.txt | 184 act as a RAID controller for disk drives, so the vast majority of commands
|
/linux-4.4.14/Documentation/scsi/ |
D | LICENSE.qla4xxx | 84 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
|
D | LICENSE.qla2xxx | 85 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.4.14/drivers/staging/rtl8192e/ |
D | rtllib_softmac.c | 2183 u8 *act = rtllib_get_payload((struct rtllib_hdr *)header); in rtllib_process_action() local 2186 if (act == NULL) { in rtllib_process_action() 2192 category = *act; in rtllib_process_action() 2193 act++; in rtllib_process_action() 2196 switch (*act) { in rtllib_process_action()
|
D | license | 77 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.4.14/Documentation/virtual/kvm/ |
D | ppc-pv.txt | 138 also act on the shared page. So calling privileged instructions still works as
|
/linux-4.4.14/tools/perf/util/ |
D | evlist.c | 1575 struct sigaction act = { in perf_evlist__prepare_workload() local 1579 sigaction(SIGUSR1, &act, NULL); in perf_evlist__prepare_workload()
|
/linux-4.4.14/drivers/scsi/bfa/ |
D | bfa_ioc.c | 4802 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()
|
D | bfa_defs.h | 1167 u32 act; /* actually value read */ member
|
/linux-4.4.14/drivers/staging/rtl8192u/ |
D | copying | 73 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.4.14/tools/usb/usbip/ |
D | COPYING | 73 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.4.14/ |
D | COPYING | 89 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.4.14/Documentation/security/ |
D | credentials.txt | 74 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.4.14/net/ipv4/ |
D | Kconfig | 26 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.4.14/Documentation/target/ |
D | tcmu-design.txt | 26 allows userspace programs to be written which act as iSCSI targets.
|
/linux-4.4.14/Documentation/fmc/ |
D | carrier.txt | 66 * op: the operations to act on the device.
|
/linux-4.4.14/Documentation/gpio/ |
D | consumer.txt | 217 that can't be accessed from hardIRQ handlers, these calls act the same as the
|
/linux-4.4.14/drivers/net/ |
D | Kconfig | 393 This driver allows the kernel to act as a Xen network driver
|
/linux-4.4.14/Documentation/usb/ |
D | proc_usb_info.txt | 216 USB devices may have multiple configurations, each of which act
|