/linux-4.1.27/kernel/irq/ |
D | handle.c | 46 static void warn_no_thread(unsigned int irq, struct irqaction *action) in warn_no_thread() argument 48 if (test_and_set_bit(IRQTF_WARNED, &action->thread_flags)) in warn_no_thread() 52 "but no thread function available.", irq, action->name); in warn_no_thread() 55 void __irq_wake_thread(struct irq_desc *desc, struct irqaction *action) in __irq_wake_thread() argument 62 if (action->thread->flags & PF_EXITING) in __irq_wake_thread() 69 if (test_and_set_bit(IRQTF_RUNTHREAD, &action->thread_flags)) in __irq_wake_thread() 117 desc->threads_oneshot |= action->thread_mask; in __irq_wake_thread() 130 wake_up_process(action->thread); in __irq_wake_thread() 134 handle_irq_event_percpu(struct irq_desc *desc, struct irqaction *action) in handle_irq_event_percpu() argument 142 trace_irq_handler_entry(irq, action); in handle_irq_event_percpu() [all …]
|
D | spurious.c | 53 return !irqd_irq_disabled(&desc->irq_data) && desc->action; in irq_wait_for_poll() 66 struct irqaction *action; in try_one_irq() local 90 action = desc->action; in try_one_irq() 91 if (!action || !(action->flags & IRQF_SHARED) || in try_one_irq() 92 (action->flags & __IRQF_TIMER)) in try_one_irq() 111 action = desc->action; in try_one_irq() 112 } while ((desc->istate & IRQS_PENDING) && action); in try_one_irq() 195 struct irqaction *action; in __report_bad_irq() local 215 action = desc->action; in __report_bad_irq() 216 while (action) { in __report_bad_irq() [all …]
|
D | manage.c | 145 struct irqaction *action = desc->action; in irq_set_thread_affinity() local 147 while (action) { in irq_set_thread_affinity() 148 if (action->thread) in irq_set_thread_affinity() 149 set_bit(IRQTF_AFFINITY, &action->thread_flags); in irq_set_thread_affinity() 150 action = action->next; in irq_set_thread_affinity() 601 if (!desc->action || in can_request_irq() 602 irqflags & desc->action->flags & IRQF_SHARED) in can_request_irq() 700 static int irq_wait_for_interrupt(struct irqaction *action) in irq_wait_for_interrupt() argument 707 &action->thread_flags)) { in irq_wait_for_interrupt() 724 struct irqaction *action) in irq_finalize_oneshot() argument [all …]
|
D | proc.c | 289 struct irqaction *action; in name_unique() local 294 for (action = desc->action ; action; action = action->next) { in name_unique() 295 if ((action != new_action) && action->name && in name_unique() 296 !strcmp(new_action->name, action->name)) { in name_unique() 305 void register_handler_proc(unsigned int irq, struct irqaction *action) in register_handler_proc() argument 310 if (!desc->dir || action->dir || !action->name || in register_handler_proc() 311 !name_unique(irq, action)) in register_handler_proc() 315 snprintf(name, MAX_NAMELEN, "%s", action->name); in register_handler_proc() 318 action->dir = proc_mkdir(name, desc->dir); in register_handler_proc() 396 void unregister_handler_proc(unsigned int irq, struct irqaction *action) in unregister_handler_proc() argument [all …]
|
D | pm.c | 34 void irq_pm_install_action(struct irq_desc *desc, struct irqaction *action) in irq_pm_install_action() argument 38 if (action->flags & IRQF_FORCE_RESUME) in irq_pm_install_action() 44 if (action->flags & IRQF_NO_SUSPEND) in irq_pm_install_action() 46 else if (action->flags & IRQF_COND_SUSPEND) in irq_pm_install_action() 58 void irq_pm_remove_action(struct irq_desc *desc, struct irqaction *action) in irq_pm_remove_action() argument 62 if (action->flags & IRQF_FORCE_RESUME) in irq_pm_remove_action() 65 if (action->flags & IRQF_NO_SUSPEND) in irq_pm_remove_action() 67 else if (action->flags & IRQF_COND_SUSPEND) in irq_pm_remove_action() 73 if (!desc->action || desc->no_suspend_depth) in suspend_device_irq() 161 bool is_early = desc->action && in resume_irqs() [all …]
|
D | internals.h | 91 irqreturn_t handle_irq_event_percpu(struct irq_desc *desc, struct irqaction *action); 97 void __irq_wake_thread(struct irq_desc *desc, struct irqaction *action); 102 extern void register_handler_proc(unsigned int irq, struct irqaction *action); 103 extern void unregister_handler_proc(unsigned int irq, struct irqaction *action); 108 struct irqaction *action) { } in register_handler_proc() argument 110 struct irqaction *action) { } in unregister_handler_proc() argument 204 void irq_pm_install_action(struct irq_desc *desc, struct irqaction *action); 205 void irq_pm_remove_action(struct irq_desc *desc, struct irqaction *action); 209 irq_pm_install_action(struct irq_desc *desc, struct irqaction *action) { } in irq_pm_install_action() argument 211 irq_pm_remove_action(struct irq_desc *desc, struct irqaction *action) { } in irq_pm_remove_action() argument
|
D | chip.c | 310 struct irqaction *action; in handle_nested_irq() local 320 action = desc->action; in handle_nested_irq() 321 if (unlikely(!action || irqd_irq_disabled(&desc->irq_data))) { in handle_nested_irq() 329 action_ret = action->thread_fn(action->irq, action->dev_id); in handle_nested_irq() 396 if (unlikely(!desc->action || irqd_irq_disabled(&desc->irq_data))) { in handle_simple_irq() 452 if (unlikely(!desc->action || irqd_irq_disabled(&desc->irq_data))) { in handle_level_irq() 524 if (unlikely(!desc->action || irqd_irq_disabled(&desc->irq_data))) { in handle_fasteoi_irq() 580 if (irqd_irq_disabled(&desc->irq_data) || !desc->action) { in handle_edge_irq() 592 if (unlikely(!desc->action)) { in handle_edge_irq() 644 if (irqd_irq_disabled(&desc->irq_data) || !desc->action) { in handle_edge_eoi_irq() [all …]
|
D | debug.h | 20 printk("->action(): %p\n", desc->action); in print_irq_desc() 21 if (desc->action) { in print_irq_desc() 22 printk("->action->handler(): %p, ", desc->action->handler); in print_irq_desc() 23 print_symbol("%s\n", (unsigned long)desc->action->handler); in print_irq_desc()
|
D | autoprobe.c | 48 if (!desc->action && irq_settings_can_probe(desc)) { in probe_irq_on() 71 if (!desc->action && irq_settings_can_probe(desc)) { in probe_irq_on()
|
/linux-4.1.27/security/integrity/ima/ |
D | ima_policy.c | 51 int action; member 78 {.action = DONT_MEASURE, .fsmagic = PROC_SUPER_MAGIC, .flags = IMA_FSMAGIC}, 79 {.action = DONT_MEASURE, .fsmagic = SYSFS_MAGIC, .flags = IMA_FSMAGIC}, 80 {.action = DONT_MEASURE, .fsmagic = DEBUGFS_MAGIC, .flags = IMA_FSMAGIC}, 81 {.action = DONT_MEASURE, .fsmagic = TMPFS_MAGIC, .flags = IMA_FSMAGIC}, 82 {.action = DONT_MEASURE, .fsmagic = DEVPTS_SUPER_MAGIC, .flags = IMA_FSMAGIC}, 83 {.action = DONT_MEASURE, .fsmagic = BINFMTFS_MAGIC, .flags = IMA_FSMAGIC}, 84 {.action = DONT_MEASURE, .fsmagic = SECURITYFS_MAGIC, .flags = IMA_FSMAGIC}, 85 {.action = DONT_MEASURE, .fsmagic = SELINUX_MAGIC, .flags = IMA_FSMAGIC}, 86 {.action = DONT_MEASURE, .fsmagic = CGROUP_SUPER_MAGIC, [all …]
|
D | ima_main.c | 164 int rc = -ENOMEM, action, must_appraise; in process_measurement() local 176 action = ima_get_action(inode, mask, function); in process_measurement() 179 if (!action && !violation_check) in process_measurement() 182 must_appraise = action & IMA_APPRAISE; in process_measurement() 185 if (action & IMA_FILE_APPRAISE) in process_measurement() 190 if (action) { in process_measurement() 197 ima_rdwr_violation_check(file, iint, action & IMA_MEASURE, in process_measurement() 199 if (!action) { in process_measurement() 209 iint->flags |= action; in process_measurement() 210 action &= IMA_DO_MASK; in process_measurement() [all …]
|
/linux-4.1.27/lib/ |
D | notifier-error-inject.c | 32 struct notifier_err_inject_action *action; in notifier_err_inject_callback() local 34 for (action = err_inject->actions; action->name; action++) { in notifier_err_inject_callback() 35 if (action->val == val) { in notifier_err_inject_callback() 36 err = action->error; in notifier_err_inject_callback() 41 pr_info("Injecting error (%d) to %s\n", err, action->name); in notifier_err_inject_callback() 52 struct notifier_err_inject_action *action; in notifier_err_inject_init() local 68 for (action = err_inject->actions; action->name; action++) { in notifier_err_inject_init() 71 action_dir = debugfs_create_dir(action->name, actions_dir); in notifier_err_inject_init() 81 &action->error)) in notifier_err_inject_init()
|
D | kobject_uevent.c | 67 enum kobject_action action; in kobject_action_type() local 76 for (action = 0; action < ARRAY_SIZE(kobject_actions); action++) { in kobject_action_type() 77 if (strncmp(kobject_actions[action], buf, count) != 0) in kobject_action_type() 79 if (kobject_actions[action][count] != '\0') in kobject_action_type() 81 *type = action; in kobject_action_type() 164 int kobject_uevent_env(struct kobject *kobj, enum kobject_action action, in kobject_uevent_env() argument 168 const char *action_string = kobject_actions[action]; in kobject_uevent_env() 275 if (action == KOBJ_ADD) in kobject_uevent_env() 277 else if (action == KOBJ_REMOVE) in kobject_uevent_env() 372 int kobject_uevent(struct kobject *kobj, enum kobject_action action) in kobject_uevent() argument [all …]
|
D | notifier-error-inject.h | 11 #define NOTIFIER_ERR_INJECT_ACTION(action) \ argument 12 .name = #action, .val = (action),
|
D | percpu_counter.c | 169 unsigned long action, void *hcpu) in percpu_counter_hotcpu_callback() argument 176 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN) in percpu_counter_hotcpu_callback()
|
/linux-4.1.27/drivers/net/wireless/libertas/ |
D | host.h | 397 __le16 action; member 443 __le16 action; member 494 __le16 action; member 500 __le16 action; member 544 __le16 action; member 557 __le16 action; member 566 __le16 action; member 577 __le16 action; member 584 __le16 action; member 593 __le16 action; member [all …]
|
D | cmdresp.c | 124 u16 action = le16_to_cpu(psmode->action); in lbs_process_command_response() local 128 result, action); in lbs_process_command_response() 139 action == PS_MODE_ACTION_ENTER_PS) in lbs_process_command_response() 141 } else if (action == PS_MODE_ACTION_ENTER_PS) { in lbs_process_command_response() 161 } else if (action == PS_MODE_ACTION_EXIT_PS) { in lbs_process_command_response() 166 lbs_deb_host("CMD_RESP: PS action 0x%X\n", action); in lbs_process_command_response()
|
D | cmd.c | 206 cmd_config.wol_conf.action = CMD_ACT_ACTION_NONE; in lbs_host_sleep_cfg() 243 cmd.action = cpu_to_le16(cmd_action); in lbs_set_ps_mode() 288 cmd.action = cpu_to_le16(cmd_action); in lbs_cmd_802_11_sleep_params() 445 cmd.action = cpu_to_le16(CMD_ACT_SET); in lbs_set_snmp_mib() 495 cmd.action = cpu_to_le16(CMD_ACT_GET); in lbs_get_snmp_mib() 540 cmd.action = cpu_to_le16(CMD_ACT_GET); in lbs_get_tx_power() 572 cmd.action = cpu_to_le16(CMD_ACT_SET); in lbs_set_tx_power() 599 cmd.action = cpu_to_le16(CMD_ACT_SET); in lbs_set_monitor_mode() 631 cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_GET); in lbs_get_channel() 681 cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_SET); in lbs_set_channel() [all …]
|
D | mesh.c | 35 cmd->action = cpu_to_le16(cmd_action); in lbs_mesh_access() 45 uint16_t action, uint16_t type) in __lbs_mesh_config_send() argument 65 cmd->action = cpu_to_le16(action); in __lbs_mesh_config_send() 75 uint16_t action, uint16_t type) in lbs_mesh_config_send() argument 82 ret = __lbs_mesh_config_send(priv, cmd, action, type); in lbs_mesh_config_send() 91 static int lbs_mesh_config(struct lbs_private *priv, uint16_t action, in lbs_mesh_config() argument 101 switch (action) { in lbs_mesh_config() 125 action, priv->mesh_tlv, chan, priv->mesh_ssid_len, in lbs_mesh_config() 128 return __lbs_mesh_config_send(priv, &cmd, action, priv->mesh_tlv); in lbs_mesh_config()
|
/linux-4.1.27/arch/mips/sibyte/sb1250/ |
D | smp.c | 69 static void sb1250_send_ipi_single(int cpu, unsigned int action) in sb1250_send_ipi_single() argument 71 __raw_writeq((((u64)action) << 48), mailbox_set_regs[cpu]); in sb1250_send_ipi_single() 75 unsigned int action) in sb1250_send_ipi_mask() argument 80 sb1250_send_ipi_single(i, action); in sb1250_send_ipi_mask() 163 unsigned int action; in sb1250_mailbox_interrupt() local 167 action = (____raw_readq(mailbox_regs[cpu]) >> 48) & 0xffff; in sb1250_mailbox_interrupt() 170 ____raw_writeq(((u64)action) << 48, mailbox_clear_regs[cpu]); in sb1250_mailbox_interrupt() 172 if (action & SMP_RESCHEDULE_YOURSELF) in sb1250_mailbox_interrupt() 175 if (action & SMP_CALL_FUNCTION) in sb1250_mailbox_interrupt()
|
/linux-4.1.27/arch/mips/sibyte/bcm1480/ |
D | smp.c | 81 static void bcm1480_send_ipi_single(int cpu, unsigned int action) in bcm1480_send_ipi_single() argument 83 __raw_writeq((((u64)action)<< 48), mailbox_0_set_regs[cpu]); in bcm1480_send_ipi_single() 87 unsigned int action) in bcm1480_send_ipi_mask() argument 92 bcm1480_send_ipi_single(i, action); in bcm1480_send_ipi_mask() 175 unsigned int action; in bcm1480_mailbox_interrupt() local 179 action = (__raw_readq(mailbox_0_regs[cpu]) >> 48) & 0xffff; in bcm1480_mailbox_interrupt() 182 __raw_writeq(((u64)action)<<48, mailbox_0_clear_regs[cpu]); in bcm1480_mailbox_interrupt() 184 if (action & SMP_RESCHEDULE_YOURSELF) in bcm1480_mailbox_interrupt() 187 if (action & SMP_CALL_FUNCTION) in bcm1480_mailbox_interrupt()
|
/linux-4.1.27/drivers/isdn/pcbit/ |
D | edss1.c | 269 struct fsm_entry *action; in pcbit_fsm_event() local 275 for (action = fsm_table; action->init != 0xff; action++) in pcbit_fsm_event() 276 if (action->init == chan->fsm_state && action->event == event) in pcbit_fsm_event() 279 if (action->init == 0xff) { in pcbit_fsm_event() 292 chan->fsm_state = action->final; in pcbit_fsm_event() 294 pcbit_state_change(dev, chan, action->init, event, action->final); in pcbit_fsm_event() 310 if (action->callb) in pcbit_fsm_event() 311 action->callb(dev, chan, data); in pcbit_fsm_event()
|
/linux-4.1.27/arch/mips/kernel/ |
D | smp-bmips.c | 59 static void bmips43xx_send_ipi_single(int cpu, unsigned int action); 60 static void bmips5000_send_ipi_single(int cpu, unsigned int action); 273 static void bmips5000_send_ipi_single(int cpu, unsigned int action) in bmips5000_send_ipi_single() argument 275 write_c0_brcm_action(ACTION_SET_IPI(cpu, action == SMP_CALL_FUNCTION)); in bmips5000_send_ipi_single() 280 int action = irq - IPI0_IRQ; in bmips5000_ipi_interrupt() local 282 write_c0_brcm_action(ACTION_CLR_IPI(smp_processor_id(), action)); in bmips5000_ipi_interrupt() 284 if (action == 0) in bmips5000_ipi_interrupt() 293 unsigned int action) in bmips5000_send_ipi_mask() argument 298 bmips5000_send_ipi_single(i, action); in bmips5000_send_ipi_mask() 314 static void bmips43xx_send_ipi_single(int cpu, unsigned int action) in bmips43xx_send_ipi_single() argument [all …]
|
D | smp-gic.c | 21 void gic_send_ipi_single(int cpu, unsigned int action) in gic_send_ipi_single() argument 28 smp_processor_id(), __func__, cpu, action, read_c0_status()); in gic_send_ipi_single() 32 switch (action) { in gic_send_ipi_single() 58 void gic_send_ipi_mask(const struct cpumask *mask, unsigned int action) in gic_send_ipi_mask() argument 63 gic_send_ipi_single(i, action); in gic_send_ipi_mask()
|
D | cevt-sb1250.c | 114 struct irqaction *action = &per_cpu(sibyte_hpt_irqaction, cpu); in sb1250_clockevent_init() local 146 action->handler = sibyte_counter_handler; in sb1250_clockevent_init() 147 action->flags = IRQF_PERCPU | IRQF_TIMER; in sb1250_clockevent_init() 148 action->name = name; in sb1250_clockevent_init() 149 action->dev_id = cd; in sb1250_clockevent_init() 152 setup_irq(irq, action); in sb1250_clockevent_init()
|
D | cevt-bcm1480.c | 116 struct irqaction *action = &per_cpu(sibyte_hpt_irqaction, cpu); in sb1480_clockevent_init() local 147 action->handler = sibyte_counter_handler; in sb1480_clockevent_init() 148 action->flags = IRQF_PERCPU | IRQF_TIMER; in sb1480_clockevent_init() 149 action->name = name; in sb1480_clockevent_init() 150 action->dev_id = cd; in sb1480_clockevent_init() 153 setup_irq(irq, action); in sb1480_clockevent_init()
|
D | smp-mt.c | 116 static void vsmp_send_ipi_single(int cpu, unsigned int action) in vsmp_send_ipi_single() argument 124 gic_send_ipi_single(cpu, action); in vsmp_send_ipi_single() 132 switch (action) { in vsmp_send_ipi_single() 151 static void vsmp_send_ipi_mask(const struct cpumask *mask, unsigned int action) in vsmp_send_ipi_mask() argument 156 vsmp_send_ipi_single(i, action); in vsmp_send_ipi_mask()
|
D | smp-up.c | 16 static void up_send_ipi_single(int cpu, unsigned int action) in up_send_ipi_single() argument 22 unsigned int action) in up_send_ipi_mask() argument
|
/linux-4.1.27/drivers/of/ |
D | dynamic.c | 90 int of_reconfig_notify(unsigned long action, struct of_reconfig_data *p) in of_reconfig_notify() argument 96 switch (action) { in of_reconfig_notify() 99 pr_debug("of/notify %-15s %s\n", action_names[action], in of_reconfig_notify() 105 pr_debug("of/notify %-15s %s:%s\n", action_names[action], in of_reconfig_notify() 111 rc = blocking_notifier_call_chain(&of_reconfig_chain, action, p); in of_reconfig_notify() 124 int of_reconfig_get_state_change(unsigned long action, struct of_reconfig_data *pr) in of_reconfig_get_state_change() argument 130 switch (action) { in of_reconfig_get_state_change() 162 switch (action) { in of_reconfig_get_state_change() 202 int of_property_notify(int action, struct device_node *np, in of_property_notify() argument 214 return of_reconfig_notify(action, &pr); in of_property_notify() [all …]
|
D | of_private.h | 45 extern int of_property_notify(int action, struct device_node *np, 49 static inline int of_property_notify(int action, struct device_node *np, in of_property_notify() argument
|
/linux-4.1.27/scripts/ |
D | asn1_compiler.c | 294 struct action { struct 295 struct action *next; argument 300 static struct action *action_list; argument 307 struct action *action; member 655 struct action *action; member 831 struct action *action, **ppaction; in parse_type() local 1067 action = malloc(sizeof(struct action) + cursor->size + 1); in parse_type() 1068 if (!action) { in parse_type() 1072 action->index = 0; in parse_type() 1073 memcpy(action->name, cursor->value, cursor->size); in parse_type() [all …]
|
D | checkkconfigsymbols.py | 50 parser.add_option('-c', '--commit', dest='commit', action='store', 55 parser.add_option('-d', '--diff', dest='diff', action='store', 61 parser.add_option('', '--force', dest='force', action='store_true',
|
/linux-4.1.27/arch/arm/probes/ |
D | decode.c | 346 int action, probes_opcode_t insn, in run_checkers() argument 358 probes_check_t *checker_func = (*p)[action].checker; in run_checkers() 475 int action = d->decoder.action; in probes_decode_insn() local 477 err = run_checkers(checkers, action, origin_insn, asi, h); in probes_decode_insn() 480 return actions[action].decoder(insn, asi, h); in probes_decode_insn() 486 int action = d->handler.action; in probes_decode_insn() local 488 err = run_checkers(checkers, action, origin_insn, asi, h); in probes_decode_insn() 491 asi->insn_handler = actions[action].handler; in probes_decode_insn() 498 int action = d->handler.action; in probes_decode_insn() local 500 err = run_checkers(checkers, action, origin_insn, asi, h); in probes_decode_insn() [all …]
|
D | decode.h | 304 int action; member 358 {.action = (_decoder)} 368 {.action = (_handler)} 381 {.action = (_handler)}
|
/linux-4.1.27/arch/mips/dec/ |
D | kn02xa-berr.c | 62 int action = MIPS_BE_FATAL; in dec_kn02xa_be_backend() local 84 action = MIPS_BE_FIXUP; in dec_kn02xa_be_backend() 86 if (action != MIPS_BE_FIXUP) in dec_kn02xa_be_backend() 90 if (action != MIPS_BE_FIXUP && address < 0x10000000) in dec_kn02xa_be_backend() 99 return action; in dec_kn02xa_be_backend() 110 int action = dec_kn02xa_be_backend(regs, 0, 1); in dec_kn02xa_be_interrupt() local 112 if (action == MIPS_BE_DISCARD) in dec_kn02xa_be_interrupt()
|
D | ecc-berr.c | 67 int action = MIPS_BE_FATAL; in dec_ecc_be_backend() local 78 return action; in dec_ecc_be_backend() 101 action = MIPS_BE_FIXUP; in dec_ecc_be_backend() 154 action = MIPS_BE_DISCARD; in dec_ecc_be_backend() 187 if (action != MIPS_BE_FIXUP) in dec_ecc_be_backend() 191 if (action != MIPS_BE_FIXUP && erraddr & KN0X_EAR_ECCERR) in dec_ecc_be_backend() 194 return action; in dec_ecc_be_backend() 206 int action = dec_ecc_be_backend(regs, 0, 1); in dec_ecc_be_interrupt() local 208 if (action == MIPS_BE_DISCARD) in dec_ecc_be_interrupt()
|
D | kn01-berr.c | 89 int action = MIPS_BE_FATAL; in dec_kn01_be_backend() local 138 action = MIPS_BE_FIXUP; in dec_kn01_be_backend() 140 if (action != MIPS_BE_FIXUP) in dec_kn01_be_backend() 144 return action; in dec_kn01_be_backend() 156 int action; in dec_kn01_be_interrupt() local 161 action = dec_kn01_be_backend(regs, 0, 1); in dec_kn01_be_interrupt() 163 if (action == MIPS_BE_DISCARD) in dec_kn01_be_interrupt()
|
/linux-4.1.27/arch/mips/cavium-octeon/ |
D | smp.c | 36 uint64_t action; in mailbox_interrupt() local 39 action = cvmx_read_csr(CVMX_CIU_MBOX_CLRX(coreid)) & 0xffff; in mailbox_interrupt() 42 cvmx_write_csr(CVMX_CIU_MBOX_CLRX(coreid), action); in mailbox_interrupt() 44 if (action & SMP_CALL_FUNCTION) in mailbox_interrupt() 46 if (action & SMP_RESCHEDULE_YOURSELF) in mailbox_interrupt() 50 if (action & SMP_ICACHE_FLUSH) in mailbox_interrupt() 60 void octeon_send_ipi_single(int cpu, unsigned int action) in octeon_send_ipi_single() argument 67 cvmx_write_csr(CVMX_CIU_MBOX_SETX(coreid), action); in octeon_send_ipi_single() 71 unsigned int action) in octeon_send_ipi_mask() argument 76 octeon_send_ipi_single(i, action); in octeon_send_ipi_mask() [all …]
|
D | cpu.c | 21 static int cnmips_cu2_call(struct notifier_block *nfb, unsigned long action, in cnmips_cu2_call() argument 27 switch (action) { in cnmips_cu2_call()
|
/linux-4.1.27/net/mac80211/ |
D | spectmgmt.c | 208 skb_put(skb, 1 + sizeof(msr_report->u.action.u.measurement)); in ieee80211_send_refuse_measurement_request() 209 msr_report->u.action.category = WLAN_CATEGORY_SPECTRUM_MGMT; in ieee80211_send_refuse_measurement_request() 210 msr_report->u.action.u.measurement.action_code = in ieee80211_send_refuse_measurement_request() 212 msr_report->u.action.u.measurement.dialog_token = dialog_token; in ieee80211_send_refuse_measurement_request() 214 msr_report->u.action.u.measurement.element_id = WLAN_EID_MEASURE_REPORT; in ieee80211_send_refuse_measurement_request() 215 msr_report->u.action.u.measurement.length = in ieee80211_send_refuse_measurement_request() 218 memset(&msr_report->u.action.u.measurement.msr_elem, 0, in ieee80211_send_refuse_measurement_request() 220 msr_report->u.action.u.measurement.msr_elem.token = request_ie->token; in ieee80211_send_refuse_measurement_request() 221 msr_report->u.action.u.measurement.msr_elem.mode |= in ieee80211_send_refuse_measurement_request() 223 msr_report->u.action.u.measurement.msr_elem.type = request_ie->type; in ieee80211_send_refuse_measurement_request() [all …]
|
D | mesh_plink.c | 57 enum ieee80211_self_protected_actioncode action, 259 enum ieee80211_self_protected_actioncode action, in mesh_plink_frame_tx() argument 269 int hdr_len = offsetof(struct ieee80211_mgmt, u.action.u.self_prot) + in mesh_plink_frame_tx() 270 sizeof(mgmt->u.action.u.self_prot); in mesh_plink_frame_tx() 296 mgmt->u.action.category = WLAN_CATEGORY_SELF_PROTECTED; in mesh_plink_frame_tx() 297 mgmt->u.action.u.self_prot.action_code = action; in mesh_plink_frame_tx() 299 if (action != WLAN_SP_MESH_PEERING_CLOSE) { in mesh_plink_frame_tx() 305 if (action == WLAN_SP_MESH_PEERING_CONFIRM) { in mesh_plink_frame_tx() 323 switch (action) { in mesh_plink_frame_tx() 356 if (action == WLAN_SP_MESH_PEERING_CLOSE) { in mesh_plink_frame_tx() [all …]
|
D | ht.c | 388 skb_put(skb, 1 + sizeof(mgmt->u.action.u.delba)); in ieee80211_send_delba() 390 mgmt->u.action.category = WLAN_CATEGORY_BACK; in ieee80211_send_delba() 391 mgmt->u.action.u.delba.action_code = WLAN_ACTION_DELBA; in ieee80211_send_delba() 395 mgmt->u.action.u.delba.params = cpu_to_le16(params); in ieee80211_send_delba() 396 mgmt->u.action.u.delba.reason_code = cpu_to_le16(reason_code); in ieee80211_send_delba() 408 params = le16_to_cpu(mgmt->u.action.u.delba.params); in ieee80211_process_delba() 415 le16_to_cpu(mgmt->u.action.u.delba.reason_code)); in ieee80211_process_delba() 444 action_frame->u.action.category = WLAN_CATEGORY_HT; in ieee80211_send_smps_action() 445 action_frame->u.action.u.ht_smps.action = WLAN_HT_ACTION_SMPS; in ieee80211_send_smps_action() 451 action_frame->u.action.u.ht_smps.smps_control = in ieee80211_send_smps_action() [all …]
|
D | agg-rx.c | 215 skb_put(skb, 1 + sizeof(mgmt->u.action.u.addba_resp)); in ieee80211_send_addba_resp() 216 mgmt->u.action.category = WLAN_CATEGORY_BACK; in ieee80211_send_addba_resp() 217 mgmt->u.action.u.addba_resp.action_code = WLAN_ACTION_ADDBA_RESP; in ieee80211_send_addba_resp() 218 mgmt->u.action.u.addba_resp.dialog_token = dialog_token; in ieee80211_send_addba_resp() 224 mgmt->u.action.u.addba_resp.capab = cpu_to_le16(capab); in ieee80211_send_addba_resp() 225 mgmt->u.action.u.addba_resp.timeout = cpu_to_le16(timeout); in ieee80211_send_addba_resp() 226 mgmt->u.action.u.addba_resp.status = cpu_to_le16(status); in ieee80211_send_addba_resp() 371 dialog_token = mgmt->u.action.u.addba_req.dialog_token; in ieee80211_process_addba_request() 372 timeout = le16_to_cpu(mgmt->u.action.u.addba_req.timeout); in ieee80211_process_addba_request() 374 le16_to_cpu(mgmt->u.action.u.addba_req.start_seq_num) >> 4; in ieee80211_process_addba_request() [all …]
|
D | agg-tx.c | 94 skb_put(skb, 1 + sizeof(mgmt->u.action.u.addba_req)); in ieee80211_send_addba_request() 96 mgmt->u.action.category = WLAN_CATEGORY_BACK; in ieee80211_send_addba_request() 97 mgmt->u.action.u.addba_req.action_code = WLAN_ACTION_ADDBA_REQ; in ieee80211_send_addba_request() 99 mgmt->u.action.u.addba_req.dialog_token = dialog_token; in ieee80211_send_addba_request() 104 mgmt->u.action.u.addba_req.capab = cpu_to_le16(capab); in ieee80211_send_addba_request() 106 mgmt->u.action.u.addba_req.timeout = cpu_to_le16(timeout); in ieee80211_send_addba_request() 107 mgmt->u.action.u.addba_req.start_seq_num = in ieee80211_send_addba_request() 297 enum ieee80211_ampdu_mlme_action action; in ___ieee80211_stop_tx_ba_session() local 306 action = IEEE80211_AMPDU_TX_STOP_CONT; in ___ieee80211_stop_tx_ba_session() 309 action = IEEE80211_AMPDU_TX_STOP_FLUSH; in ___ieee80211_stop_tx_ba_session() [all …]
|
D | mesh_hwmp.c | 104 static int mesh_path_sel_frame_tx(enum mpath_frame_type action, u8 flags, in mesh_path_sel_frame_tx() argument 116 int hdr_len = offsetof(struct ieee80211_mgmt, u.action.u.mesh_action) + in mesh_path_sel_frame_tx() 117 sizeof(mgmt->u.action.u.mesh_action); in mesh_path_sel_frame_tx() 134 mgmt->u.action.category = WLAN_CATEGORY_MESH_ACTION; in mesh_path_sel_frame_tx() 135 mgmt->u.action.u.mesh_action.action_code = in mesh_path_sel_frame_tx() 138 switch (action) { in mesh_path_sel_frame_tx() 165 if (action == MPATH_PREP) { in mesh_path_sel_frame_tx() 171 if (action == MPATH_PREQ) { in mesh_path_sel_frame_tx() 184 if (action == MPATH_PREQ) { in mesh_path_sel_frame_tx() 191 } else if (action == MPATH_PREP) { in mesh_path_sel_frame_tx() [all …]
|
D | rx.c | 733 category = mgmt->u.action.category; in ieee80211_rx_mesh_check() 2524 if (len < 24 + 1 + sizeof(resp->u.action.u.sa_query)) { in ieee80211_process_sa_query_req() 2541 skb_put(skb, 1 + sizeof(resp->u.action.u.sa_query)); in ieee80211_process_sa_query_req() 2542 resp->u.action.category = WLAN_CATEGORY_SA_QUERY; in ieee80211_process_sa_query_req() 2543 resp->u.action.u.sa_query.action = WLAN_ACTION_SA_QUERY_RESPONSE; in ieee80211_process_sa_query_req() 2544 memcpy(resp->u.action.u.sa_query.trans_id, in ieee80211_process_sa_query_req() 2545 mgmt->u.action.u.sa_query.trans_id, in ieee80211_process_sa_query_req() 2607 if (!rx->sta && mgmt->u.action.category != WLAN_CATEGORY_PUBLIC && in ieee80211_rx_h_action() 2608 mgmt->u.action.category != WLAN_CATEGORY_SELF_PROTECTED && in ieee80211_rx_h_action() 2609 mgmt->u.action.category != WLAN_CATEGORY_SPECTRUM_MGMT) in ieee80211_rx_h_action() [all …]
|
/linux-4.1.27/include/trace/events/ |
D | power.h | 166 TP_PROTO(const char *action, int val, bool start), 168 TP_ARGS(action, val, start), 171 __field(const char *, action) 177 __entry->action = action; 182 TP_printk("%s[%u] %s", __entry->action, (unsigned int)__entry->val, 375 TP_PROTO(enum pm_qos_req_action action, int prev_value, int curr_value), 377 TP_ARGS(action, prev_value, curr_value), 380 __field( enum pm_qos_req_action, action ) 386 __entry->action = action; 392 __print_symbolic(__entry->action, [all …]
|
D | irq.h | 54 TP_PROTO(int irq, struct irqaction *action), 56 TP_ARGS(irq, action), 60 __string( name, action->name ) 65 __assign_str(name, action->name); 84 TP_PROTO(int irq, struct irqaction *action, int ret), 86 TP_ARGS(irq, action, ret),
|
D | btrfs.h | 442 #define show_ref_action(action) \ argument 443 __print_symbolic(action, \ 454 int action), 456 TP_ARGS(ref, full_ref, action), 461 __field( int, action ) 472 __entry->action = action; 485 show_ref_action(__entry->action), 496 int action), 498 TP_ARGS(ref, full_ref, action) 505 int action), [all …]
|
D | sunrpc.h | 75 TP_PROTO(const struct rpc_clnt *clnt, const struct rpc_task *task, const void *action), 77 TP_ARGS(clnt, task, action), 82 __field(const void *, action) 91 __entry->action = action; 102 __entry->action 108 TP_PROTO(const struct rpc_clnt *clnt, const struct rpc_task *task, const void *action), 110 TP_ARGS(clnt, task, action) 116 TP_PROTO(const struct rpc_clnt *clnt, const struct rpc_task *task, const void *action), 118 TP_ARGS(clnt, task, action) 124 TP_PROTO(const struct rpc_clnt *clnt, const struct rpc_task *task, const void *action), [all …]
|
/linux-4.1.27/arch/um/os-Linux/ |
D | signal.c | 181 struct sigaction action; in set_handler() local 185 action.sa_sigaction = hard_handler; in set_handler() 188 sigemptyset(&action.sa_mask); in set_handler() 189 sigaddset(&action.sa_mask, SIGVTALRM); in set_handler() 190 sigaddset(&action.sa_mask, SIGIO); in set_handler() 191 sigaddset(&action.sa_mask, SIGWINCH); in set_handler() 196 if (sigismember(&action.sa_mask, sig)) in set_handler() 199 action.sa_flags = flags; in set_handler() 200 action.sa_restorer = NULL; in set_handler() 201 if (sigaction(sig, &action, NULL) < 0) in set_handler()
|
D | main.c | 61 struct sigaction action; in install_fatal_handler() local 64 sigemptyset(&action.sa_mask); in install_fatal_handler() 72 action.sa_flags = SA_RESETHAND | SA_NODEFER; in install_fatal_handler() 73 action.sa_restorer = NULL; in install_fatal_handler() 74 action.sa_handler = last_ditch_exit; in install_fatal_handler() 75 if (sigaction(sig, &action, NULL) < 0) { in install_fatal_handler()
|
/linux-4.1.27/tools/power/acpi/tools/acpidump/ |
D | apmain.c | 301 struct ap_dump_action *action; in main() local 322 action = &action_table[i]; in main() 323 switch (action->to_be_done) { in main() 331 status = ap_dump_table_by_address(action->argument); in main() 336 status = ap_dump_table_by_name(action->argument); in main() 341 status = ap_dump_table_from_file(action->argument); in main() 347 action->to_be_done); in main()
|
/linux-4.1.27/drivers/net/wireless/iwlwifi/dvm/ |
D | rs.c | 1285 tbl->action = 0; in rs_switch_to_mimo2() 1340 tbl->action = 0; in rs_switch_to_mimo3() 1389 tbl->action = 0; in rs_switch_to_siso() 1443 if (tbl->action == IWL_LEGACY_SWITCH_ANTENNA2) in rs_move_legacy_other() 1444 tbl->action = IWL_LEGACY_SWITCH_SISO; in rs_move_legacy_other() 1451 if (tbl->action >= IWL_LEGACY_SWITCH_ANTENNA2 && in rs_move_legacy_other() 1452 tbl->action != IWL_LEGACY_SWITCH_SISO) in rs_move_legacy_other() 1453 tbl->action = IWL_LEGACY_SWITCH_SISO; in rs_move_legacy_other() 1462 tbl->action = IWL_LEGACY_SWITCH_ANTENNA1; in rs_move_legacy_other() 1464 tbl->action > IWL_LEGACY_SWITCH_SISO) in rs_move_legacy_other() [all …]
|
/linux-4.1.27/drivers/net/wireless/iwlwifi/mvm/ |
D | binding.c | 78 static int iwl_mvm_binding_cmd(struct iwl_mvm *mvm, u32 action, in iwl_mvm_binding_cmd() argument 90 cmd.action = cpu_to_le32(action); in iwl_mvm_binding_cmd() 105 action, ret); in iwl_mvm_binding_cmd() 147 u32 action = FW_CTXT_ACTION_MODIFY; in iwl_mvm_binding_update() local 162 action = FW_CTXT_ACTION_ADD; in iwl_mvm_binding_update() 164 action = FW_CTXT_ACTION_REMOVE; in iwl_mvm_binding_update() 176 return iwl_mvm_binding_cmd(mvm, action, &data); in iwl_mvm_binding_update()
|
D | time-event.c | 258 !(trig_action_bitmap & le32_to_cpu(notif->action)) || in iwl_mvm_te_check_trigger() 265 le32_to_cpu(notif->action), in iwl_mvm_te_check_trigger() 286 le32_to_cpu(notif->action)); in iwl_mvm_te_handle_notif() 301 if (notif->action & cpu_to_le32(TE_V2_NOTIF_HOST_EVENT_START)) in iwl_mvm_te_handle_notif() 314 if (le32_to_cpu(notif->action) & TE_V2_NOTIF_HOST_EVENT_END) { in iwl_mvm_te_handle_notif() 337 } else if (le32_to_cpu(notif->action) & TE_V2_NOTIF_HOST_EVENT_START) { in iwl_mvm_te_handle_notif() 376 (le32_to_cpu(notif->action) & in iwl_mvm_aux_roc_te_handle_notif() 384 le32_to_cpu(notif->action)); in iwl_mvm_aux_roc_te_handle_notif() 386 if (le32_to_cpu(notif->action) == TE_V2_NOTIF_HOST_EVENT_END) { in iwl_mvm_aux_roc_te_handle_notif() 395 } else if (le32_to_cpu(notif->action) == TE_V2_NOTIF_HOST_EVENT_START) { in iwl_mvm_aux_roc_te_handle_notif() [all …]
|
D | mac-ctxt.c | 647 u32 action) in iwl_mvm_mac_ctxt_cmd_common() argument 659 cmd->action = cpu_to_le32(action); in iwl_mvm_mac_ctxt_cmd_common() 752 le32_to_cpu(cmd->action), ret); in iwl_mvm_mac_ctxt_send_cmd() 758 u32 action, bool force_assoc_off, in iwl_mvm_mac_ctxt_cmd_sta() argument 767 iwl_mvm_mac_ctxt_cmd_common(mvm, vif, &cmd, bssid_override, action); in iwl_mvm_mac_ctxt_cmd_sta() 842 u32 action) in iwl_mvm_mac_ctxt_cmd_listener() argument 848 iwl_mvm_mac_ctxt_cmd_common(mvm, vif, &cmd, NULL, action); in iwl_mvm_mac_ctxt_cmd_listener() 862 u32 action) in iwl_mvm_mac_ctxt_cmd_ibss() argument 869 iwl_mvm_mac_ctxt_cmd_common(mvm, vif, &cmd, NULL, action); in iwl_mvm_mac_ctxt_cmd_ibss() 901 u32 action) in iwl_mvm_mac_ctxt_cmd_p2p_device() argument [all …]
|
D | phy-ctxt.c | 129 u32 action, u32 apply_time) in iwl_mvm_phy_ctxt_cmd_hdr() argument 135 cmd->action = cpu_to_le32(action); in iwl_mvm_phy_ctxt_cmd_hdr() 196 u32 action, u32 apply_time) in iwl_mvm_phy_ctxt_apply() argument 202 iwl_mvm_phy_ctxt_cmd_hdr(ctxt, &cmd, action, apply_time); in iwl_mvm_phy_ctxt_apply()
|
/linux-4.1.27/net/sched/ |
D | act_vlan.c | 28 int action; in tcf_vlan() local 34 action = v->tcf_action; in tcf_vlan() 54 action = TC_ACT_SHOT; in tcf_vlan() 58 return action; in tcf_vlan() 74 int action; in tcf_vlan_init() local 116 action = parm->v_action; in tcf_vlan_init() 136 v->tcfv_action = action; in tcf_vlan_init() 140 v->tcf_action = parm->action; in tcf_vlan_init() 158 .action = v->tcf_action, in tcf_vlan_dump()
|
D | act_gact.c | 103 gact->tcf_action = parm->action; in tcf_gact_init() 121 int action = TC_ACT_SHOT; in tcf_gact() local 126 action = gact_rand[gact->tcfg_ptype](gact); in tcf_gact() 128 action = gact->tcf_action; in tcf_gact() 130 action = gact->tcf_action; in tcf_gact() 134 if (action == TC_ACT_SHOT) in tcf_gact() 139 return action; in tcf_gact() 150 .action = gact->tcf_action, in tcf_gact_dump()
|
D | act_bpf.c | 40 int action, filter_res; in tcf_bpf() local 69 action = filter_res; in tcf_bpf() 72 action = filter_res; in tcf_bpf() 76 action = prog->tcf_action; in tcf_bpf() 79 action = TC_ACT_UNSPEC; in tcf_bpf() 84 return action; in tcf_bpf() 132 .action = prog->tcf_action, in tcf_bpf_dump() 332 prog->tcf_action = parm->action; in tcf_bpf_init()
|
D | act_nat.c | 77 p->tcf_action = parm->action; in tcf_nat_init() 96 int action; in tcf_nat() local 107 action = p->tcf_action; in tcf_nat() 113 if (unlikely(action == TC_ACT_SHOT)) in tcf_nat() 241 return action; in tcf_nat() 262 .action = p->tcf_action, in tcf_nat_dump()
|
D | act_connmark.c | 116 ci->tcf_action = parm->action; in tcf_connmark_init() 129 ci->tcf_action = parm->action; in tcf_connmark_init() 146 .action = ci->tcf_action, in tcf_connmark_dump()
|
D | act_simple.c | 68 d->tcf_action = p->action; in reset_policy() 116 d->tcf_action = parm->action; in tcf_simp_init() 144 .action = d->tcf_action, in tcf_simp_dump()
|
D | act_csum.c | 79 p->tcf_action = parm->action; in tcf_csum_init() 499 int action; in tcf_csum() local 505 action = p->tcf_action; in tcf_csum() 509 if (unlikely(action == TC_ACT_SHOT)) in tcf_csum() 523 return action; in tcf_csum() 540 .action = p->tcf_action, in tcf_csum_dump()
|
D | cls_api.c | 535 } else if (exts->action && tb[exts->action]) { in tcf_exts_validate() 537 err = tcf_action_init(net, tb[exts->action], rate_tlv, in tcf_exts_validate() 545 if ((exts->action && tb[exts->action]) || in tcf_exts_validate() 578 if (exts->action && !list_empty(&exts->actions)) { in tcf_exts_dump() 585 nest = nla_nest_start(skb, exts->action); in tcf_exts_dump()
|
/linux-4.1.27/tools/testing/selftests/powerpc/primitives/ |
D | load_unaligned_zeropad.c | 94 struct sigaction action; in setup_segv_handler() local 96 memset(&action, 0, sizeof(action)); in setup_segv_handler() 97 action.sa_sigaction = segv_handler; in setup_segv_handler() 98 action.sa_flags = SA_SIGINFO; in setup_segv_handler() 99 sigaction(SIGSEGV, &action, NULL); in setup_segv_handler()
|
/linux-4.1.27/arch/parisc/kernel/ |
D | irq.c | 216 struct irqaction *action; in show_interrupts() local 219 action = desc->action; in show_interrupts() 220 if (!action) in show_interrupts() 232 seq_printf(p, " %s", action->name); in show_interrupts() 234 while ((action = action->next)) in show_interrupts() 235 seq_printf(p, ", %s", action->name); in show_interrupts() 237 for ( ;action; action = action->next) { in show_interrupts() 240 min = max = action->cr16_hist[0]; in show_interrupts() 243 int hist = action->cr16_hist[k]; in show_interrupts() 255 seq_printf(p, " %s[%d/%d/%d]", action->name, in show_interrupts() [all …]
|
/linux-4.1.27/fs/btrfs/ |
D | delayed-ref.c | 300 if (ref->action == next->action) { in merge_ref() 460 if (update->action != existing->action) { in update_existing_ref() 572 u64 num_bytes, int action, int is_data) in add_delayed_ref_head() argument 584 if (action == BTRFS_UPDATE_DELAYED_HEAD) in add_delayed_ref_head() 586 else if (action == BTRFS_DROP_DELAYED_REF) in add_delayed_ref_head() 600 if (action == BTRFS_ADD_DELAYED_EXTENT) in add_delayed_ref_head() 613 ref->action = 0; in add_delayed_ref_head() 628 trace_add_delayed_ref_head(ref, head_ref, action); in add_delayed_ref_head() 660 int action, int no_quota) in add_delayed_tree_ref() argument 667 if (action == BTRFS_ADD_DELAYED_EXTENT) in add_delayed_tree_ref() [all …]
|
D | delayed-ref.h | 53 unsigned int action:8; member 208 u64 ref_root, int level, int action, 215 u64 owner, u64 offset, int action,
|
/linux-4.1.27/drivers/md/ |
D | dm-uevent.c | 34 enum kobject_action action; member 45 enum kobject_action action; member 73 enum kobject_action action, in dm_build_path_uevent() argument 86 event->action = action; in dm_build_path_uevent() 165 r = kobject_uevent_env(kobj, event->action, event->ku_env.envp); in dm_send_uevents() 195 _dm_uevent_type_names[event_type].action, in dm_path_uevent()
|
/linux-4.1.27/drivers/gpu/drm/vmwgfx/ |
D | vmwgfx_fence.c | 73 struct vmw_fence_action action; member 249 struct vmw_fence_action *action, *next_action; in vmw_fence_work_func() local 276 list_for_each_entry_safe(action, next_action, &list, head) { in vmw_fence_work_func() 277 list_del_init(&action->head); in vmw_fence_work_func() 278 if (action->cleanup) in vmw_fence_work_func() 279 action->cleanup(action); in vmw_fence_work_func() 352 struct vmw_fence_action *action, *next_action; in vmw_fences_perform_actions() local 354 list_for_each_entry_safe(action, next_action, list, head) { in vmw_fences_perform_actions() 355 list_del_init(&action->head); in vmw_fences_perform_actions() 356 fman->pending_actions[action->type]--; in vmw_fences_perform_actions() [all …]
|
D | vmwgfx_fence.h | 50 void (*seq_passed) (struct vmw_fence_action *action); 51 void (*cleanup) (struct vmw_fence_action *action);
|
/linux-4.1.27/arch/mips/loongson/loongson-3/ |
D | smp.c | 46 #define loongson3_ipi_write32(action, addr) \ argument 48 writel(action, addr); \ 52 #define loongson3_ipi_write64(action, addr) \ argument 54 writeq(action, addr); \ 241 static void loongson3_send_ipi_single(int cpu, unsigned int action) in loongson3_send_ipi_single() argument 243 loongson3_ipi_write32((u32)action, ipi_set0_regs[cpu_logical_map(cpu)]); in loongson3_send_ipi_single() 247 loongson3_send_ipi_mask(const struct cpumask *mask, unsigned int action) in loongson3_send_ipi_mask() argument 252 loongson3_ipi_write32((u32)action, ipi_set0_regs[cpu_logical_map(i)]); in loongson3_send_ipi_mask() 258 unsigned int action, c0count; in loongson3_ipi_interrupt() local 261 action = loongson3_ipi_read32(ipi_status0_regs[cpu_logical_map(cpu)]); in loongson3_ipi_interrupt() [all …]
|
D | cop2-ex.c | 22 static int loongson_cu2_call(struct notifier_block *nfb, unsigned long action, in loongson_cu2_call() argument 28 switch (action) { in loongson_cu2_call()
|
/linux-4.1.27/drivers/block/paride/ |
D | pd.c | 351 enum action {Fail = 0, Ok = 1, Hold, Wait}; enum 354 static enum action (*phase)(void); 375 static enum action do_pd_io_start(void); 376 static enum action pd_special(void); 377 static enum action do_pd_read_start(void); 378 static enum action do_pd_write_start(void); 379 static enum action do_pd_read_drq(void); 380 static enum action do_pd_write_done(void); 391 enum action res; in run_fsm() 443 static enum action do_pd_io_start(void) in do_pd_io_start() [all …]
|
/linux-4.1.27/drivers/clocksource/ |
D | timer-atlas7.c | 185 struct irqaction *action; in sirfsoc_local_timer_setup() local 188 action = &sirfsoc_timer_irq; in sirfsoc_local_timer_setup() 190 action = &sirfsoc_timer1_irq; in sirfsoc_local_timer_setup() 192 ce->irq = action->irq; in sirfsoc_local_timer_setup() 203 action->dev_id = ce; in sirfsoc_local_timer_setup() 204 BUG_ON(setup_irq(ce->irq, action)); in sirfsoc_local_timer_setup() 205 irq_force_affinity(action->irq, cpumask_of(cpu)); in sirfsoc_local_timer_setup() 224 unsigned long action, void *hcpu) in sirfsoc_cpu_notify() argument 230 switch (action & ~CPU_TASKS_FROZEN) { in sirfsoc_cpu_notify()
|
D | dummy_timer.c | 45 unsigned long action, void *hcpu) in dummy_timer_cpu_notify() argument 47 if ((action & ~CPU_TASKS_FROZEN) == CPU_STARTING) in dummy_timer_cpu_notify()
|
D | mips-gic-timer.c | 82 static int gic_cpu_notifier(struct notifier_block *nb, unsigned long action, in gic_cpu_notifier() argument 85 switch (action & ~CPU_TASKS_FROZEN) { in gic_cpu_notifier()
|
D | metag_generic.c | 158 unsigned long action, void *hcpu) in arch_timer_cpu_notify() argument 162 switch (action) { in arch_timer_cpu_notify()
|
D | arm_arch_timer.c | 513 unsigned long action, void *hcpu) in arch_timer_cpu_notify() argument 519 switch (action & ~CPU_TASKS_FROZEN) { in arch_timer_cpu_notify() 538 unsigned long action, void *hcpu) in arch_timer_cpu_pm_notify() argument 540 if (action == CPU_PM_ENTER) in arch_timer_cpu_pm_notify() 542 else if (action == CPU_PM_ENTER_FAILED || action == CPU_PM_EXIT) in arch_timer_cpu_pm_notify()
|
/linux-4.1.27/drivers/acpi/acpica/ |
D | utdelete.c | 57 acpi_ut_update_ref_count(union acpi_operand_object *object, u32 action); 383 acpi_ut_update_ref_count(union acpi_operand_object *object, u32 action) in acpi_ut_update_ref_count() argument 404 switch (action) { in acpi_ut_update_ref_count() 456 action)); in acpi_ut_update_ref_count() 493 acpi_ut_update_object_reference(union acpi_operand_object *object, u16 action) in acpi_ut_update_object_reference() argument 534 action); in acpi_ut_update_object_reference() 565 action); in acpi_ut_update_object_reference() 575 (next_object, action, &state_list); in acpi_ut_update_object_reference() 602 action, in acpi_ut_update_object_reference() 616 action, in acpi_ut_update_object_reference() [all …]
|
D | utosi.c | 329 acpi_status acpi_ut_update_interfaces(u8 action) in acpi_ut_update_interfaces() argument 336 (action & ACPI_FEATURE_STRINGS)) || in acpi_ut_update_interfaces() 338 (action & ACPI_VENDOR_STRINGS))) { in acpi_ut_update_interfaces() 339 if (action & ACPI_DISABLE_INTERFACES) { in acpi_ut_update_interfaces()
|
D | psxface.c | 60 acpi_ps_update_parameter_list(struct acpi_evaluate_info *info, u16 action); 373 acpi_ps_update_parameter_list(struct acpi_evaluate_info *info, u16 action) in acpi_ps_update_parameter_list() argument 387 action); in acpi_ps_update_parameter_list()
|
D | utstate.c | 193 *object, u16 action) in acpi_ut_create_update_state() argument 210 state->update.value = action; in acpi_ut_create_update_state()
|
D | hwgpe.c | 98 acpi_hw_low_set_gpe(struct acpi_gpe_event_info *gpe_event_info, u32 action) in acpi_hw_low_set_gpe() argument 124 switch (action) { in acpi_hw_low_set_gpe() 147 ACPI_ERROR((AE_INFO, "Invalid GPE Action, %u", action)); in acpi_hw_low_set_gpe()
|
D | evxfgpe.c | 214 acpi_status acpi_set_gpe(acpi_handle gpe_device, u32 gpe_number, u8 action) in ACPI_EXPORT_SYMBOL() 234 switch (action) { in ACPI_EXPORT_SYMBOL() 456 acpi_set_gpe_wake_mask(acpi_handle gpe_device, u32 gpe_number, u8 action) in ACPI_EXPORT_SYMBOL() 493 switch (action) { in ACPI_EXPORT_SYMBOL() 508 ACPI_ERROR((AE_INFO, "%u, Invalid action", action)); in ACPI_EXPORT_SYMBOL()
|
/linux-4.1.27/arch/mips/include/asm/ |
D | smp-ops.h | 25 void (*send_ipi_single)(int cpu, unsigned int action); 26 void (*send_ipi_mask)(const struct cpumask *mask, unsigned int action); 47 extern void gic_send_ipi_single(int cpu, unsigned int action); 48 extern void gic_send_ipi_mask(const struct cpumask *mask, unsigned int action);
|
/linux-4.1.27/drivers/acpi/ |
D | processor_driver.c | 118 unsigned long action, void *hcpu) in acpi_cpu_soft_notify() argument 123 action &= ~CPU_TASKS_FROZEN; in acpi_cpu_soft_notify() 129 if (action == CPU_STARTING || action == CPU_DYING) in acpi_cpu_soft_notify() 135 if (action == CPU_ONLINE) { in acpi_cpu_soft_notify() 152 acpi_processor_reevaluate_tstate(pr, action); in acpi_cpu_soft_notify() 155 } else if (action == CPU_DEAD) { in acpi_cpu_soft_notify() 157 acpi_processor_reevaluate_tstate(pr, action); in acpi_cpu_soft_notify()
|
/linux-4.1.27/sound/pci/hda/ |
D | patch_realtek.c | 465 const struct hda_fixup *fix, int action) in alc_fixup_sku_ignore() argument 468 if (action == HDA_FIXUP_ACT_PRE_PROBE) { in alc_fixup_sku_ignore() 475 const struct hda_fixup *fix, int action) in alc_fixup_no_depop_delay() argument 479 if (action == HDA_FIXUP_ACT_PROBE) { in alc_fixup_no_depop_delay() 692 const struct hda_fixup *fix, int action) in alc_fixup_inv_dmic() argument 1075 const struct hda_fixup *fix, int action) in alc880_fixup_vol_knob() argument 1077 if (action == HDA_FIXUP_ACT_PROBE) in alc880_fixup_vol_knob() 1531 const struct hda_fixup *fix, int action) in alc260_fixup_gpio1_toggle() argument 1534 if (action == HDA_FIXUP_ACT_PROBE) { in alc260_fixup_gpio1_toggle() 1549 const struct hda_fixup *fix, int action) in alc260_fixup_kn1() argument [all …]
|
D | dell_wmi_helper.c | 36 const struct hda_fixup *fix, int action) in alc_fixup_dell_wmi() argument 41 if (action == HDA_FIXUP_ACT_PROBE) { in alc_fixup_dell_wmi() 63 if (dell_led_set_func && (action == HDA_FIXUP_ACT_FREE || removefunc)) { in alc_fixup_dell_wmi() 72 const struct hda_fixup *fix, int action) in alc_fixup_dell_wmi() argument
|
D | patch_sigmatel.c | 254 int action) in stac_playback_pcm_hook() argument 257 if (action == HDA_GEN_PCM_ACT_OPEN && spec->stream_delay) in stac_playback_pcm_hook() 264 int action) in stac_capture_pcm_hook() argument 279 switch (action) { in stac_capture_pcm_hook() 1365 const struct hda_fixup *fix, int action) in stac9200_fixup_panasonic() argument 1369 if (action == HDA_FIXUP_ACT_PRE_PROBE) { in stac9200_fixup_panasonic() 1791 const struct hda_fixup *fix, int action) in stac92hd73xx_fixup_ref() argument 1795 if (action != HDA_FIXUP_ACT_PRE_PROBE) in stac92hd73xx_fixup_ref() 1811 const struct hda_fixup *fix, int action) in stac92hd73xx_fixup_dell_eq() argument 1815 if (action != HDA_FIXUP_ACT_PRE_PROBE) in stac92hd73xx_fixup_dell_eq() [all …]
|
D | thinkpad_helper.c | 55 const struct hda_fixup *fix, int action) in hda_fixup_thinkpad_acpi() argument 60 if (action == HDA_FIXUP_ACT_PROBE) { in hda_fixup_thinkpad_acpi() 88 if (led_set_func && (action == HDA_FIXUP_ACT_FREE || removefunc)) { in hda_fixup_thinkpad_acpi() 98 const struct hda_fixup *fix, int action) in hda_fixup_thinkpad_acpi() argument
|
D | patch_analog.c | 235 const struct hda_fixup *fix, int action) in ad_fixup_inv_jack_detect() argument 239 if (action == HDA_FIXUP_ACT_PRE_PROBE) { in ad_fixup_inv_jack_detect() 249 const struct hda_fixup *fix, int action) in ad1986a_fixup_eapd() argument 253 if (action == HDA_FIXUP_ACT_PRE_PROBE) { in ad1986a_fixup_eapd() 262 const struct hda_fixup *fix, int action) in ad1986a_fixup_eapd_mix_in() argument 266 if (action == HDA_FIXUP_ACT_PRE_PROBE) { in ad1986a_fixup_eapd_mix_in() 267 ad1986a_fixup_eapd(codec, fix, action); in ad1986a_fixup_eapd_mix_in() 572 const struct hda_fixup *fix, int action) in ad1981_fixup_hp_eapd() argument 576 if (action == HDA_FIXUP_ACT_PRE_PROBE) { in ad1981_fixup_hp_eapd() 586 const struct hda_fixup *fix, int action) in ad1981_fixup_amp_override() argument [all …]
|
D | patch_cirrus.c | 493 const struct hda_fixup *fix, int action) in cs420x_fixup_gpio_13() argument 495 if (action == HDA_FIXUP_ACT_PRE_PROBE) { in cs420x_fixup_gpio_13() 505 const struct hda_fixup *fix, int action) in cs420x_fixup_gpio_23() argument 507 if (action == HDA_FIXUP_ACT_PRE_PROBE) { in cs420x_fixup_gpio_23() 649 const struct hda_fixup *fix, int action) in cs4208_fixup_gpio0() argument 651 if (action == HDA_FIXUP_ACT_PRE_PROBE) { in cs4208_fixup_gpio0() 664 const struct hda_fixup *fix, int action) in cs4208_fixup_mac() argument 666 if (action != HDA_FIXUP_ACT_PRE_PROBE) in cs4208_fixup_mac() 673 snd_hda_apply_fixup(codec, action); in cs4208_fixup_mac() 678 const struct hda_fixup *fix, int action) in cs4208_fixup_macmini() argument [all …]
|
D | patch_conexant.c | 270 const struct hda_fixup *fix, int action) in cxt_fixup_stereo_dmic() argument 277 const struct hda_fixup *fix, int action) in cxt5066_increase_mic_boost() argument 279 if (action != HDA_FIXUP_ACT_PRE_PROBE) in cxt5066_increase_mic_boost() 324 const struct hda_fixup *fix, int action) in cxt_fixup_headphone_mic() argument 328 switch (action) { in cxt_fixup_headphone_mic() 452 int action) in olpc_xo_capture_hook() argument 459 switch (action) { in olpc_xo_capture_hook() 564 const struct hda_fixup *fix, int action) in cxt_fixup_olpc_xo() argument 569 if (action != HDA_FIXUP_ACT_PROBE) in cxt_fixup_olpc_xo() 596 const struct hda_fixup *fix, int action) in cxt_fixup_mute_led_eapd() argument [all …]
|
D | hda_auto_parser.c | 823 static void apply_fixup(struct hda_codec *codec, int id, int action, int depth) in apply_fixup() argument 831 apply_fixup(codec, fix->chain_id, action, depth + 1); in apply_fixup() 835 if (action != HDA_FIXUP_ACT_PRE_PROBE || !fix->v.pins) in apply_fixup() 842 if (action != HDA_FIXUP_ACT_PROBE || !fix->v.verbs) in apply_fixup() 853 fix->v.func(codec, fix, action); in apply_fixup() 856 if (action != HDA_FIXUP_ACT_PROBE || !fix->v.pins) in apply_fixup() 880 void snd_hda_apply_fixup(struct hda_codec *codec, int action) in snd_hda_apply_fixup() argument 883 apply_fixup(codec, codec->fixup_id, action, 0); in snd_hda_apply_fixup()
|
/linux-4.1.27/drivers/net/wireless/mwifiex/ |
D | sta_cmd.c | 49 cmd->params.rssi_info.action = cpu_to_le16(cmd_action); in mwifiex_cmd_802_11_rssi_info() 75 u16 cmd_action, u16 *action) in mwifiex_cmd_mac_control() argument 88 mac_ctrl->action = cpu_to_le16(*action); in mwifiex_cmd_mac_control() 176 rate_cfg->action = cpu_to_le16(cmd_action); in mwifiex_cmd_tx_rate_cfg() 271 cmd_txp_cfg->action = cpu_to_le16(cmd_action); in mwifiex_cmd_tx_power_cfg() 274 cmd_txp_cfg->action = cpu_to_le16(cmd_action); in mwifiex_cmd_tx_power_cfg() 293 txp->action = cpu_to_le16(cmd_action); in mwifiex_cmd_rf_tx_power() 324 ant_siso->action = cpu_to_le16(HostCmd_ACT_SET_BOTH); in mwifiex_cmd_rf_antenna() 374 hs_cfg->action = cpu_to_le16(HS_ACTIVATE); in mwifiex_cmd_802_11_hs_cfg() 377 hs_cfg->action = cpu_to_le16(HS_CONFIGURE); in mwifiex_cmd_802_11_hs_cfg() [all …]
|
D | fw.h | 832 __le16 action; member 837 __le16 action; member 879 __le16 action; member 924 __le16 action; member 932 __le16 action; member 947 __le16 action; member 952 __le16 action; member 957 __le16 action; member 1134 __le16 action; member 1178 __le16 action; member [all …]
|
D | sta_cmdresp.c | 63 resp->result, le16_to_cpu(pm->action)); in mwifiex_process_cmdresp_error() 65 if (le16_to_cpu(pm->action) == EN_AUTO_PS && in mwifiex_process_cmdresp_error() 148 subsc_evt->action = HostCmd_ACT_BITWISE_SET; in mwifiex_ret_802_11_rssi_info() 397 u16 action = le16_to_cpu(txp_cfg->action); in mwifiex_ret_tx_power_cfg() local 413 switch (action) { in mwifiex_ret_tx_power_cfg() 430 action); in mwifiex_ret_tx_power_cfg() 448 u16 action = le16_to_cpu(txp->action); in mwifiex_ret_rf_tx_power() local 452 if (action == HostCmd_ACT_GEN_GET) { in mwifiex_ret_rf_tx_power() 486 le16_to_cpu(ant_siso->action), in mwifiex_ret_rf_antenna() 588 if (le16_to_cpu(key->action) == HostCmd_ACT_GEN_SET) { in mwifiex_ret_802_11_key_material_v1() [all …]
|
D | 11n.c | 219 u16 action = (u16) cmd_action; in mwifiex_cmd_recfg_tx_buf() local 224 tx_buf->action = cpu_to_le16(action); in mwifiex_cmd_recfg_tx_buf() 225 switch (action) { in mwifiex_cmd_recfg_tx_buf() 252 u16 action = (u16) cmd_action; in mwifiex_cmd_amsdu_aggr_ctrl() local 257 amsdu_ctrl->action = cpu_to_le16(action); in mwifiex_cmd_amsdu_aggr_ctrl() 258 switch (action) { in mwifiex_cmd_amsdu_aggr_ctrl() 287 htcfg->action = cpu_to_le16(cmd_action); in mwifiex_cmd_11n_cfg()
|
D | cmdevt.c | 286 le16_to_cpu(sleep_cfm_buf->action), in mwifiex_dnld_sleep_confirm_cmd() 661 if ((le16_to_cpu(pm->action) == DIS_PS) || in mwifiex_insert_cmd_to_pending_q() 662 (le16_to_cpu(pm->action) == DIS_AUTO_PS)) { in mwifiex_insert_cmd_to_pending_q() 1154 if (phs_cfg->action == cpu_to_le16(HS_ACTIVATE) && in mwifiex_ret_802_11_hs_cfg() 1283 psmode_enh->action = cpu_to_le16(DIS_AUTO_PS); in mwifiex_cmd_enh_power_mode() 1285 cmd->size = cpu_to_le16(S_DS_GEN + sizeof(psmode_enh->action) + in mwifiex_cmd_enh_power_mode() 1288 psmode_enh->action = cpu_to_le16(GET_PS); in mwifiex_cmd_enh_power_mode() 1290 cmd->size = cpu_to_le16(S_DS_GEN + sizeof(psmode_enh->action) + in mwifiex_cmd_enh_power_mode() 1293 psmode_enh->action = cpu_to_le16(EN_AUTO_PS); in mwifiex_cmd_enh_power_mode() 1295 cmd_size = S_DS_GEN + sizeof(psmode_enh->action) + in mwifiex_cmd_enh_power_mode() [all …]
|
D | sta_ioctl.c | 385 int mwifiex_set_hs_params(struct mwifiex_private *priv, u16 action, in mwifiex_set_hs_params() argument 396 switch (action) { in mwifiex_set_hs_params() 652 txp_cfg->action = cpu_to_le16(HostCmd_ACT_GEN_SET); in mwifiex_set_tx_power() 1111 mwifiex_remain_on_chan_cfg(struct mwifiex_private *priv, u16 action, in mwifiex_remain_on_chan_cfg() argument 1119 roc_cfg.action = cpu_to_le16(action); in mwifiex_remain_on_chan_cfg() 1120 if (action == HostCmd_ACT_GEN_SET) { in mwifiex_remain_on_chan_cfg() 1130 action, 0, &roc_cfg, true)) { in mwifiex_remain_on_chan_cfg() 1167 u16 action) in mwifiex_reg_mem_ioctl_reg_rw() argument 1191 return mwifiex_send_cmd(priv, cmd_no, action, 0, reg_rw, true); in mwifiex_reg_mem_ioctl_reg_rw() 1346 u16 action) in mwifiex_misc_ioctl_gen_ie() argument [all …]
|
D | tdls.c | 701 skb_put(skb, sizeof(mgmt->u.action.u.tdls_discover_resp) + 1); in mwifiex_construct_tdls_action_frame() 702 mgmt->u.action.category = WLAN_CATEGORY_PUBLIC; in mwifiex_construct_tdls_action_frame() 703 mgmt->u.action.u.tdls_discover_resp.action_code = in mwifiex_construct_tdls_action_frame() 705 mgmt->u.action.u.tdls_discover_resp.dialog_token = in mwifiex_construct_tdls_action_frame() 707 mgmt->u.action.u.tdls_discover_resp.capability = in mwifiex_construct_tdls_action_frame() 710 memmove(pos + ETH_ALEN, &mgmt->u.action.category, in mwifiex_construct_tdls_action_frame() 711 sizeof(mgmt->u.action.u.tdls_discover_resp)); in mwifiex_construct_tdls_action_frame() 838 u8 i, action, basic; in mwifiex_process_tdls_action_frame() local 850 action = *(buf + sizeof(struct ethhdr) + 2); in mwifiex_process_tdls_action_frame() 852 "rx:tdls action: peer=%pM, action=%d\n", peer, action); in mwifiex_process_tdls_action_frame() [all …]
|
/linux-4.1.27/arch/mips/netlogic/xlr/ |
D | fmn.c | 58 void (*action)(int, int, int, int, struct nlm_fmn_msg *, void *); member 96 if (hndlr->action == NULL) in fmn_message_handler() 101 hndlr->action(bucket, src_stnid, size, code, in fmn_message_handler() 179 void (*action)(int, int, int, int, struct nlm_fmn_msg *, void *), in nlm_register_fmn_handler() 187 msg_handlers[sstnid].action = action; in nlm_register_fmn_handler()
|
/linux-4.1.27/kernel/sched/ |
D | wait.c | 388 wait_bit_action_f *action, unsigned mode) in __wait_on_bit() argument 395 ret = (*action)(&q->key); in __wait_on_bit() 403 wait_bit_action_f *action, unsigned mode) in out_of_line_wait_on_bit() argument 408 return __wait_on_bit(wq, &wait, action, mode); in out_of_line_wait_on_bit() 413 void *word, int bit, wait_bit_action_f *action, in out_of_line_wait_on_bit_timeout() argument 420 return __wait_on_bit(wq, &wait, action, mode); in out_of_line_wait_on_bit_timeout() 426 wait_bit_action_f *action, unsigned mode) in __wait_on_bit_lock() argument 434 ret = action(&q->key); in __wait_on_bit_lock() 446 wait_bit_action_f *action, unsigned mode) in out_of_line_wait_on_bit_lock() argument 451 return __wait_on_bit_lock(wq, &wait, action, mode); in out_of_line_wait_on_bit_lock() [all …]
|
D | completion.c | 62 long (*action)(long), long timeout, int state) in do_wait_for_common() 75 timeout = action(timeout); in do_wait_for_common() 88 long (*action)(long), long timeout, int state) in __wait_for_common() 93 timeout = do_wait_for_common(x, action, timeout, state); in __wait_for_common()
|
/linux-4.1.27/drivers/watchdog/ |
D | machzwd.c | 119 static int action; variable 120 module_param(action, int, 0); 121 MODULE_PARM_DESC(action, "after watchdog resets, generate: " 407 if (action <= 3 && action >= 0) in zf_init() 408 zf_action = zf_action >> action; in zf_init() 410 action = 0; in zf_init() 412 zf_show_action(action); in zf_init()
|
D | diag288_wdt.c | 75 unsigned long action, unsigned int len) in __diag288() argument 79 register unsigned long __action asm("4") = action; in __diag288() 101 unsigned long action) in __diag288_lpar() argument 103 return __diag288(func, timeout, action, 0); in __diag288_lpar()
|
D | kempld_wdt.c | 114 u8 action) in kempld_wdt_set_stage_action() argument 125 stage_cfg |= (action & STAGE_CFG_ACTION_MASK); in kempld_wdt_set_stage_action() 127 if (action == ACTION_RESET) in kempld_wdt_set_stage_action() 237 u8 action = ACTION_NONE; in kempld_wdt_set_pretimeout() local 249 action = ACTION_NMI; in kempld_wdt_set_pretimeout() 252 action); in kempld_wdt_set_pretimeout()
|
/linux-4.1.27/arch/sh/mm/ |
D | alignment.c | 70 unsigned int action = se_usermode; in unaligned_user_action() local 73 action &= ~UM_FIXUP; in unaligned_user_action() 74 action |= UM_SIGNAL; in unaligned_user_action() 78 action &= ~UM_WARN; in unaligned_user_action() 80 return action; in unaligned_user_action()
|
/linux-4.1.27/sound/firewire/oxfw/ |
D | oxfw-control.c | 18 enum control_action action) in oxfw_mute_command() argument 28 if (action == CTL_READ) { in oxfw_mute_command() 44 if (action == CTL_READ) in oxfw_mute_command() 62 if (action == CTL_READ) in oxfw_mute_command() 76 enum control_action action) in oxfw_volume_command() argument 86 if (action == CTL_READ) { in oxfw_volume_command() 102 if (action == CTL_READ) { in oxfw_volume_command() 123 if (action == CTL_READ) in oxfw_volume_command()
|
/linux-4.1.27/drivers/acpi/apei/ |
D | apei-internal.h | 54 int __apei_exec_run(struct apei_exec_context *ctx, u8 action, bool optional); 56 static inline int apei_exec_run(struct apei_exec_context *ctx, u8 action) in apei_exec_run() argument 58 return __apei_exec_run(ctx, action, 0); in apei_exec_run() 62 static inline int apei_exec_run_optional(struct apei_exec_context *ctx, u8 action) in apei_exec_run_optional() argument 64 return __apei_exec_run(ctx, action, 1); in apei_exec_run_optional()
|
/linux-4.1.27/net/core/ |
D | fib_rules.c | 30 r->action = FR_ACT_TO_TBL; in fib_default_rule_add() 111 ops->action == NULL) in __fib_rules_register() 207 if (rule->action == FR_ACT_GOTO) { in fib_rules_lookup() 217 } else if (rule->action == FR_ACT_NOP) in fib_rules_lookup() 220 err = ops->action(rule, fl, flags, arg); in fib_rules_lookup() 333 rule->action = frh->action; in fib_nl_newrule() 351 if (rule->action != FR_ACT_GOTO) in fib_nl_newrule() 368 } else if (rule->action == FR_ACT_GOTO) in fib_nl_newrule() 394 if (r->action == FR_ACT_GOTO && in fib_nl_newrule() 404 if (rule->action == FR_ACT_GOTO) in fib_nl_newrule() [all …]
|
/linux-4.1.27/drivers/ata/ |
D | libata-eh.c | 439 return ehc->i.action | ehc->i.dev_action[dev->devno]; in ata_eh_dev_action() 443 struct ata_eh_info *ehi, unsigned int action) in ata_eh_clear_action() argument 448 ehi->action &= ~action; in ata_eh_clear_action() 450 ehi->dev_action[tdev->devno] &= ~action; in ata_eh_clear_action() 453 WARN_ON(!(action & ATA_EH_PERDEV_MASK)); in ata_eh_clear_action() 456 if (ehi->action & action) { in ata_eh_clear_action() 459 ehi->action & action; in ata_eh_clear_action() 460 ehi->action &= ~action; in ata_eh_clear_action() 464 ehi->dev_action[dev->devno] &= ~action; in ata_eh_clear_action() 1414 unsigned int action) in ata_eh_about_to_do() argument [all …]
|
D | sata_sil24.c | 272 unsigned int err_mask, action; member 597 ap->link.eh_context.i.action |= ATA_EH_RESET; in sil24_init_port() 1014 ehi->action |= ATA_EH_RESET; in sil24_error_intr() 1022 unsigned int err_mask = 0, action = 0; in sil24_error_intr() local 1035 ehi->action |= ATA_EH_RESET; in sil24_error_intr() 1056 action |= ATA_EH_RESET; in sil24_error_intr() 1069 action |= ci->action; in sil24_error_intr() 1070 if (action & ATA_EH_RESET) in sil24_error_intr() 1075 action |= ATA_EH_RESET; in sil24_error_intr() 1087 ehi->action |= action; in sil24_error_intr() [all …]
|
D | libata-pmp.c | 367 ehc->i.action |= ATA_EH_RESET; in sata_pmp_init_links() 773 if (ehc->i.action & ATA_EH_RESET) { in sata_pmp_eh_recover_pmp() 789 ehc->i.action |= ATA_EH_RESET; in sata_pmp_eh_recover_pmp() 796 if (ehc->i.action & ATA_EH_REVALIDATE) in sata_pmp_eh_recover_pmp() 818 ehc->i.action |= ATA_EH_RESET; in sata_pmp_eh_recover_pmp() 903 link->eh_context.i.action = 0; in sata_pmp_handle_link_fail() 1065 pmp_ehc->i.action |= ATA_EH_RESET; in sata_pmp_eh_recover() 1081 pmp_ehc->i.action |= ATA_EH_RESET; in sata_pmp_eh_recover()
|
/linux-4.1.27/net/bridge/netfilter/ |
D | ebt_mark.c | 25 int action = info->target & -16; in ebt_mark_tg() local 27 if (action == MARK_SET_VALUE) in ebt_mark_tg() 29 else if (action == MARK_OR_VALUE) in ebt_mark_tg() 31 else if (action == MARK_AND_VALUE) in ebt_mark_tg()
|
/linux-4.1.27/arch/mips/paravirt/ |
D | paravirt-smp.c | 69 static void paravirt_send_ipi_single(int cpu, unsigned int action) in paravirt_send_ipi_single() argument 71 irq_mbox_ipi(cpu, action); in paravirt_send_ipi_single() 74 static void paravirt_send_ipi_mask(const struct cpumask *mask, unsigned int action) in paravirt_send_ipi_mask() argument 79 paravirt_send_ipi_single(cpu, action); in paravirt_send_ipi_mask()
|
/linux-4.1.27/drivers/net/wireless/libertas_tf/ |
D | libertas_tf.h | 379 __le16 action; member 386 __le16 action; member 393 __le16 action; member 414 __le16 action; member 422 __le16 action; member 432 __le16 action; member 439 __le16 action; member 445 __le16 action; member
|
/linux-4.1.27/arch/mips/netlogic/common/ |
D | smp.c | 60 void nlm_send_ipi_single(int logical_cpu, unsigned int action) in nlm_send_ipi_single() argument 69 if (action & SMP_CALL_FUNCTION) in nlm_send_ipi_single() 71 if (action & SMP_RESCHEDULE_YOURSELF) in nlm_send_ipi_single() 75 void nlm_send_ipi_mask(const struct cpumask *mask, unsigned int action) in nlm_send_ipi_mask() argument 80 nlm_send_ipi_single(cpu, action); in nlm_send_ipi_mask()
|
/linux-4.1.27/drivers/net/wireless/iwlegacy/ |
D | 4965-rs.c | 1196 tbl->action = 0; in il4965_rs_switch_to_mimo2() 1242 tbl->action = 0; in il4965_rs_switch_to_siso() 1291 tbl->action = IL_LEGACY_SWITCH_SISO; in il4965_rs_move_legacy_other() 1293 start_action = tbl->action; in il4965_rs_move_legacy_other() 1296 switch (tbl->action) { in il4965_rs_move_legacy_other() 1301 if ((tbl->action == IL_LEGACY_SWITCH_ANTENNA1 && in il4965_rs_move_legacy_other() 1303 (tbl->action == IL_LEGACY_SWITCH_ANTENNA2 && in il4965_rs_move_legacy_other() 1347 if (tbl->action == IL_LEGACY_SWITCH_MIMO2_AB) in il4965_rs_move_legacy_other() 1349 else if (tbl->action == IL_LEGACY_SWITCH_MIMO2_AC) in il4965_rs_move_legacy_other() 1367 tbl->action++; in il4965_rs_move_legacy_other() [all …]
|
/linux-4.1.27/drivers/net/wireless/brcm80211/brcmfmac/ |
D | p2p.c | 160 u8 action; member 197 u8 action; member 236 pact_frm->action == P2P_PUB_AF_ACTION && in brcmf_p2p_is_pub_action() 293 if (sd_act_frm->action == P2PSD_ACTION_ID_GAS_IREQ || in brcmf_p2p_is_gas_action() 294 sd_act_frm->action == P2PSD_ACTION_ID_GAS_IRESP || in brcmf_p2p_is_gas_action() 295 sd_act_frm->action == P2PSD_ACTION_ID_GAS_CREQ || in brcmf_p2p_is_gas_action() 296 sd_act_frm->action == P2PSD_ACTION_ID_GAS_CRESP) in brcmf_p2p_is_gas_action() 393 switch (sd_act_frm->action) { in brcmf_p2p_print_actframe() 631 u16 chanspecs[], s32 search_state, u16 action, in brcmf_p2p_escan() argument 744 p2p_params->eparams.action = cpu_to_le16(action); in brcmf_p2p_escan() [all …]
|
D | fweh.c | 185 ifevent->action, ifevent->ifidx, ifevent->bssidx, in brcmf_fweh_handle_if_event() 206 if (ifevent->action == BRCMF_E_IF_ADD) { in brcmf_fweh_handle_if_event() 219 if (ifp && ifevent->action == BRCMF_E_IF_CHANGE) in brcmf_fweh_handle_if_event() 224 if (ifp && ifevent->action == BRCMF_E_IF_DEL) in brcmf_fweh_handle_if_event()
|
/linux-4.1.27/drivers/cpufreq/ |
D | highbank-cpufreq.c | 37 unsigned long action, void *hclk) in hb_cpufreq_clk_notify() argument 42 if (action == PRE_RATE_CHANGE) { in hb_cpufreq_clk_notify() 47 } else if (action == POST_RATE_CHANGE) { in hb_cpufreq_clk_notify()
|
/linux-4.1.27/drivers/gpu/drm/radeon/ |
D | atombios_encoders.c | 345 atombios_dac_setup(struct drm_encoder *encoder, int action) in atombios_dac_setup() argument 367 args.ucAction = action; in atombios_dac_setup() 397 atombios_tv_setup(struct drm_encoder *encoder, int action) in atombios_tv_setup() argument 410 args.sTVEncoder.ucAction = action; in atombios_tv_setup() 486 atombios_dvo_setup(struct drm_encoder *encoder, int action) in atombios_dvo_setup() argument 509 args.ext_tmds.sXTmdsEncoder.ucEnable = action; in atombios_dvo_setup() 518 args.dvo.sDVOEncoder.ucAction = action; in atombios_dvo_setup() 528 args.dvo_v3.ucAction = action; in atombios_dvo_setup() 534 args.dvo_v4.ucAction = action; in atombios_dvo_setup() 558 atombios_digital_setup(struct drm_encoder *encoder, int action) in atombios_digital_setup() argument [all …]
|
/linux-4.1.27/arch/powerpc/kernel/ |
D | mce_power.c | 31 static void flush_tlb_206(unsigned int num_sets, unsigned int action) in flush_tlb_206() argument 36 switch (action) { in flush_tlb_206() 63 void __flush_tlb_power7(unsigned int action) in __flush_tlb_power7() argument 65 flush_tlb_206(POWER7_TLB_SETS, action); in __flush_tlb_power7() 75 void __flush_tlb_power8(unsigned int action) in __flush_tlb_power8() argument 77 flush_tlb_206(POWER8_TLB_SETS, action); in __flush_tlb_power8()
|
D | dma-swiotlb.c | 78 unsigned long action, void *data) in ppc_swiotlb_bus_notify() argument 84 if (action != BUS_NOTIFY_ADD_DEVICE) in ppc_swiotlb_bus_notify()
|
/linux-4.1.27/drivers/i2c/busses/ |
D | i2c-mv64xxx.c | 123 u32 action; member 232 drv_data->action = MV64XXX_I2C_ACTION_SEND_STOP; in mv64xxx_i2c_fsm() 241 drv_data->action = MV64XXX_I2C_ACTION_SEND_ADDR_1; in mv64xxx_i2c_fsm() 248 drv_data->action = MV64XXX_I2C_ACTION_SEND_ADDR_2; in mv64xxx_i2c_fsm() 260 drv_data->action = MV64XXX_I2C_ACTION_SEND_STOP; in mv64xxx_i2c_fsm() 263 drv_data->action = in mv64xxx_i2c_fsm() 269 drv_data->action = MV64XXX_I2C_ACTION_SEND_DATA; in mv64xxx_i2c_fsm() 279 drv_data->action = MV64XXX_I2C_ACTION_SEND_ADDR_2; in mv64xxx_i2c_fsm() 287 drv_data->action = MV64XXX_I2C_ACTION_SEND_STOP; in mv64xxx_i2c_fsm() 294 drv_data->action = MV64XXX_I2C_ACTION_CONTINUE; in mv64xxx_i2c_fsm() [all …]
|
/linux-4.1.27/tools/perf/util/ |
D | lzma.c | 29 lzma_action action = LZMA_RUN; in lzma_decompress_to_file() local 67 action = LZMA_FINISH; in lzma_decompress_to_file() 70 ret = lzma_code(&strm, action); in lzma_decompress_to_file()
|
/linux-4.1.27/drivers/net/wireless/cw1200/ |
D | pm.c | 38 .action = WSM_FILTER_ACTION_FILTER_OUT, 43 .action = WSM_FILTER_ACTION_FILTER_OUT, 62 .action = WSM_FILTER_ACTION_FILTER_IN, 66 .action = WSM_FILTER_ACTION_FILTER_IN, 70 .action = WSM_FILTER_ACTION_FILTER_IN, 74 .action = WSM_FILTER_ACTION_FILTER_IN,
|
/linux-4.1.27/arch/x86/kernel/ |
D | nmi.c | 151 int __register_nmi_handler(unsigned int type, struct nmiaction *action) in __register_nmi_handler() argument 156 if (!action->handler) in __register_nmi_handler() 159 init_irq_work(&action->irq_work, nmi_max_handler); in __register_nmi_handler() 176 if (action->flags & NMI_FLAG_FIRST) in __register_nmi_handler() 177 list_add_rcu(&action->list, &desc->head); in __register_nmi_handler() 179 list_add_tail_rcu(&action->list, &desc->head); in __register_nmi_handler()
|
D | topology.c | 60 int __ref _debug_hotplug_cpu(int cpu, int action) in _debug_hotplug_cpu() argument 70 switch (action) { in _debug_hotplug_cpu()
|
D | apb_timer.c | 223 unsigned long action, void *hcpu) in apbt_cpuhp_notify() argument 228 switch (action & 0xf) { in apbt_cpuhp_notify() 239 pr_debug("APBT notified %lu, no action\n", action); in apbt_cpuhp_notify()
|
/linux-4.1.27/drivers/base/power/ |
D | clock_ops.c | 327 unsigned long action, void *data) in pm_clk_notify() argument 334 dev_dbg(dev, "%s() %ld\n", __func__, action); in pm_clk_notify() 338 switch (action) { in pm_clk_notify() 416 unsigned long action, void *data) in pm_clk_notify() argument 422 dev_dbg(dev, "%s() %ld\n", __func__, action); in pm_clk_notify() 426 switch (action) { in pm_clk_notify()
|
/linux-4.1.27/arch/arm/mach-shmobile/ |
D | regulator-quirk-rcar-gen2.c | 79 unsigned long action, void *data) in regulator_quirk_notify() argument 86 dev_dbg(dev, "%s: %ld, IRQC_MONITOR = 0x%x\n", __func__, action, mon); in regulator_quirk_notify() 90 if (action != BUS_NOTIFY_ADD_DEVICE || dev->type == &i2c_adapter_type) in regulator_quirk_notify()
|
D | platsmp-scu.c | 21 unsigned long action, void *hcpu) in shmobile_smp_scu_notifier_call() argument 25 switch (action) { in shmobile_smp_scu_notifier_call()
|
/linux-4.1.27/drivers/net/wan/ |
D | hdlc_ppp.c | 307 int old_state, action; in ppp_cp_event() local 320 action = cp_table[event][old_state]; in ppp_cp_event() 322 proto->state = action & STATE_MASK; in ppp_cp_event() 323 if (action & (SCR | STR)) /* set Configure-Req/Terminate-Req timer */ in ppp_cp_event() 326 if (action & ZRC) in ppp_cp_event() 328 if (action & IRC) in ppp_cp_event() 332 if (action & SCR) /* send Configure-Request */ in ppp_cp_event() 335 if (action & SCA) /* send Configure-Ack */ in ppp_cp_event() 337 if (action & SCN) /* send Configure-Nak/Reject */ in ppp_cp_event() 339 if (action & STR) /* send Terminate-Request */ in ppp_cp_event() [all …]
|
/linux-4.1.27/drivers/xen/ |
D | xen-acpi-cpuhotplug.c | 357 int *action = context; in processor_walk_namespace_cb() local 363 switch (*action) { in processor_walk_namespace_cb() 386 int action = INSTALL_NOTIFY_HANDLER; in acpi_processor_install_hotplug_notify() local 390 processor_walk_namespace_cb, NULL, &action, NULL); in acpi_processor_install_hotplug_notify() 396 int action = UNINSTALL_NOTIFY_HANDLER; in acpi_processor_uninstall_hotplug_notify() local 400 processor_walk_namespace_cb, NULL, &action, NULL); in acpi_processor_uninstall_hotplug_notify()
|
D | pci.c | 179 unsigned long action, void *data) in xen_pci_notifier() argument 184 switch (action) { in xen_pci_notifier() 196 action == BUS_NOTIFY_ADD_DEVICE ? "add" : in xen_pci_notifier() 197 (action == BUS_NOTIFY_DEL_DEVICE ? "delete" : "?")); in xen_pci_notifier()
|
/linux-4.1.27/drivers/pci/hotplug/ |
D | sgi_hotplug.c | 271 int device_num, int action) in sn_slot_disable() argument 280 rc = sal_pcibr_slot_disable(pcibus_info, device_num, action, &resp); in sn_slot_disable() 282 if ((action == PCI_REQ_SLOT_ELIGIBLE) && in sn_slot_disable() 288 if ((action == PCI_REQ_SLOT_ELIGIBLE) && (rc == PCI_EMPTY_33MHZ)) { in sn_slot_disable() 293 if ((action == PCI_REQ_SLOT_ELIGIBLE) && (rc == PCI_L1_ERR)) { in sn_slot_disable() 299 if ((action == PCI_REQ_SLOT_ELIGIBLE) && rc) { in sn_slot_disable() 305 if ((action == PCI_REQ_SLOT_ELIGIBLE) && !rc) in sn_slot_disable() 308 if ((action == PCI_REQ_SLOT_DISABLE) && !rc) { in sn_slot_disable() 315 if ((action == PCI_REQ_SLOT_DISABLE) && rc) { in sn_slot_disable()
|
/linux-4.1.27/arch/mips/sgi-ip27/ |
D | ip27-smp.c | 143 static void ip27_send_ipi_single(int destid, unsigned int action) in ip27_send_ipi_single() argument 147 switch (action) { in ip27_send_ipi_single() 168 static void ip27_send_ipi_mask(const struct cpumask *mask, unsigned int action) in ip27_send_ipi_mask() argument 173 ip27_send_ipi_single(i, action); in ip27_send_ipi_mask()
|
/linux-4.1.27/arch/mips/jazz/ |
D | irq.c | 144 struct irqaction *action = &r4030_timer_irqaction; in plat_time_init() local 151 action->dev_id = cd; in plat_time_init() 152 setup_irq(JAZZ_TIMER_IRQ, action); in plat_time_init()
|
/linux-4.1.27/arch/blackfin/kernel/ |
D | trace.c | 849 struct irqaction *action; in show_regs() local 922 action = desc->action; in show_regs() 923 if (!action) in show_regs() 926 decode_address(buf, (unsigned int)action->handler); in show_regs() 928 for (action = action->next; action; action = action->next) { in show_regs() 929 decode_address(buf, (unsigned int)action->handler); in show_regs()
|
/linux-4.1.27/arch/mips/pmcs-msp71xx/ |
D | msp_smp.c | 64 void __init arch_init_ipiirq(int irq, struct irqaction *action) in arch_init_ipiirq() argument 66 setup_irq(irq, action); in arch_init_ipiirq()
|
/linux-4.1.27/block/ |
D | blk-softirq.c | 81 static int blk_cpu_notify(struct notifier_block *self, unsigned long action, in blk_cpu_notify() argument 88 if (action == CPU_DEAD || action == CPU_DEAD_FROZEN) { in blk_cpu_notify()
|
D | blk-iopoll.c | 190 unsigned long action, void *hcpu) in blk_iopoll_cpu_notify() argument 196 if (action == CPU_DEAD || action == CPU_DEAD_FROZEN) { in blk_iopoll_cpu_notify()
|
D | blk-mq-cpu.c | 22 unsigned long action, void *hcpu) in blk_mq_main_cpu_notify() argument 31 ret = notify->notify(notify->data, action, cpu); in blk_mq_main_cpu_notify()
|
/linux-4.1.27/drivers/staging/lustre/include/linux/libcfs/ |
D | libcfs_workitem.h | 90 cfs_wi_init(cfs_workitem_t *wi, void *data, cfs_wi_action_t action) in cfs_wi_init() argument 97 wi->wi_action = action; in cfs_wi_init()
|
/linux-4.1.27/drivers/gpu/host1x/ |
D | intr.h | 60 enum host1x_intr_action action; member 79 enum host1x_intr_action action, void *data,
|
D | intr.c | 77 dest = completed + waiter->action; in remove_completed_waiters() 80 if (waiter->action == HOST1X_INTR_ACTION_SUBMIT_COMPLETE && in remove_completed_waiters() 213 enum host1x_intr_action action, void *data, in host1x_intr_add_action() argument 230 waiter->action = action; in host1x_intr_add_action()
|
/linux-4.1.27/scripts/kconfig/ |
D | qconf.cc | 831 Q3Action *action; in contextMenuEvent() local 834 action = new Q3Action(NULL, _("Show Name"), 0, this); in contextMenuEvent() 835 action->setToggleAction(TRUE); in contextMenuEvent() 836 connect(action, SIGNAL(toggled(bool)), in contextMenuEvent() 839 action, SLOT(setOn(bool))); in contextMenuEvent() 840 action->setOn(showName); in contextMenuEvent() 841 action->addTo(headerPopup); in contextMenuEvent() 842 action = new Q3Action(NULL, _("Show Range"), 0, this); in contextMenuEvent() 843 action->setToggleAction(TRUE); in contextMenuEvent() 844 connect(action, SIGNAL(toggled(bool)), in contextMenuEvent() [all …]
|
/linux-4.1.27/net/rds/ |
D | page.c | 183 unsigned long action, void *hcpu) in rds_page_remainder_cpu_notify() argument 190 rdsdebug("cpu %ld action 0x%lx\n", cpu, action); in rds_page_remainder_cpu_notify() 192 switch (action) { in rds_page_remainder_cpu_notify()
|
/linux-4.1.27/Documentation/ |
D | dcdbas.txt | 54 action after the system has finished shutting down: 61 power off host control action using this driver: 63 1) Write host control action to be performed to host_control_action. 65 3) Write "1" to host_control_on_shutdown to enable host control action. 74 perform a power cycle or power off host control action:
|
/linux-4.1.27/drivers/net/wireless/ti/wl18xx/ |
D | acx.c | 204 bool action) in wl18xx_acx_interrupt_notify_config() argument 215 acx->enable = action; in wl18xx_acx_interrupt_notify_config() 231 int wl18xx_acx_rx_ba_filter(struct wl1271 *wl, bool action) in wl18xx_acx_rx_ba_filter() argument 242 acx->enable = (u32)action; in wl18xx_acx_rx_ba_filter()
|
/linux-4.1.27/arch/mips/netlogic/xlp/ |
D | cop2-ex.c | 89 static int nlm_cu2_call(struct notifier_block *nfb, unsigned long action, in nlm_cu2_call() argument 95 switch (action) { in nlm_cu2_call()
|
/linux-4.1.27/drivers/base/ |
D | devres.c | 681 void (*action)(void *); member 689 return devres->action == target->action && in devm_action_match() 697 devres->action(devres->data); in devm_action_release() 709 int devm_add_action(struct device *dev, void (*action)(void *), void *data) in devm_add_action() 719 devres->action = action; in devm_add_action() 735 void devm_remove_action(struct device *dev, void (*action)(void *), void *data) in devm_remove_action() 739 .action = action, in devm_remove_action()
|
D | topology.c | 116 unsigned long action, void *hcpu) in topology_cpu_callback() argument 121 switch (action) { in topology_cpu_callback()
|
/linux-4.1.27/kernel/ |
D | softirq.c | 273 h->action(h); in __do_softirq() 277 vec_nr, softirq_to_name[vec_nr], h->action, in __do_softirq() 433 void open_softirq(int nr, void (*action)(struct softirq_action *)) in open_softirq() 435 softirq_vec[nr].action = action; in open_softirq() 729 static int cpu_callback(struct notifier_block *nfb, unsigned long action, in cpu_callback() argument 732 switch (action) { in cpu_callback()
|
D | seccomp.c | 617 u32 filter_ret, action; in __seccomp_phase1_filter() local 628 action = filter_ret & SECCOMP_RET_ACTION; in __seccomp_phase1_filter() 630 switch (action) { in __seccomp_phase1_filter() 654 audit_seccomp(this_syscall, SIGSYS, action); in __seccomp_phase1_filter() 661 audit_seccomp(this_syscall, 0, action); in __seccomp_phase1_filter() 719 u32 action = phase1_result & SECCOMP_RET_ACTION; in seccomp_phase2() local 722 BUG_ON(action != SECCOMP_RET_TRACE); in seccomp_phase2() 724 audit_seccomp(syscall_get_nr(current, regs), 0, action); in seccomp_phase2()
|
D | auditfilter.c | 259 if (rule->action == AUDIT_ALWAYS) in audit_to_entry_common() 268 if (unlikely(rule->action == AUDIT_POSSIBLE)) { in audit_to_entry_common() 272 if (rule->action != AUDIT_NEVER && rule->action != AUDIT_ALWAYS) in audit_to_entry_common() 284 entry->rule.action = rule->action; in audit_to_entry_common() 584 data->action = krule->action; in audit_krule_to_data() 645 a->action != b->action || in audit_compare_rule() 763 new->action = old->action; in audit_dupe_rule() 1027 static void audit_log_rule_change(char *action, struct audit_krule *rule, int res) in audit_log_rule_change() argument 1042 audit_log_string(ab, action); in audit_log_rule_change() 1306 switch (rule->action) { in audit_filter_user_rules()
|
/linux-4.1.27/arch/ia64/include/asm/ |
D | paravirt.h | 221 struct irqaction *action); 247 register_percpu_irq(ia64_vector vec, struct irqaction *action) in register_percpu_irq() argument 249 pv_irq_ops.register_percpu_irq(vec, action); in register_percpu_irq()
|
/linux-4.1.27/include/net/ |
D | pkt_cls.h | 67 int action; member 71 static inline void tcf_exts_init(struct tcf_exts *exts, int action, int police) in tcf_exts_init() argument 77 exts->action = action; in tcf_exts_init()
|
D | fib_rules.h | 19 u8 action; member 50 int (*action)(struct fib_rule *, member
|
/linux-4.1.27/Documentation/ptp/ |
D | testptp.c | 74 struct sigaction action; in install_handler() local 83 action.sa_handler = handler; in install_handler() 84 action.sa_flags = 0; in install_handler() 85 sigemptyset(&action.sa_mask); in install_handler() 86 sigaction(signum, &action, NULL); in install_handler()
|
/linux-4.1.27/drivers/staging/rtl8723au/include/ |
D | rtl8723a_bt_intf.h | 36 void rtl8723a_BT_wifiassociate_notify(struct rtw_adapter *padapter, u8 action); 64 #define rtl8723a_BT_wifiassociate_notify(padapter, action) do {} while(0) argument
|
/linux-4.1.27/drivers/irqchip/ |
D | irq-armada-370-xp.c | 380 unsigned long action, void *hcpu) in armada_xp_mpic_secondary_init() argument 382 if (action == CPU_STARTING || action == CPU_STARTING_FROZEN) { in armada_xp_mpic_secondary_init() 396 unsigned long action, void *hcpu) in mpic_cascaded_secondary_init() argument 398 if (action == CPU_STARTING || action == CPU_STARTING_FROZEN) { in mpic_cascaded_secondary_init()
|
/linux-4.1.27/drivers/oprofile/ |
D | timer_int.c | 78 unsigned long action, void *hcpu) in oprofile_cpu_notify() argument 82 switch (action) { in oprofile_cpu_notify()
|
D | nmi_timer_int.c | 62 static int nmi_timer_cpu_notifier(struct notifier_block *b, unsigned long action, in nmi_timer_cpu_notifier() argument 66 switch (action) { in nmi_timer_cpu_notifier()
|
/linux-4.1.27/drivers/scsi/ibmvscsi/ |
D | ibmvfc.c | 426 enum ibmvfc_target_action action) in ibmvfc_set_tgt_action() argument 428 switch (tgt->action) { in ibmvfc_set_tgt_action() 430 if (action == IBMVFC_TGT_ACTION_DELETED_RPORT) in ibmvfc_set_tgt_action() 431 tgt->action = action; in ibmvfc_set_tgt_action() 435 if (action == IBMVFC_TGT_ACTION_DEL_RPORT) in ibmvfc_set_tgt_action() 437 tgt->action = action; in ibmvfc_set_tgt_action() 474 enum ibmvfc_host_action action) in ibmvfc_set_host_action() argument 476 switch (action) { in ibmvfc_set_host_action() 478 if (vhost->action == IBMVFC_HOST_ACTION_INIT_WAIT) in ibmvfc_set_host_action() 479 vhost->action = action; in ibmvfc_set_host_action() [all …]
|
/linux-4.1.27/drivers/leds/trigger/ |
D | ledtrig-cpu.c | 97 unsigned long action, void *hcpu) in ledtrig_cpu_notify() argument 99 switch (action & ~CPU_TASKS_FROZEN) { in ledtrig_cpu_notify()
|
/linux-4.1.27/drivers/net/wireless/ |
D | mwl8k.c | 1963 mgmt->u.action.category == WLAN_CATEGORY_BACK && in mwl8k_txq_xmit() 1964 mgmt->u.action.u.addba_req.action_code == WLAN_ACTION_ADDBA_REQ && in mwl8k_txq_xmit() 1966 u16 capab = le16_to_cpu(mgmt->u.action.u.addba_req.capab); in mwl8k_txq_xmit() 2656 __le16 action; member 2691 cmd->action = cpu_to_le16(MWL8K_ENABLE_RX_DIRECTED | in __mwl8k_cmd_mac_multicast_adr() 2695 cmd->action |= cpu_to_le16(MWL8K_ENABLE_RX_ALL_MULTICAST); in __mwl8k_cmd_mac_multicast_adr() 2700 cmd->action |= cpu_to_le16(MWL8K_ENABLE_RX_MULTICAST); in __mwl8k_cmd_mac_multicast_adr() 2757 __le16 action; member 2778 cmd->action = cpu_to_le16(MWL8K_CMD_SET); in mwl8k_cmd_radio_control() 2818 __le16 action; member [all …]
|
/linux-4.1.27/drivers/staging/rtl8188eu/include/ |
D | rtw_led.h | 100 #define rtw_led_control(adapt, action) \ argument 103 (adapt)->ledpriv.LedControlHandler((adapt), (action)); \
|
/linux-4.1.27/net/sunrpc/ |
D | sched.c | 312 int __rpc_wait_for_completion_task(struct rpc_task *task, wait_bit_action_f *action) in __rpc_wait_for_completion_task() argument 314 if (action == NULL) in __rpc_wait_for_completion_task() 315 action = rpc_wait_bit_killable; in __rpc_wait_for_completion_task() 317 action, TASK_KILLABLE); in __rpc_wait_for_completion_task() 354 rpc_action action, in __rpc_sleep_on_priority() argument 365 task->tk_callback = action; in __rpc_sleep_on_priority() 370 rpc_action action) in rpc_sleep_on() argument 384 __rpc_sleep_on_priority(q, task, action, task->tk_priority); in rpc_sleep_on() 390 rpc_action action, int priority) in rpc_sleep_on_priority() argument 404 __rpc_sleep_on_priority(q, task, action, priority - RPC_PRIORITY_LOW); in rpc_sleep_on_priority()
|
/linux-4.1.27/arch/powerpc/platforms/pseries/ |
D | cmm.c | 448 unsigned long action, void *unused) in cmm_reboot_notifier() argument 450 if (action == SYS_RESTART) { in cmm_reboot_notifier() 503 unsigned long action, void *arg) in cmm_memory_isolate_cb() argument 507 if (action == MEM_ISOLATE_COUNT) in cmm_memory_isolate_cb() 610 unsigned long action, void *arg) in cmm_memory_cb() argument 614 switch (action) { in cmm_memory_cb()
|
/linux-4.1.27/kernel/power/ |
D | qos.c | 274 enum pm_qos_req_action action, int value) in pm_qos_update_target() argument 287 switch (action) { in pm_qos_update_target() 312 trace_pm_qos_update_target(action, prev_value, curr_value); in pm_qos_update_target() 355 enum pm_qos_req_action action, s32 val) in pm_qos_update_flags() argument 364 switch (action) { in pm_qos_update_flags() 385 trace_pm_qos_update_flags(action, prev_value, curr_value); in pm_qos_update_flags()
|
/linux-4.1.27/drivers/net/wireless/ti/wlcore/ |
D | hw_ops.h | 221 wlcore_hw_interrupt_notify(struct wl1271 *wl, bool action) in wlcore_hw_interrupt_notify() argument 224 return wl->ops->interrupt_notify(wl, action); in wlcore_hw_interrupt_notify() 229 wlcore_hw_rx_ba_filter(struct wl1271 *wl, bool action) in wlcore_hw_rx_ba_filter() argument 232 return wl->ops->rx_ba_filter(wl, action); in wlcore_hw_rx_ba_filter()
|
/linux-4.1.27/Documentation/scsi/ |
D | scsi_eh.txt | 98 command. Timer is restarted. This action is counted as a 100 limit is reached, action for BLK_EH_NOT_HANDLED is taken instead. 217 highest-severity action means EH failure and results in offlining of 223 eh_work_q. If a recovery action succeeds for a scmd, recovered 226 Note that single recovery action on a scmd can recover multiple 290 cleared by this action. 296 This action is taken for each error-completed 301 sync between occurrence of CHECK CONDITION and this action. 311 command. If fails, no action. Note that taking no action 325 No action. [all …]
|
/linux-4.1.27/drivers/uwb/ |
D | drp.c | 258 int action; in handle_conflict_normal() local 260 action = evaluate_conflict_action(drp_ie, ext_beacon_slot, rsv, uwb_rsv_status(rsv)); in handle_conflict_normal() 263 switch(action) { in handle_conflict_normal() 281 switch(action) { in handle_conflict_normal() 300 int action; in handle_conflict_expanding() local 304 action = evaluate_conflict_action(drp_ie, ext_beacon_slot, rsv, 0); in handle_conflict_expanding() 306 switch(action) { in handle_conflict_expanding() 318 switch(action) { in handle_conflict_expanding()
|
/linux-4.1.27/drivers/infiniband/hw/usnic/ |
D | usnic_fwd.h | 55 struct filter_action action; member 76 struct usnic_filter_action *action);
|
/linux-4.1.27/drivers/s390/cio/ |
D | blacklist.c | 48 static int blacklist_range(range_action action, unsigned int from_ssid, in blacklist_range() argument 63 if (action == add) in blacklist_range() 149 static int blacklist_parse_parameters(char *str, range_action action, in blacklist_parse_parameters() argument 161 ra = action; in blacklist_parse_parameters()
|
/linux-4.1.27/arch/x86/vdso/ |
D | vma.c | 271 vgetcpu_cpu_notifier(struct notifier_block *n, unsigned long action, void *arg) in vgetcpu_cpu_notifier() argument 275 if (action == CPU_ONLINE || action == CPU_ONLINE_FROZEN) in vgetcpu_cpu_notifier()
|
/linux-4.1.27/net/decnet/ |
D | dn_rules.c | 74 switch(rule->action) { in dn_fib_rule_action() 132 if (rule->action == FR_ACT_TO_TBL) { in dn_fib_rule_configure() 227 .action = dn_fib_rule_action,
|
/linux-4.1.27/arch/mn10300/kernel/ |
D | cevt-mn10300.c | 74 struct irqaction *action) in setup_jiffies_interrupt() argument 77 setup_irq(irq, action); in setup_jiffies_interrupt()
|
/linux-4.1.27/arch/mips/sni/ |
D | time.c | 82 struct irqaction *action = &a20r_irqaction; in sni_a20r_timer_setup() local 87 action->dev_id = cd; in sni_a20r_timer_setup()
|
/linux-4.1.27/tools/perf/tests/ |
D | attr.py | 299 action="store", type="string", dest="test") 301 action="store", type="string", dest="test_dir") 303 action="store", type="string", dest="perf") 305 action="count", dest="verbose")
|
/linux-4.1.27/drivers/isdn/isdnloop/ |
D | isdnloop.c | 150 int action; member 188 int action = -1; in isdnloop_parse_status() local 194 action = s->action; in isdnloop_parse_status() 199 if (action == -1) in isdnloop_parse_status() 203 switch (action) { in isdnloop_parse_status() 783 int action = -1; in isdnloop_parse_cmd() local 799 action = s->action; in isdnloop_parse_cmd() 808 if (action == -1) in isdnloop_parse_cmd() 810 switch (action) { in isdnloop_parse_cmd() 869 (action == 4) ? "SCA" : "CAL", in isdnloop_parse_cmd()
|
/linux-4.1.27/sound/isa/wavefront/ |
D | wavefront_synth.c | 143 char *action; member 361 cmd, wfcmd->action, wfcmd->read_cnt, in snd_wavefront_cmd() 367 cmd, wfcmd->action); in snd_wavefront_cmd() 380 i, cmd, wfcmd->action); in snd_wavefront_cmd() 399 i, cmd, wfcmd->action); in snd_wavefront_cmd() 412 wfcmd->action); in snd_wavefront_cmd() 443 wfcmd->action); in snd_wavefront_cmd() 472 cmd, wfcmd->action); in snd_wavefront_cmd() 484 cmd, wfcmd->action); in snd_wavefront_cmd() 490 cmd, wfcmd->action, ack, err, in snd_wavefront_cmd() [all …]
|
/linux-4.1.27/arch/sh/kernel/cpu/sh4a/ |
D | smp-shx3.c | 128 shx3_cpu_callback(struct notifier_block *nfb, unsigned long action, void *hcpu) in shx3_cpu_callback() argument 132 switch (action) { in shx3_cpu_callback()
|
/linux-4.1.27/arch/s390/kernel/ |
D | suspend.c | 160 static int suspend_pm_cb(struct notifier_block *nb, unsigned long action, in suspend_pm_cb() argument 163 switch (action) { in suspend_pm_cb()
|
D | ipl.c | 62 struct shutdown_action *action; member 1645 trigger->action = shutdown_actions_list[i]; in set_trigger() 1661 return sprintf(page, "%s\n", on_reboot_trigger.action->name); in on_reboot_show() 1675 on_reboot_trigger.action->fn(&on_reboot_trigger); in do_machine_restart() 1687 return sprintf(page, "%s\n", on_panic_trigger.action->name); in on_panic_show() 1701 on_panic_trigger.action->fn(&on_panic_trigger); in do_panic() 1713 return sprintf(page, "%s\n", on_restart_trigger.action->name); in on_restart_show() 1731 on_restart_trigger.action->fn(&on_restart_trigger); in __do_restart() 1750 return sprintf(page, "%s\n", on_halt_trigger.action->name); in on_halt_show() 1764 on_halt_trigger.action->fn(&on_halt_trigger); in do_machine_halt() [all …]
|
/linux-4.1.27/Documentation/ABI/testing/ |
D | sysfs-driver-ppi | 44 This attribute shows the platform-specific action that should 46 a requested operation. The format is "<action num>: <action
|
/linux-4.1.27/net/802/ |
D | garp.c | 31 u8 action; member 35 .action = GARP_ACTION_S_JOIN_IN }, 46 .action = GARP_ACTION_S_JOIN_IN }, 67 .action = GARP_ACTION_S_LEAVE_EMPTY }, 78 .action = GARP_ACTION_S_JOIN_IN }, 89 .action = GARP_ACTION_S_JOIN_IN }, 322 switch (garp_applicant_state_table[attr->state][event].action) { in garp_attr_event()
|
/linux-4.1.27/arch/arm/vfp/ |
D | vfpmodule.c | 642 static int vfp_hotplug(struct notifier_block *b, unsigned long action, in vfp_hotplug() argument 645 if (action == CPU_DYING || action == CPU_DYING_FROZEN) in vfp_hotplug() 647 else if (action == CPU_STARTING || action == CPU_STARTING_FROZEN) in vfp_hotplug()
|
/linux-4.1.27/include/linux/ |
D | irqdesc.h | 56 struct irqaction *action; /* IRQ action list */ member 155 return desc->action != NULL; in irq_has_action()
|
D | ieee80211.h | 971 u8 action; member 975 u8 action; member 1000 } __packed action; member 1008 #define IEEE80211_MIN_ACTION_SIZE offsetof(struct ieee80211_mgmt, u.action.u) 2431 return mgmt->u.action.category == WLAN_CATEGORY_PUBLIC; in ieee80211_is_public_action() 2517 sizeof(mgmt->u.action.u.tpc_report)) in ieee80211_action_contains_tpc() 2531 if (mgmt->u.action.category != WLAN_CATEGORY_SPECTRUM_MGMT && in ieee80211_action_contains_tpc() 2532 mgmt->u.action.category != WLAN_CATEGORY_RADIO_MEASUREMENT) in ieee80211_action_contains_tpc() 2536 if (mgmt->u.action.u.tpc_report.action_code != in ieee80211_action_contains_tpc() 2540 if (mgmt->u.action.u.tpc_report.tpc_elem_id != WLAN_EID_TPC_REPORT || in ieee80211_action_contains_tpc() [all …]
|
D | wait.h | 1050 wait_on_bit_action(void *word, int bit, wait_bit_action_f *action, unsigned mode) in wait_on_bit_action() argument 1055 return out_of_line_wait_on_bit(word, bit, action, mode); in wait_on_bit_action() 1128 wait_on_bit_lock_action(void *word, int bit, wait_bit_action_f *action, unsigned mode) in wait_on_bit_lock_action() argument 1133 return out_of_line_wait_on_bit_lock(word, bit, action, mode); in wait_on_bit_lock_action() 1147 int wait_on_atomic_t(atomic_t *val, int (*action)(atomic_t *), unsigned mode) in wait_on_atomic_t() 1152 return out_of_line_wait_on_atomic_t(val, action, mode); in wait_on_atomic_t()
|
/linux-4.1.27/Documentation/networking/ |
D | tc-actions-env-rules.txt | 7 For example if your action queues a packet to be processed later, 18 this way any action downstream can stomp on the packet.
|
/linux-4.1.27/Documentation/fault-injection/ |
D | provoke-crashes.txt | 21 cpoint_type : Indicates the action to be taken on hitting the crash point. 27 to trigger an action. The default is 10.
|
/linux-4.1.27/drivers/cpuidle/ |
D | cpuidle-pseries.c | 169 unsigned long action, void *hcpu) in pseries_cpuidle_add_cpu_notifier() argument 176 switch (action) { in pseries_cpuidle_add_cpu_notifier()
|