Home
last modified time | relevance | path

Searched refs:action (Results 1 – 200 of 920) sorted by relevance

12345

/linux-4.4.14/kernel/irq/
Dhandle.c48 static void warn_no_thread(unsigned int irq, struct irqaction *action) in warn_no_thread() argument
50 if (test_and_set_bit(IRQTF_WARNED, &action->thread_flags)) in warn_no_thread()
54 "but no thread function available.", irq, action->name); in warn_no_thread()
57 void __irq_wake_thread(struct irq_desc *desc, struct irqaction *action) in __irq_wake_thread() argument
64 if (action->thread->flags & PF_EXITING) in __irq_wake_thread()
71 if (test_and_set_bit(IRQTF_RUNTHREAD, &action->thread_flags)) in __irq_wake_thread()
119 desc->threads_oneshot |= action->thread_mask; in __irq_wake_thread()
132 wake_up_process(action->thread); in __irq_wake_thread()
139 struct irqaction *action = desc->action; in handle_irq_event_percpu() local
142 while (action) { in handle_irq_event_percpu()
[all …]
Dmanage.c147 struct irqaction *action = desc->action; in irq_set_thread_affinity() local
149 while (action) { in irq_set_thread_affinity()
150 if (action->thread) in irq_set_thread_affinity()
151 set_bit(IRQTF_AFFINITY, &action->thread_flags); in irq_set_thread_affinity()
152 action = action->next; in irq_set_thread_affinity()
634 if (!desc->action || in can_request_irq()
635 irqflags & desc->action->flags & IRQF_SHARED) in can_request_irq()
739 static int irq_wait_for_interrupt(struct irqaction *action) in irq_wait_for_interrupt() argument
746 &action->thread_flags)) { in irq_wait_for_interrupt()
763 struct irqaction *action) in irq_finalize_oneshot() argument
[all …]
Dspurious.c53 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()
194 struct irqaction *action; in __report_bad_irq() local
214 action = desc->action; in __report_bad_irq()
215 while (action) { in __report_bad_irq()
[all …]
Dproc.c289 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 …]
Dpm.c34 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 || irq_desc_is_chained(desc) || in suspend_device_irq()
164 bool is_early = desc->action && in resume_irqs()
[all …]
Dinternals.h92 void __irq_wake_thread(struct irq_desc *desc, struct irqaction *action);
97 extern void register_handler_proc(unsigned int irq, struct irqaction *action);
98 extern void unregister_handler_proc(unsigned int irq, struct irqaction *action);
103 struct irqaction *action) { } in register_handler_proc() argument
105 struct irqaction *action) { } in unregister_handler_proc() argument
204 return (desc->action && desc->action == &chained_action); in irq_desc_is_chained()
209 void irq_pm_install_action(struct irq_desc *desc, struct irqaction *action);
210 void irq_pm_remove_action(struct irq_desc *desc, struct irqaction *action);
214 irq_pm_install_action(struct irq_desc *desc, struct irqaction *action) { } in irq_pm_install_action() argument
216 irq_pm_remove_action(struct irq_desc *desc, struct irqaction *action) { } in irq_pm_remove_action() argument
Dchip.c333 struct irqaction *action; in handle_nested_irq() local
343 action = desc->action; in handle_nested_irq()
344 if (unlikely(!action || irqd_irq_disabled(&desc->irq_data))) { in handle_nested_irq()
352 action_ret = action->thread_fn(action->irq, action->dev_id); in handle_nested_irq()
417 if (unlikely(!desc->action || irqd_irq_disabled(&desc->irq_data))) { in handle_simple_irq()
471 if (unlikely(!desc->action || irqd_irq_disabled(&desc->irq_data))) { in handle_level_irq()
541 if (unlikely(!desc->action || irqd_irq_disabled(&desc->irq_data))) { in handle_fasteoi_irq()
595 if (irqd_irq_disabled(&desc->irq_data) || !desc->action) { in handle_edge_irq()
607 if (unlikely(!desc->action)) { in handle_edge_irq()
658 if (irqd_irq_disabled(&desc->irq_data) || !desc->action) { in handle_edge_eoi_irq()
[all …]
Ddebug.h20 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()
Dautoprobe.c48 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.4.14/security/integrity/ima/
Dima_policy.c51 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 …]
Dima_main.c165 int rc = -ENOMEM, action, must_appraise; in process_measurement() local
177 action = ima_get_action(inode, mask, function); in process_measurement()
180 if (!action && !violation_check) in process_measurement()
183 must_appraise = action & IMA_APPRAISE; in process_measurement()
186 if (action & IMA_FILE_APPRAISE) in process_measurement()
191 if (action) { in process_measurement()
198 ima_rdwr_violation_check(file, iint, action & IMA_MEASURE, in process_measurement()
200 if (!action) { in process_measurement()
210 iint->flags |= action; in process_measurement()
211 action &= IMA_DO_MASK; in process_measurement()
[all …]
/linux-4.4.14/lib/
Dnotifier-error-inject.c32 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()
Dkobject_uevent.c67 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 …]
Dnotifier-error-inject.h11 #define NOTIFIER_ERR_INJECT_ACTION(action) \ argument
12 .name = #action, .val = (action),
Dpercpu_counter.c169 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.4.14/drivers/net/wireless/libertas/
Dhost.h397 __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 …]
Dcmdresp.c127 u16 action = le16_to_cpu(psmode->action); in lbs_process_command_response() local
131 result, action); in lbs_process_command_response()
142 action == PS_MODE_ACTION_ENTER_PS) in lbs_process_command_response()
144 } else if (action == PS_MODE_ACTION_ENTER_PS) { in lbs_process_command_response()
164 } else if (action == PS_MODE_ACTION_EXIT_PS) { in lbs_process_command_response()
169 lbs_deb_host("CMD_RESP: PS action 0x%X\n", action); in lbs_process_command_response()
Dcmd.c206 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 …]
Dmesh.c35 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.4.14/arch/mips/sibyte/sb1250/
Dsmp.c69 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.4.14/arch/mips/sibyte/bcm1480/
Dsmp.c79 static void bcm1480_send_ipi_single(int cpu, unsigned int action) in bcm1480_send_ipi_single() argument
81 __raw_writeq((((u64)action)<< 48), mailbox_0_set_regs[cpu]); in bcm1480_send_ipi_single()
85 unsigned int action) in bcm1480_send_ipi_mask() argument
90 bcm1480_send_ipi_single(i, action); in bcm1480_send_ipi_mask()
173 unsigned int action; in bcm1480_mailbox_interrupt() local
177 action = (__raw_readq(mailbox_0_regs[cpu]) >> 48) & 0xffff; in bcm1480_mailbox_interrupt()
180 __raw_writeq(((u64)action)<<48, mailbox_0_clear_regs[cpu]); in bcm1480_mailbox_interrupt()
182 if (action & SMP_RESCHEDULE_YOURSELF) in bcm1480_mailbox_interrupt()
185 if (action & SMP_CALL_FUNCTION) { in bcm1480_mailbox_interrupt()
/linux-4.4.14/drivers/isdn/pcbit/
Dedss1.c269 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.4.14/arch/mips/kernel/
Dsmp-bmips.c59 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 …]
Dsmp-gic.c21 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()
60 void gic_send_ipi_mask(const struct cpumask *mask, unsigned int action) in gic_send_ipi_mask() argument
65 gic_send_ipi_single(i, action); in gic_send_ipi_mask()
Dcevt-sb1250.c113 struct irqaction *action = &per_cpu(sibyte_hpt_irqaction, cpu); in sb1250_clockevent_init() local
147 action->handler = sibyte_counter_handler; in sb1250_clockevent_init()
148 action->flags = IRQF_PERCPU | IRQF_TIMER; in sb1250_clockevent_init()
149 action->name = name; in sb1250_clockevent_init()
150 action->dev_id = cd; in sb1250_clockevent_init()
153 setup_irq(irq, action); in sb1250_clockevent_init()
Dcevt-bcm1480.c114 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()
Dsmp-mt.c116 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()
Dsmp-up.c16 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.4.14/drivers/of/
Ddynamic.c90 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 …]
Dof_private.h45 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.4.14/scripts/
Dasn1_compiler.c295 struct action { struct
296 struct action *next; argument
301 static struct action *action_list; argument
308 struct action *action; member
689 struct action *action; member
861 struct action *action, **ppaction; in parse_type() local
1092 action = malloc(sizeof(struct action)); in parse_type()
1093 if (!action) { in parse_type()
1097 action->index = 0; in parse_type()
1098 action->name = cursor->content; in parse_type()
[all …]
Dcheckkconfigsymbols.py52 parser.add_option('-c', '--commit', dest='commit', action='store',
57 parser.add_option('-d', '--diff', dest='diff', action='store',
63 parser.add_option('-f', '--find', dest='find', action='store_true',
68 parser.add_option('-i', '--ignore', dest='ignore', action='store',
74 parser.add_option('', '--force', dest='force', action='store_true',
/linux-4.4.14/arch/arm/probes/
Ddecode.c346 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 …]
Ddecode.h304 int action; member
358 {.action = (_decoder)}
368 {.action = (_handler)}
381 {.action = (_handler)}
/linux-4.4.14/arch/mips/dec/
Dkn02xa-berr.c62 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()
Decc-berr.c67 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()
Dkn01-berr.c89 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.4.14/net/mac80211/
Dspectmgmt.c208 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 …]
Dmesh_plink.c16 #define PLINK_CNF_AID(mgmt) ((mgmt)->u.action.u.self_prot.variable + 2)
207 enum ieee80211_self_protected_actioncode action, in mesh_plink_frame_tx() argument
217 int hdr_len = offsetof(struct ieee80211_mgmt, u.action.u.self_prot) + in mesh_plink_frame_tx()
218 sizeof(mgmt->u.action.u.self_prot); in mesh_plink_frame_tx()
246 mgmt->u.action.category = WLAN_CATEGORY_SELF_PROTECTED; in mesh_plink_frame_tx()
247 mgmt->u.action.u.self_prot.action_code = action; in mesh_plink_frame_tx()
249 if (action != WLAN_SP_MESH_PEERING_CLOSE) { in mesh_plink_frame_tx()
255 if (action == WLAN_SP_MESH_PEERING_CONFIRM) { in mesh_plink_frame_tx()
273 switch (action) { in mesh_plink_frame_tx()
306 if (action == WLAN_SP_MESH_PEERING_CLOSE) { in mesh_plink_frame_tx()
[all …]
Dht.c388 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 …]
Dagg-rx.c216 skb_put(skb, 1 + sizeof(mgmt->u.action.u.addba_resp)); in ieee80211_send_addba_resp()
217 mgmt->u.action.category = WLAN_CATEGORY_BACK; in ieee80211_send_addba_resp()
218 mgmt->u.action.u.addba_resp.action_code = WLAN_ACTION_ADDBA_RESP; in ieee80211_send_addba_resp()
219 mgmt->u.action.u.addba_resp.dialog_token = dialog_token; in ieee80211_send_addba_resp()
226 mgmt->u.action.u.addba_resp.capab = cpu_to_le16(capab); in ieee80211_send_addba_resp()
227 mgmt->u.action.u.addba_resp.timeout = cpu_to_le16(timeout); in ieee80211_send_addba_resp()
228 mgmt->u.action.u.addba_resp.status = cpu_to_le16(status); in ieee80211_send_addba_resp()
373 dialog_token = mgmt->u.action.u.addba_req.dialog_token; in ieee80211_process_addba_request()
374 timeout = le16_to_cpu(mgmt->u.action.u.addba_req.timeout); in ieee80211_process_addba_request()
376 le16_to_cpu(mgmt->u.action.u.addba_req.start_seq_num) >> 4; in ieee80211_process_addba_request()
[all …]
Dagg-tx.c94 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()
105 mgmt->u.action.u.addba_req.capab = cpu_to_le16(capab); in ieee80211_send_addba_request()
107 mgmt->u.action.u.addba_req.timeout = cpu_to_le16(timeout); in ieee80211_send_addba_request()
108 mgmt->u.action.u.addba_req.start_seq_num = in ieee80211_send_addba_request()
298 enum ieee80211_ampdu_mlme_action action; in ___ieee80211_stop_tx_ba_session() local
307 action = IEEE80211_AMPDU_TX_STOP_CONT; in ___ieee80211_stop_tx_ba_session()
310 action = IEEE80211_AMPDU_TX_STOP_FLUSH; in ___ieee80211_stop_tx_ba_session()
[all …]
Dmesh_hwmp.c101 static int mesh_path_sel_frame_tx(enum mpath_frame_type action, u8 flags, in mesh_path_sel_frame_tx() argument
113 int hdr_len = offsetof(struct ieee80211_mgmt, u.action.u.mesh_action) + in mesh_path_sel_frame_tx()
114 sizeof(mgmt->u.action.u.mesh_action); in mesh_path_sel_frame_tx()
131 mgmt->u.action.category = WLAN_CATEGORY_MESH_ACTION; in mesh_path_sel_frame_tx()
132 mgmt->u.action.u.mesh_action.action_code = in mesh_path_sel_frame_tx()
135 switch (action) { in mesh_path_sel_frame_tx()
162 if (action == MPATH_PREP) { in mesh_path_sel_frame_tx()
168 if (action == MPATH_PREQ) { in mesh_path_sel_frame_tx()
181 if (action == MPATH_PREQ) { in mesh_path_sel_frame_tx()
188 } else if (action == MPATH_PREP) { in mesh_path_sel_frame_tx()
[all …]
Drx.c782 category = mgmt->u.action.category; in ieee80211_rx_mesh_check()
2552 if (len < 24 + 1 + sizeof(resp->u.action.u.sa_query)) { in ieee80211_process_sa_query_req()
2569 skb_put(skb, 1 + sizeof(resp->u.action.u.sa_query)); in ieee80211_process_sa_query_req()
2570 resp->u.action.category = WLAN_CATEGORY_SA_QUERY; in ieee80211_process_sa_query_req()
2571 resp->u.action.u.sa_query.action = WLAN_ACTION_SA_QUERY_RESPONSE; in ieee80211_process_sa_query_req()
2572 memcpy(resp->u.action.u.sa_query.trans_id, in ieee80211_process_sa_query_req()
2573 mgmt->u.action.u.sa_query.trans_id, in ieee80211_process_sa_query_req()
2632 if (!rx->sta && mgmt->u.action.category != WLAN_CATEGORY_PUBLIC && in ieee80211_rx_h_action()
2633 mgmt->u.action.category != WLAN_CATEGORY_SELF_PROTECTED && in ieee80211_rx_h_action()
2634 mgmt->u.action.category != WLAN_CATEGORY_SPECTRUM_MGMT) in ieee80211_rx_h_action()
[all …]
/linux-4.4.14/arch/mips/cavium-octeon/
Dsmp.c36 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 …]
Dcpu.c21 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.4.14/include/trace/events/
Dpower.h175 TP_PROTO(const char *action, int val, bool start),
177 TP_ARGS(action, val, start),
180 __field(const char *, action)
186 __entry->action = action;
191 TP_printk("%s[%u] %s", __entry->action, (unsigned int)__entry->val,
384 TP_PROTO(enum pm_qos_req_action action, int prev_value, int curr_value),
386 TP_ARGS(action, prev_value, curr_value),
389 __field( enum pm_qos_req_action, action )
395 __entry->action = action;
401 __print_symbolic(__entry->action,
[all …]
Dirq.h54 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),
Dbtrfs.h442 #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 …]
Dsunrpc.h75 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.4.14/arch/um/os-Linux/
Dsignal.c186 struct sigaction action; in set_handler() local
190 action.sa_sigaction = hard_handler; in set_handler()
193 sigemptyset(&action.sa_mask); in set_handler()
194 sigaddset(&action.sa_mask, SIGIO); in set_handler()
195 sigaddset(&action.sa_mask, SIGWINCH); in set_handler()
196 sigaddset(&action.sa_mask, SIGALRM); in set_handler()
201 if (sigismember(&action.sa_mask, sig)) in set_handler()
204 action.sa_flags = flags; in set_handler()
205 action.sa_restorer = NULL; in set_handler()
206 if (sigaction(sig, &action, NULL) < 0) in set_handler()
Dmain.c62 struct sigaction action; in install_fatal_handler() local
65 sigemptyset(&action.sa_mask); in install_fatal_handler()
73 action.sa_flags = SA_RESETHAND | SA_NODEFER; in install_fatal_handler()
74 action.sa_restorer = NULL; in install_fatal_handler()
75 action.sa_handler = last_ditch_exit; in install_fatal_handler()
76 if (sigaction(sig, &action, NULL) < 0) { in install_fatal_handler()
/linux-4.4.14/drivers/net/wireless/iwlwifi/dvm/
Drs.c1285 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.4.14/drivers/net/wireless/iwlwifi/mvm/
Dbinding.c78 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()
Dtime-event.c258 !(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 …]
Dmac-ctxt.c656 u32 action) in iwl_mvm_mac_ctxt_cmd_common() argument
668 cmd->action = cpu_to_le32(action); in iwl_mvm_mac_ctxt_cmd_common()
761 le32_to_cpu(cmd->action), ret); in iwl_mvm_mac_ctxt_send_cmd()
767 u32 action, bool force_assoc_off, in iwl_mvm_mac_ctxt_cmd_sta() argument
776 iwl_mvm_mac_ctxt_cmd_common(mvm, vif, &cmd, bssid_override, action); in iwl_mvm_mac_ctxt_cmd_sta()
854 u32 action) in iwl_mvm_mac_ctxt_cmd_listener() argument
860 iwl_mvm_mac_ctxt_cmd_common(mvm, vif, &cmd, NULL, action); in iwl_mvm_mac_ctxt_cmd_listener()
874 u32 action) in iwl_mvm_mac_ctxt_cmd_ibss() argument
881 iwl_mvm_mac_ctxt_cmd_common(mvm, vif, &cmd, NULL, action); in iwl_mvm_mac_ctxt_cmd_ibss()
913 u32 action) in iwl_mvm_mac_ctxt_cmd_p2p_device() argument
[all …]
Dphy-ctxt.c129 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.4.14/fs/btrfs/
Ddelayed-ref.c238 if (ref->action == next->action) { in merge_ref()
425 if (exist->action == ref->action) { in add_delayed_ref_tail_merge()
430 exist->action = ref->action; in add_delayed_ref_tail_merge()
539 int action, int is_data) in add_delayed_ref_head() argument
555 if (action == BTRFS_UPDATE_DELAYED_HEAD) in add_delayed_ref_head()
557 else if (action == BTRFS_DROP_DELAYED_REF) in add_delayed_ref_head()
571 if (action == BTRFS_ADD_DELAYED_EXTENT) in add_delayed_ref_head()
584 ref->action = 0; in add_delayed_ref_head()
618 trace_add_delayed_ref_head(ref, head_ref, action); in add_delayed_ref_head()
652 int action) in add_delayed_tree_ref() argument
[all …]
Ddelayed-ref.h69 unsigned int action:8; member
245 u64 ref_root, int level, int action,
251 u64 owner, u64 offset, u64 reserved, int action,
/linux-4.4.14/tools/power/acpi/tools/acpidump/
Dapmain.c310 struct ap_dump_action *action; in main() local
331 action = &action_table[i]; in main()
332 switch (action->to_be_done) { in main()
340 status = ap_dump_table_by_address(action->argument); in main()
345 status = ap_dump_table_by_name(action->argument); in main()
350 status = ap_dump_table_from_file(action->argument); in main()
356 action->to_be_done); in main()
/linux-4.4.14/net/sched/
Dact_vlan.c28 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()
137 v->tcfv_action = action; in tcf_vlan_init()
141 v->tcf_action = parm->action; in tcf_vlan_init()
159 .action = v->tcf_action, in tcf_vlan_dump()
Dact_gact.c108 gact->tcf_action = parm->action; in tcf_gact_init()
129 int action = READ_ONCE(gact->tcf_action); in tcf_gact() local
136 action = gact_rand[ptype](gact); in tcf_gact()
140 if (action == TC_ACT_SHOT) in tcf_gact()
145 return action; in tcf_gact()
156 .action = gact->tcf_action, in tcf_gact_dump()
Dact_bpf.c41 int action, filter_res; in tcf_bpf() local
76 action = filter_res; in tcf_bpf()
79 action = filter_res; in tcf_bpf()
83 action = prog->tcf_action; in tcf_bpf()
86 action = TC_ACT_UNSPEC; in tcf_bpf()
90 return action; in tcf_bpf()
138 .action = prog->tcf_action, in tcf_bpf_dump()
343 prog->tcf_action = parm->action; in tcf_bpf_init()
Dact_nat.c78 p->tcf_action = parm->action; in tcf_nat_init()
97 int action; in tcf_nat() local
108 action = p->tcf_action; in tcf_nat()
114 if (unlikely(action == TC_ACT_SHOT)) in tcf_nat()
243 return action; in tcf_nat()
264 .action = p->tcf_action, in tcf_nat_dump()
Dact_connmark.c121 ci->tcf_action = parm->action; in tcf_connmark_init()
135 ci->tcf_action = parm->action; in tcf_connmark_init()
152 .action = ci->tcf_action, in tcf_connmark_dump()
Dact_simple.c68 d->tcf_action = p->action; in reset_policy()
117 d->tcf_action = parm->action; in tcf_simp_init()
145 .action = d->tcf_action, in tcf_simp_dump()
Dact_csum.c80 p->tcf_action = parm->action; in tcf_csum_init()
500 int action; in tcf_csum() local
506 action = p->tcf_action; in tcf_csum()
510 if (unlikely(action == TC_ACT_SHOT)) in tcf_csum()
524 return action; in tcf_csum()
541 .action = p->tcf_action, in tcf_csum_dump()
Dcls_api.c535 } 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.4.14/tools/testing/selftests/powerpc/primitives/
Dload_unaligned_zeropad.c103 struct sigaction action; in setup_segv_handler() local
105 memset(&action, 0, sizeof(action)); in setup_segv_handler()
106 action.sa_sigaction = segv_handler; in setup_segv_handler()
107 action.sa_flags = SA_SIGINFO; in setup_segv_handler()
108 sigaction(SIGSEGV, &action, NULL); in setup_segv_handler()
/linux-4.4.14/drivers/md/
Ddm-uevent.c34 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.4.14/drivers/gpu/drm/vmwgfx/
Dvmwgfx_fence.c73 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 …]
Dvmwgfx_fence.h50 void (*seq_passed) (struct vmw_fence_action *action);
51 void (*cleanup) (struct vmw_fence_action *action);
/linux-4.4.14/arch/parisc/kernel/
Dirq.c216 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()
/linux-4.4.14/arch/mips/loongson64/loongson-3/
Dsmp.c46 #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 …]
Dcop2-ex.c22 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.4.14/drivers/block/paride/
Dpd.c353 enum action {Fail = 0, Ok = 1, Hold, Wait}; enum
356 static enum action (*phase)(void);
377 static enum action do_pd_io_start(void);
378 static enum action pd_special(void);
379 static enum action do_pd_read_start(void);
380 static enum action do_pd_write_start(void);
381 static enum action do_pd_read_drq(void);
382 static enum action do_pd_write_done(void);
393 enum action res; in run_fsm()
445 static enum action do_pd_io_start(void) in do_pd_io_start()
[all …]
/linux-4.4.14/drivers/clocksource/
Dtimer-atlas7.c178 struct irqaction *action; in sirfsoc_local_timer_setup() local
181 action = &sirfsoc_timer_irq; in sirfsoc_local_timer_setup()
183 action = &sirfsoc_timer1_irq; in sirfsoc_local_timer_setup()
185 ce->irq = action->irq; in sirfsoc_local_timer_setup()
198 action->dev_id = ce; in sirfsoc_local_timer_setup()
199 BUG_ON(setup_irq(ce->irq, action)); in sirfsoc_local_timer_setup()
200 irq_force_affinity(action->irq, cpumask_of(cpu)); in sirfsoc_local_timer_setup()
219 unsigned long action, void *hcpu) in sirfsoc_cpu_notify() argument
225 switch (action & ~CPU_TASKS_FROZEN) { in sirfsoc_cpu_notify()
Dmips-gic-timer.c82 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()
97 static int gic_clk_notifier(struct notifier_block *nb, unsigned long action, in gic_clk_notifier() argument
102 if (action == POST_RATE_CHANGE) in gic_clk_notifier()
Ddummy_timer.c35 unsigned long action, void *hcpu) in dummy_timer_cpu_notify() argument
37 if ((action & ~CPU_TASKS_FROZEN) == CPU_STARTING) in dummy_timer_cpu_notify()
Dmetag_generic.c138 unsigned long action, void *hcpu) in arch_timer_cpu_notify() argument
142 switch (action) { in arch_timer_cpu_notify()
/linux-4.4.14/drivers/acpi/acpica/
Dutdelete.c57 acpi_ut_update_ref_count(union acpi_operand_object *object, u32 action);
386 acpi_ut_update_ref_count(union acpi_operand_object *object, u32 action) in acpi_ut_update_ref_count() argument
407 switch (action) { in acpi_ut_update_ref_count()
459 action)); in acpi_ut_update_ref_count()
496 acpi_ut_update_object_reference(union acpi_operand_object *object, u16 action) in acpi_ut_update_object_reference() argument
537 action); in acpi_ut_update_object_reference()
568 action); in acpi_ut_update_object_reference()
578 (next_object, action, &state_list); in acpi_ut_update_object_reference()
605 action, in acpi_ut_update_object_reference()
619 action, in acpi_ut_update_object_reference()
[all …]
Dutosi.c328 acpi_status acpi_ut_update_interfaces(u8 action) in acpi_ut_update_interfaces() argument
335 (action & ACPI_FEATURE_STRINGS)) || in acpi_ut_update_interfaces()
337 (action & ACPI_VENDOR_STRINGS))) { in acpi_ut_update_interfaces()
338 if (action & ACPI_DISABLE_INTERFACES) { in acpi_ut_update_interfaces()
Dpsxface.c57 acpi_ps_update_parameter_list(struct acpi_evaluate_info *info, u16 action);
268 acpi_ps_update_parameter_list(struct acpi_evaluate_info *info, u16 action) in acpi_ps_update_parameter_list() argument
282 action); in acpi_ps_update_parameter_list()
Dutstate.c193 *object, u16 action) in acpi_ut_create_update_state() argument
210 state->update.value = action; in acpi_ut_create_update_state()
Dhwgpe.c98 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()
Devxfgpe.c214 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.4.14/sound/pci/hda/
Dpatch_realtek.c480 const struct hda_fixup *fix, int action) in alc_fixup_sku_ignore() argument
483 if (action == HDA_FIXUP_ACT_PRE_PROBE) { in alc_fixup_sku_ignore()
490 const struct hda_fixup *fix, int action) in alc_fixup_no_depop_delay() argument
494 if (action == HDA_FIXUP_ACT_PROBE) { in alc_fixup_no_depop_delay()
707 const struct hda_fixup *fix, int action) in alc_fixup_inv_dmic() argument
1083 const struct hda_fixup *fix, int action) in alc880_fixup_vol_knob() argument
1085 if (action == HDA_FIXUP_ACT_PROBE) in alc880_fixup_vol_knob()
1537 const struct hda_fixup *fix, int action) in alc260_fixup_gpio1_toggle() argument
1540 if (action == HDA_FIXUP_ACT_PROBE) { in alc260_fixup_gpio1_toggle()
1555 const struct hda_fixup *fix, int action) in alc260_fixup_kn1() argument
[all …]
Ddell_wmi_helper.c36 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
Dpatch_sigmatel.c254 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 …]
Dthinkpad_helper.c55 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
Dpatch_analog.c234 const struct hda_fixup *fix, int action) in ad_fixup_inv_jack_detect() argument
238 if (action == HDA_FIXUP_ACT_PRE_PROBE) { in ad_fixup_inv_jack_detect()
248 const struct hda_fixup *fix, int action) in ad1986a_fixup_eapd() argument
252 if (action == HDA_FIXUP_ACT_PRE_PROBE) { in ad1986a_fixup_eapd()
261 const struct hda_fixup *fix, int action) in ad1986a_fixup_eapd_mix_in() argument
265 if (action == HDA_FIXUP_ACT_PRE_PROBE) { in ad1986a_fixup_eapd_mix_in()
266 ad1986a_fixup_eapd(codec, fix, action); in ad1986a_fixup_eapd_mix_in()
571 const struct hda_fixup *fix, int action) in ad1981_fixup_hp_eapd() argument
575 if (action == HDA_FIXUP_ACT_PRE_PROBE) { in ad1981_fixup_hp_eapd()
585 const struct hda_fixup *fix, int action) in ad1981_fixup_amp_override() argument
[all …]
Dpatch_cirrus.c507 const struct hda_fixup *fix, int action) in cs420x_fixup_gpio_13() argument
509 if (action == HDA_FIXUP_ACT_PRE_PROBE) { in cs420x_fixup_gpio_13()
519 const struct hda_fixup *fix, int action) in cs420x_fixup_gpio_23() argument
521 if (action == HDA_FIXUP_ACT_PRE_PROBE) { in cs420x_fixup_gpio_23()
663 const struct hda_fixup *fix, int action) in cs4208_fixup_gpio0() argument
665 if (action == HDA_FIXUP_ACT_PRE_PROBE) { in cs4208_fixup_gpio0()
678 const struct hda_fixup *fix, int action) in cs4208_fixup_mac() argument
680 if (action != HDA_FIXUP_ACT_PRE_PROBE) in cs4208_fixup_mac()
687 snd_hda_apply_fixup(codec, action); in cs4208_fixup_mac()
692 const struct hda_fixup *fix, int action) in cs4208_fixup_macmini() argument
[all …]
Dpatch_conexant.c270 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 …]
/linux-4.4.14/arch/mips/include/asm/
Dsmp-ops.h25 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.4.14/drivers/net/wireless/mwifiex/
Dsta_cmd.c53 cmd->params.rssi_info.action = cpu_to_le16(cmd_action); in mwifiex_cmd_802_11_rssi_info()
79 u16 cmd_action, u16 *action) in mwifiex_cmd_mac_control() argument
92 mac_ctrl->action = cpu_to_le16(*action); in mwifiex_cmd_mac_control()
181 rate_cfg->action = cpu_to_le16(cmd_action); in mwifiex_cmd_tx_rate_cfg()
276 cmd_txp_cfg->action = cpu_to_le16(cmd_action); in mwifiex_cmd_tx_power_cfg()
279 cmd_txp_cfg->action = cpu_to_le16(cmd_action); in mwifiex_cmd_tx_power_cfg()
298 txp->action = cpu_to_le16(cmd_action); in mwifiex_cmd_rf_tx_power()
329 ant_siso->action = cpu_to_le16(HostCmd_ACT_SET_BOTH); in mwifiex_cmd_rf_antenna()
379 hs_cfg->action = cpu_to_le16(HS_ACTIVATE); in mwifiex_cmd_802_11_hs_cfg()
382 hs_cfg->action = cpu_to_le16(HS_CONFIGURE); in mwifiex_cmd_802_11_hs_cfg()
[all …]
Dfw.h883 __le16 action; member
888 __le16 action; member
930 __le16 action; member
975 __le16 action; member
983 __le16 action; member
998 __le16 action; member
1003 __le16 action; member
1008 __le16 action; member
1192 __le16 action; member
1243 __le16 action; member
[all …]
Dsta_cmdresp.c64 resp->result, le16_to_cpu(pm->action)); in mwifiex_process_cmdresp_error()
66 if (le16_to_cpu(pm->action) == EN_AUTO_PS && in mwifiex_process_cmdresp_error()
150 subsc_evt->action = HostCmd_ACT_BITWISE_SET; in mwifiex_ret_802_11_rssi_info()
404 u16 action = le16_to_cpu(txp_cfg->action); in mwifiex_ret_tx_power_cfg() local
420 switch (action) { in mwifiex_ret_tx_power_cfg()
438 action); in mwifiex_ret_tx_power_cfg()
456 u16 action = le16_to_cpu(txp->action); in mwifiex_ret_rf_tx_power() local
460 if (action == HostCmd_ACT_GEN_GET) { in mwifiex_ret_rf_tx_power()
494 le16_to_cpu(ant_siso->action), in mwifiex_ret_rf_antenna()
596 if (le16_to_cpu(key->action) == HostCmd_ACT_GEN_SET) { in mwifiex_ret_802_11_key_material_v1()
[all …]
Dcmdevt.c290 le16_to_cpu(sleep_cfm_buf->action), in mwifiex_dnld_sleep_confirm_cmd()
684 if ((le16_to_cpu(pm->action) == DIS_PS) || in mwifiex_insert_cmd_to_pending_q()
685 (le16_to_cpu(pm->action) == DIS_AUTO_PS)) { in mwifiex_insert_cmd_to_pending_q()
1196 if (phs_cfg->action == cpu_to_le16(HS_ACTIVATE) && in mwifiex_ret_802_11_hs_cfg()
1330 psmode_enh->action = cpu_to_le16(DIS_AUTO_PS); in mwifiex_cmd_enh_power_mode()
1332 cmd->size = cpu_to_le16(S_DS_GEN + sizeof(psmode_enh->action) + in mwifiex_cmd_enh_power_mode()
1335 psmode_enh->action = cpu_to_le16(GET_PS); in mwifiex_cmd_enh_power_mode()
1337 cmd->size = cpu_to_le16(S_DS_GEN + sizeof(psmode_enh->action) + in mwifiex_cmd_enh_power_mode()
1340 psmode_enh->action = cpu_to_le16(EN_AUTO_PS); in mwifiex_cmd_enh_power_mode()
1342 cmd_size = S_DS_GEN + sizeof(psmode_enh->action) + in mwifiex_cmd_enh_power_mode()
[all …]
D11n.c221 u16 action = (u16) cmd_action; in mwifiex_cmd_recfg_tx_buf() local
226 tx_buf->action = cpu_to_le16(action); in mwifiex_cmd_recfg_tx_buf()
227 switch (action) { in mwifiex_cmd_recfg_tx_buf()
255 u16 action = (u16) cmd_action; in mwifiex_cmd_amsdu_aggr_ctrl() local
260 amsdu_ctrl->action = cpu_to_le16(action); in mwifiex_cmd_amsdu_aggr_ctrl()
261 switch (action) { in mwifiex_cmd_amsdu_aggr_ctrl()
290 htcfg->action = cpu_to_le16(cmd_action); in mwifiex_cmd_11n_cfg()
Dsta_ioctl.c395 int mwifiex_set_hs_params(struct mwifiex_private *priv, u16 action, in mwifiex_set_hs_params() argument
406 switch (action) { in mwifiex_set_hs_params()
667 txp_cfg->action = cpu_to_le16(HostCmd_ACT_GEN_SET); in mwifiex_set_tx_power()
1131 mwifiex_remain_on_chan_cfg(struct mwifiex_private *priv, u16 action, in mwifiex_remain_on_chan_cfg() argument
1139 roc_cfg.action = cpu_to_le16(action); in mwifiex_remain_on_chan_cfg()
1140 if (action == HostCmd_ACT_GEN_SET) { in mwifiex_remain_on_chan_cfg()
1150 action, 0, &roc_cfg, true)) { in mwifiex_remain_on_chan_cfg()
1188 u16 action) in mwifiex_reg_mem_ioctl_reg_rw() argument
1212 return mwifiex_send_cmd(priv, cmd_no, action, 0, reg_rw, true); in mwifiex_reg_mem_ioctl_reg_rw()
1367 u16 action) in mwifiex_misc_ioctl_gen_ie() argument
[all …]
/linux-4.4.14/arch/mips/netlogic/xlr/
Dfmn.c58 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.4.14/drivers/acpi/
Dprocessor_driver.c114 unsigned long action, void *hcpu) in acpi_cpu_soft_notify() argument
119 action &= ~CPU_TASKS_FROZEN; in acpi_cpu_soft_notify()
125 if (action == CPU_STARTING || action == CPU_DYING) in acpi_cpu_soft_notify()
131 if (action == CPU_ONLINE) { in acpi_cpu_soft_notify()
148 acpi_processor_reevaluate_tstate(pr, action); in acpi_cpu_soft_notify()
151 } else if (action == CPU_DEAD) { in acpi_cpu_soft_notify()
153 acpi_processor_reevaluate_tstate(pr, action); in acpi_cpu_soft_notify()
/linux-4.4.14/kernel/sched/
Dwait.c388 wait_bit_action_f *action, unsigned mode) in __wait_on_bit() argument
395 ret = (*action)(&q->key, mode); 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, mode); 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 …]
Dcompletion.c62 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.4.14/drivers/watchdog/
Dmachzwd.c119 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()
Ddiag288_wdt.c76 unsigned long action, unsigned int len) in __diag288() argument
80 register unsigned long __action asm("4") = action; in __diag288()
103 unsigned long action) in __diag288_lpar() argument
106 return __diag288(func, timeout, action, 0); in __diag288_lpar()
Dkempld_wdt.c114 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.4.14/arch/sh/mm/
Dalignment.c70 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.4.14/sound/firewire/oxfw/
Doxfw-control.c18 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.4.14/drivers/acpi/apei/
Dapei-internal.h54 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.4.14/drivers/ata/
Dlibata-eh.c439 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 …]
Dsata_sil24.c272 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 …]
Dlibata-pmp.c367 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.4.14/net/bridge/netfilter/
Debt_mark.c25 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.4.14/drivers/gpu/drm/amd/amdgpu/
Datombios_encoders.c321 amdgpu_atombios_encoder_setup_dac(struct drm_encoder *encoder, int action) in amdgpu_atombios_encoder_setup_dac() argument
342 args.ucAction = action; in amdgpu_atombios_encoder_setup_dac()
384 amdgpu_atombios_encoder_setup_dvo(struct drm_encoder *encoder, int action) in amdgpu_atombios_encoder_setup_dvo() argument
403 args.ext_tmds.sXTmdsEncoder.ucEnable = action; in amdgpu_atombios_encoder_setup_dvo()
412 args.dvo.sDVOEncoder.ucAction = action; in amdgpu_atombios_encoder_setup_dvo()
422 args.dvo_v3.ucAction = action; in amdgpu_atombios_encoder_setup_dvo()
428 args.dvo_v4.ucAction = action; in amdgpu_atombios_encoder_setup_dvo()
574 int action, int panel_mode) in amdgpu_atombios_encoder_setup_dig_encoder() argument
611 args.v1.ucAction = action; in amdgpu_atombios_encoder_setup_dig_encoder()
613 if (action == ATOM_ENCODER_CMD_SETUP_PANEL_MODE) in amdgpu_atombios_encoder_setup_dig_encoder()
[all …]
Datombios_encoders.h43 int action, int panel_mode);
45 amdgpu_atombios_encoder_setup_dig_transmitter(struct drm_encoder *encoder, int action,
49 int action);
/linux-4.4.14/arch/mips/paravirt/
Dparavirt-smp.c69 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.4.14/drivers/net/wireless/libertas_tf/
Dlibertas_tf.h379 __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.4.14/net/core/
Dfib_rules.c31 r->action = FR_ACT_TO_TBL; in fib_default_rule_add()
111 ops->action == NULL) in __fib_rules_register()
210 if (rule->action == FR_ACT_GOTO) { in fib_rules_lookup()
220 } else if (rule->action == FR_ACT_NOP) in fib_rules_lookup()
223 err = ops->action(rule, fl, flags, arg); in fib_rules_lookup()
339 rule->action = frh->action; in fib_nl_newrule()
354 if (rule->action != FR_ACT_GOTO) in fib_nl_newrule()
371 } else if (rule->action == FR_ACT_GOTO) in fib_nl_newrule()
397 if (r->action == FR_ACT_GOTO && in fib_nl_newrule()
407 if (rule->action == FR_ACT_GOTO) in fib_nl_newrule()
[all …]
/linux-4.4.14/drivers/net/wireless/iwlegacy/
D4965-rs.c1196 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.4.14/arch/mips/netlogic/common/
Dsmp.c60 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.4.14/drivers/net/wireless/brcm80211/brcmfmac/
Dp2p.c161 u8 action; member
198 u8 action; member
237 pact_frm->action == P2P_PUB_AF_ACTION && in brcmf_p2p_is_pub_action()
294 if (sd_act_frm->action == P2PSD_ACTION_ID_GAS_IREQ || in brcmf_p2p_is_gas_action()
295 sd_act_frm->action == P2PSD_ACTION_ID_GAS_IRESP || in brcmf_p2p_is_gas_action()
296 sd_act_frm->action == P2PSD_ACTION_ID_GAS_CREQ || in brcmf_p2p_is_gas_action()
297 sd_act_frm->action == P2PSD_ACTION_ID_GAS_CRESP) in brcmf_p2p_is_gas_action()
394 switch (sd_act_frm->action) { in brcmf_p2p_print_actframe()
632 u16 chanspecs[], s32 search_state, u16 action, in brcmf_p2p_escan() argument
745 p2p_params->eparams.action = cpu_to_le16(action); in brcmf_p2p_escan()
[all …]
Dfweh.c186 ifevent->action, ifevent->ifidx, ifevent->bssidx, in brcmf_fweh_handle_if_event()
209 if (ifevent->action == BRCMF_E_IF_ADD) { in brcmf_fweh_handle_if_event()
223 if (ifp && ifevent->action == BRCMF_E_IF_CHANGE) in brcmf_fweh_handle_if_event()
228 if (ifp && ifevent->action == BRCMF_E_IF_DEL) in brcmf_fweh_handle_if_event()
/linux-4.4.14/drivers/gpu/drm/radeon/
Datombios_encoders.c345 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.4.14/drivers/cpufreq/
Dhighbank-cpufreq.c37 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.4.14/arch/powerpc/kernel/
Dmce_power.c31 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()
Ddma-swiotlb.c78 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.4.14/drivers/i2c/busses/
Di2c-mv64xxx.c123 u32 action; member
234 drv_data->action = MV64XXX_I2C_ACTION_SEND_STOP; in mv64xxx_i2c_fsm()
243 drv_data->action = MV64XXX_I2C_ACTION_SEND_ADDR_1; in mv64xxx_i2c_fsm()
250 drv_data->action = MV64XXX_I2C_ACTION_SEND_ADDR_2; in mv64xxx_i2c_fsm()
262 drv_data->action = MV64XXX_I2C_ACTION_SEND_STOP; in mv64xxx_i2c_fsm()
265 drv_data->action = in mv64xxx_i2c_fsm()
271 drv_data->action = MV64XXX_I2C_ACTION_SEND_DATA; in mv64xxx_i2c_fsm()
281 drv_data->action = MV64XXX_I2C_ACTION_SEND_ADDR_2; in mv64xxx_i2c_fsm()
289 drv_data->action = MV64XXX_I2C_ACTION_SEND_STOP; in mv64xxx_i2c_fsm()
296 drv_data->action = MV64XXX_I2C_ACTION_CONTINUE; in mv64xxx_i2c_fsm()
[all …]
/linux-4.4.14/tools/perf/util/
Dlzma.c29 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.4.14/drivers/net/wireless/cw1200/
Dpm.c38 .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.4.14/arch/x86/kernel/
Dnmi.c151 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()
Dtopology.c60 int _debug_hotplug_cpu(int cpu, int action) in _debug_hotplug_cpu() argument
70 switch (action) { in _debug_hotplug_cpu()
Dapb_timer.c219 unsigned long action, void *hcpu) in apbt_cpuhp_notify() argument
224 switch (action & 0xf) { in apbt_cpuhp_notify()
235 pr_debug("APBT notified %lu, no action\n", action); in apbt_cpuhp_notify()
/linux-4.4.14/arch/arm/mach-shmobile/
Dregulator-quirk-rcar-gen2.c79 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()
Dplatsmp-scu.c21 unsigned long action, void *hcpu) in shmobile_smp_scu_notifier_call() argument
25 switch (action) { in shmobile_smp_scu_notifier_call()
/linux-4.4.14/drivers/net/wan/
Dhdlc_ppp.c307 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.4.14/drivers/gpu/drm/nouveau/nvkm/core/
Dsubdev.c86 const char *action = suspend ? "suspend" : "fini"; in nvkm_subdev_fini() local
90 nvkm_trace(subdev, "%s running...\n", action); in nvkm_subdev_fini()
96 nvkm_error(subdev, "%s failed, %d\n", action, ret); in nvkm_subdev_fini()
109 nvkm_trace(subdev, "%s completed in %lldus\n", action, time); in nvkm_subdev_fini()
Dobject.c113 const char *action = suspend ? "suspend" : "fini"; in nvkm_object_fini() local
118 nvif_debug(object, "%s children...\n", action); in nvkm_object_fini()
126 nvif_debug(object, "%s running...\n", action); in nvkm_object_fini()
130 nvif_error(object, "%s failed with %d\n", action, ret); in nvkm_object_fini()
137 nvif_debug(object, "%s completed in %lldus\n", action, time); in nvkm_object_fini()
/linux-4.4.14/arch/mips/jazz/
Dirq.c137 struct irqaction *action = &r4030_timer_irqaction; in plat_time_init() local
144 action->dev_id = cd; in plat_time_init()
145 setup_irq(JAZZ_TIMER_IRQ, action); in plat_time_init()
/linux-4.4.14/drivers/base/power/
Dclock_ops.c331 unsigned long action, void *data) in pm_clk_notify() argument
338 dev_dbg(dev, "%s() %ld\n", __func__, action); in pm_clk_notify()
342 switch (action) { in pm_clk_notify()
457 unsigned long action, void *data) in pm_clk_notify() argument
463 dev_dbg(dev, "%s() %ld\n", __func__, action); in pm_clk_notify()
467 switch (action) { in pm_clk_notify()
/linux-4.4.14/drivers/xen/
Dxen-acpi-cpuhotplug.c351 int *action = context; in processor_walk_namespace_cb() local
357 switch (*action) { in processor_walk_namespace_cb()
380 int action = INSTALL_NOTIFY_HANDLER; in acpi_processor_install_hotplug_notify() local
384 processor_walk_namespace_cb, NULL, &action, NULL); in acpi_processor_install_hotplug_notify()
390 int action = UNINSTALL_NOTIFY_HANDLER; in acpi_processor_uninstall_hotplug_notify() local
394 processor_walk_namespace_cb, NULL, &action, NULL); in acpi_processor_uninstall_hotplug_notify()
Dpci.c179 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.4.14/drivers/pci/hotplug/
Dsgi_hotplug.c271 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.4.14/drivers/irqchip/
Dirq-bcm2836.c202 unsigned long action, void *hcpu) in bcm2836_arm_irqchip_cpu_notify() argument
208 if (action == CPU_STARTING || action == CPU_STARTING_FROZEN) in bcm2836_arm_irqchip_cpu_notify()
210 else if (action == CPU_DYING) in bcm2836_arm_irqchip_cpu_notify()
Dirq-armada-370-xp.c373 unsigned long action, void *hcpu) in armada_xp_mpic_secondary_init() argument
375 if (action == CPU_STARTING || action == CPU_STARTING_FROZEN) { in armada_xp_mpic_secondary_init()
389 unsigned long action, void *hcpu) in mpic_cascaded_secondary_init() argument
391 if (action == CPU_STARTING || action == CPU_STARTING_FROZEN) { in mpic_cascaded_secondary_init()
/linux-4.4.14/arch/mips/sgi-ip27/
Dip27-smp.c143 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.4.14/arch/blackfin/kernel/
Dtrace.c849 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.4.14/arch/mips/pmcs-msp71xx/
Dmsp_smp.c64 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.4.14/block/
Dblk-softirq.c81 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()
Dblk-iopoll.c190 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()
Dblk-mq-cpu.c22 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.4.14/drivers/staging/lustre/include/linux/libcfs/
Dlibcfs_workitem.h90 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.4.14/drivers/gpu/host1x/
Dintr.h60 enum host1x_intr_action action; member
79 enum host1x_intr_action action, void *data,
Dintr.c77 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.4.14/scripts/kconfig/
Dqconf.cc875 QAction *action; in contextMenuEvent() local
878 action = new QAction(_("Show Name"), this); in contextMenuEvent()
879 action->setCheckable(true); in contextMenuEvent()
880 connect(action, SIGNAL(toggled(bool)), in contextMenuEvent()
883 action, SLOT(setOn(bool))); in contextMenuEvent()
884 action->setChecked(showName); in contextMenuEvent()
885 headerPopup->addAction(action); in contextMenuEvent()
886 action = new QAction(_("Show Range"), this); in contextMenuEvent()
887 action->setCheckable(true); in contextMenuEvent()
888 connect(action, SIGNAL(toggled(bool)), in contextMenuEvent()
[all …]
/linux-4.4.14/net/rds/
Dpage.c183 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.4.14/Documentation/
Ddcdbas.txt54 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.4.14/arch/mips/netlogic/xlp/
Dcop2-ex.c89 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.4.14/drivers/base/
Ddevres.c682 void (*action)(void *); member
690 return devres->action == target->action && in devm_action_match()
698 devres->action(devres->data); in devm_action_release()
710 int devm_add_action(struct device *dev, void (*action)(void *), void *data) in devm_add_action()
720 devres->action = action; in devm_add_action()
736 void devm_remove_action(struct device *dev, void (*action)(void *), void *data) in devm_remove_action()
740 .action = action, in devm_remove_action()
Dtopology.c116 unsigned long action, void *hcpu) in topology_cpu_callback() argument
121 switch (action) { in topology_cpu_callback()
/linux-4.4.14/kernel/
Dsoftirq.c273 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()
Dseccomp.c579 u32 filter_ret, action; in __seccomp_phase1_filter() local
590 action = filter_ret & SECCOMP_RET_ACTION; in __seccomp_phase1_filter()
592 switch (action) { in __seccomp_phase1_filter()
616 audit_seccomp(this_syscall, SIGSYS, action); in __seccomp_phase1_filter()
623 audit_seccomp(this_syscall, 0, action); in __seccomp_phase1_filter()
685 u32 action = phase1_result & SECCOMP_RET_ACTION; in seccomp_phase2() local
688 BUG_ON(action != SECCOMP_RET_TRACE); in seccomp_phase2()
690 audit_seccomp(syscall_get_nr(current, regs), 0, action); in seccomp_phase2()
Dauditfilter.c259 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()
609 data->action = krule->action; in audit_krule_to_data()
674 a->action != b->action || in audit_compare_rule()
798 new->action = old->action; in audit_dupe_rule()
1063 static void audit_log_rule_change(char *action, struct audit_krule *rule, int res) in audit_log_rule_change() argument
1078 audit_log_string(ab, action); in audit_log_rule_change()
1345 switch (rule->action) { in audit_filter_user_rules()
/linux-4.4.14/drivers/net/wireless/ti/wl18xx/
Dacx.c204 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.4.14/include/net/
Dpkt_cls.h67 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()
Dfib_rules.h19 u8 action; member
52 int (*action)(struct fib_rule *, member
/linux-4.4.14/Documentation/ptp/
Dtestptp.c75 struct sigaction action; in install_handler() local
84 action.sa_handler = handler; in install_handler()
85 action.sa_flags = 0; in install_handler()
86 sigemptyset(&action.sa_mask); in install_handler()
87 sigaction(signum, &action, NULL); in install_handler()
/linux-4.4.14/drivers/staging/rtl8723au/include/
Drtl8723a_bt_intf.h36 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.4.14/arch/arm/mach-mvebu/
Dcoherency.c115 unsigned long action, void *hcpu) in armada_xp_clear_shared_l2_notifier_func() argument
117 if (action == CPU_STARTING || action == CPU_STARTING_FROZEN) in armada_xp_clear_shared_l2_notifier_func()
/linux-4.4.14/drivers/oprofile/
Dtimer_int.c78 unsigned long action, void *hcpu) in oprofile_cpu_notify() argument
82 switch (action) { in oprofile_cpu_notify()
Dnmi_timer_int.c62 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.4.14/drivers/uwb/
Ddrp.c258 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.4.14/drivers/scsi/ibmvscsi/
Dibmvfc.c426 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.4.14/drivers/leds/trigger/
Dledtrig-cpu.c97 unsigned long action, void *hcpu) in ledtrig_cpu_notify() argument
99 switch (action & ~CPU_TASKS_FROZEN) { in ledtrig_cpu_notify()
/linux-4.4.14/drivers/net/wireless/
Dmwl8k.c1963 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.4.14/net/sunrpc/
Dsched.c312 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.4.14/drivers/staging/rtl8188eu/include/
Drtw_led.h100 #define rtw_led_control(adapt, action) \ argument
103 (adapt)->ledpriv.LedControlHandler((adapt), (action)); \
/linux-4.4.14/kernel/power/
Dqos.c274 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.4.14/arch/powerpc/platforms/pseries/
Dcmm.c448 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.4.14/drivers/net/wireless/ti/wlcore/
Dhw_ops.h221 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.4.14/Documentation/scsi/
Dscsi_eh.txt98 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.4.14/arch/x86/entry/vdso/
Dvma.c263 vgetcpu_cpu_notifier(struct notifier_block *n, unsigned long action, void *arg) in vgetcpu_cpu_notifier() argument
267 if (action == CPU_ONLINE || action == CPU_ONLINE_FROZEN) in vgetcpu_cpu_notifier()
/linux-4.4.14/arch/mn10300/kernel/
Dcevt-mn10300.c68 struct irqaction *action) in setup_jiffies_interrupt() argument
71 setup_irq(irq, action); in setup_jiffies_interrupt()
/linux-4.4.14/drivers/infiniband/hw/usnic/
Dusnic_fwd.h70 struct filter_action action; member
91 struct usnic_filter_action *action);
/linux-4.4.14/drivers/s390/cio/
Dblacklist.c48 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.4.14/net/decnet/
Ddn_rules.c74 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.4.14/arch/mips/sni/
Dtime.c71 struct irqaction *action = &a20r_irqaction; in sni_a20r_timer_setup() local
76 action->dev_id = cd; in sni_a20r_timer_setup()
/linux-4.4.14/tools/perf/tests/
Dattr.py299 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.4.14/drivers/isdn/isdnloop/
Disdnloop.c150 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.4.14/sound/isa/wavefront/
Dwavefront_synth.c143 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.4.14/arch/sh/kernel/cpu/sh4a/
Dsmp-shx3.c128 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.4.14/arch/s390/kernel/
Dsuspend.c160 static int suspend_pm_cb(struct notifier_block *nb, unsigned long action, in suspend_pm_cb() argument
163 switch (action) { in suspend_pm_cb()
Dipl.c63 struct shutdown_action *action; member
1670 trigger->action = shutdown_actions_list[i]; in set_trigger()
1686 return sprintf(page, "%s\n", on_reboot_trigger.action->name); in on_reboot_show()
1700 on_reboot_trigger.action->fn(&on_reboot_trigger); in do_machine_restart()
1712 return sprintf(page, "%s\n", on_panic_trigger.action->name); in on_panic_show()
1726 on_panic_trigger.action->fn(&on_panic_trigger); in do_panic()
1738 return sprintf(page, "%s\n", on_restart_trigger.action->name); in on_restart_show()
1756 on_restart_trigger.action->fn(&on_restart_trigger); in __do_restart()
1775 return sprintf(page, "%s\n", on_halt_trigger.action->name); in on_halt_show()
1789 on_halt_trigger.action->fn(&on_halt_trigger); in do_machine_halt()
[all …]
/linux-4.4.14/drivers/net/ethernet/mellanox/mlx5/core/
Den_flow_table.c61 u8 action; member
83 hn->action = MLX5E_ACTION_NONE; in mlx5e_add_eth_addr_to_hash()
92 hn->action = MLX5E_ACTION_ADD; in mlx5e_add_eth_addr_to_hash()
264 MLX5_SET(flow_context, flow_context, action, in __mlx5e_add_eth_addr_rule()
533 MLX5_SET(flow_context, flow_context, action, in mlx5e_add_vlan_rule()
642 switch (hn->action) { in mlx5e_execute_action()
645 hn->action = MLX5E_ACTION_NONE; in mlx5e_execute_action()
694 hn->action = MLX5E_ACTION_DEL; in mlx5e_handle_netdev_addr()
696 hn->action = MLX5E_ACTION_DEL; in mlx5e_handle_netdev_addr()
/linux-4.4.14/net/802/
Dgarp.c31 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.4.14/arch/arm/vfp/
Dvfpmodule.c655 static int vfp_hotplug(struct notifier_block *b, unsigned long action, in vfp_hotplug() argument
658 if (action == CPU_DYING || action == CPU_DYING_FROZEN) in vfp_hotplug()
660 else if (action == CPU_STARTING || action == CPU_STARTING_FROZEN) in vfp_hotplug()
/linux-4.4.14/Documentation/fault-injection/
Dprovoke-crashes.txt21 cpoint_type : Indicates the action to be taken on hitting the crash point.
27 to trigger an action. The default is 10.
/linux-4.4.14/Documentation/ABI/testing/
Dsysfs-driver-ppi49 This attribute shows the platform-specific action that should
51 a requested operation. The format is "<action num>: <action
/linux-4.4.14/include/linux/
Dieee80211.h971 u8 action; member
975 u8 action; member
1000 } __packed action; member
1008 #define IEEE80211_MIN_ACTION_SIZE offsetof(struct ieee80211_mgmt, u.action.u)
2436 return mgmt->u.action.category == WLAN_CATEGORY_PUBLIC; in ieee80211_is_public_action()
2522 sizeof(mgmt->u.action.u.tpc_report)) in ieee80211_action_contains_tpc()
2536 if (mgmt->u.action.category != WLAN_CATEGORY_SPECTRUM_MGMT && in ieee80211_action_contains_tpc()
2537 mgmt->u.action.category != WLAN_CATEGORY_RADIO_MEASUREMENT) in ieee80211_action_contains_tpc()
2541 if (mgmt->u.action.u.tpc_report.action_code != in ieee80211_action_contains_tpc()
2545 if (mgmt->u.action.u.tpc_report.tpc_elem_id != WLAN_EID_TPC_REPORT || in ieee80211_action_contains_tpc()
[all …]
/linux-4.4.14/mm/
Dmm_init.c161 unsigned long action, void *arg) in mm_compute_batch_notifier() argument
163 switch (action) { in mm_compute_batch_notifier()

12345