Searched refs:fn (Results 1 - 25 of 217) sorted by relevance

123456789

/arch/arm/include/asm/
H A Dglue.h19 #define ____glue(name,fn) name##fn
21 #define ____glue(name,fn) name/**/fn
23 #define __glue(name,fn) ____glue(name,fn)
H A Dstacktrace.h13 int (*fn)(struct stackframe *, void *), void *data);
H A Dbug.h76 void hook_fault_code(int nr, int (*fn)(unsigned long, unsigned int,
80 void hook_ifault_code(int nr, int (*fn)(unsigned long, unsigned int,
/arch/um/include/shared/
H A Dinit.h91 #define __uml_initcall(fn) \
92 static initcall_t __uml_initcall_##fn __uml_init_call = fn
94 #define __uml_exitcall(fn) \
95 static exitcall_t __uml_exitcall_##fn __uml_exit_call = fn
99 #define __uml_postsetup(fn) \
100 static initcall_t __uml_postsetup_##fn __uml_postsetup_call = fn
109 #define __uml_setup(str, fn, hel
[all...]
/arch/mips/include/asm/
H A Dcop2.h25 #define cu2_notifier(fn, pri) \
27 static struct notifier_block fn##_nb = { \
28 .notifier_call = fn, \
32 register_cu2_notifier(&fn##_nb); \
H A Dtraps.h31 #define nmi_notifier(fn, pri) \
33 static struct notifier_block fn##_nb = { \
34 .notifier_call = fn, \
38 register_nmi_notifier(&fn##_nb); \
/arch/powerpc/include/asm/
H A Dmachdep.h319 #define __define_machine_initcall(mach,level,fn,id) \
320 static int __init __machine_initcall_##mach##_##fn(void) { \
321 if (machine_is(mach)) return fn(); \
324 __define_initcall(level,__machine_initcall_##mach##_##fn,id);
326 #define machine_core_initcall(mach,fn) __define_machine_initcall(mach,"1",fn,1)
327 #define machine_core_initcall_sync(mach,fn) __define_machine_initcall(mach,"1s",fn,1s)
328 #define machine_postcore_initcall(mach,fn) __define_machine_initcall(mach,"2",fn,
[all...]
/arch/s390/include/asm/
H A Dreset.h15 void (*fn)(void); member in struct:reset_call
H A Dappldata.h68 unsigned short fn, void *buffer,
77 parm_list.function = fn;
67 appldata_asm(struct appldata_product_id *id, unsigned short fn, void *buffer, unsigned short length) argument
/arch/unicore32/include/asm/
H A Dstacktrace.h29 int (*fn)(struct stackframe *, void *), void *data);
/arch/unicore32/kernel/
H A Dsys.c54 char *fn; local
56 fn = getname(filename);
57 error = PTR_ERR(fn);
58 if (IS_ERR(fn))
60 error = do_execve(fn, argv, envp, regs);
61 putname(fn);
/arch/x86/include/asm/
H A Dpci_64.h20 extern int (*pci_config_read)(int seg, int bus, int dev, int fn,
22 extern int (*pci_config_write)(int seg, int bus, int dev, int fn,
/arch/arm/plat-iop/
H A Dcp6.c45 .fn = cp6_trap,
/arch/avr32/include/asm/
H A Dtraps.h17 int (*fn)(struct pt_regs *regs, u32 insn); member in struct:undef_hook
H A Dsetup.h122 #define __tagtable(tag, fn) \
123 static struct tagtable __tagtable_##fn __tag = { tag, fn }
/arch/arm/kernel/
H A Dsuspend.c39 int cpu_suspend(unsigned long arg, int (*fn)(unsigned long))
53 ret = __cpu_suspend(arg, fn);
/arch/um/drivers/
H A Dchan_user.h46 #define __channel_help(fn, prefix) \
47 __uml_help(fn, prefix "[0-9]*=<channel description>\n" \
/arch/mips/pci/
H A Dops-bridge.c49 int fn = PCI_FUNC(devfn); local
54 addr = &bridge->b_type0_cfg_dev[slot].f[fn].c[PCI_VENDOR_ID];
65 addr = &bridge->b_type0_cfg_dev[slot].f[fn].c[where ^ (4 - size)];
91 addr = &bridge->b_type0_cfg_dev[slot].f[fn].l[where >> 2];
110 int fn = PCI_FUNC(devfn); local
116 addr = &bridge->b_type1_cfg.c[(fn << 8) | PCI_VENDOR_ID];
128 addr = &bridge->b_type1_cfg.c[(fn << 8) | (where ^ (4 - size))];
155 addr = &bridge->b_type1_cfg.c[(fn << 8) | where];
182 int fn = PCI_FUNC(devfn); local
187 addr = &bridge->b_type0_cfg_dev[slot].f[fn]
248 int fn = PCI_FUNC(devfn); local
[all...]
/arch/powerpc/platforms/cell/
H A Dcelleb_pci.c102 int devno, int fn)
109 return private->fake_config[devno][fn];
114 int devno, int fn)
121 return private->res[devno][fn];
167 unsigned int fn = devfn & 0x7; local
173 config = get_fake_config_start(hose, devno, fn);
195 unsigned int fn = devfn & 0x7; local
200 config = get_fake_config_start(hose, devno, fn);
213 res = get_resource_start(hose, devno, fn);
242 unsigned int devno, unsigned int fn,
101 get_fake_config_start(struct pci_controller *hose, int devno, int fn) argument
112 get_resource_start( struct pci_controller *hose, int devno, int fn) argument
241 celleb_setup_pci_base_addrs(struct pci_controller *hose, unsigned int devno, unsigned int fn, unsigned int num_base_addr) argument
290 unsigned int devno, fn; local
[all...]
/arch/score/kernel/
H A Dprocess.c122 kernel_thread_helper(void *unused0, int (*fn)(void *),
125 do_exit(fn(arg));
131 long kernel_thread(int (*fn)(void *), void *arg, unsigned long flags)
138 regs.regs[5] = (unsigned long) fn;
/arch/unicore32/mm/
H A Dmm.h39 extern void hook_fault_code(int nr, int (*fn)
/arch/x86/xen/
H A Dmulticalls.h54 void xen_mc_callback(void (*fn)(void *), void *data);
/arch/x86/kvm/
H A Dmmu_audit.c38 inspect_spte_fn fn, int level)
45 fn(vcpu, ent + i, level);
52 __mmu_spte_walk(vcpu, child, fn, level - 1);
57 static void mmu_spte_walk(struct kvm_vcpu *vcpu, inspect_spte_fn fn) argument
69 __mmu_spte_walk(vcpu, sp, fn, PT64_ROOT_LEVEL);
79 __mmu_spte_walk(vcpu, sp, fn, 2);
88 static void walk_all_active_sps(struct kvm *kvm, sp_handler fn) argument
93 fn(kvm, sp);
37 __mmu_spte_walk(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp, inspect_spte_fn fn, int level) argument
/arch/arm/plat-samsung/
H A Dpm-check.c50 static void s3c_pm_run_res(struct resource *ptr, run_fn_t fn, u32 *arg) argument
54 s3c_pm_run_res(ptr->child, fn, arg);
61 arg = (fn)(ptr, arg);
68 static void s3c_pm_run_sysram(run_fn_t fn, u32 *arg) argument
70 s3c_pm_run_res(&iomem_resource, fn, arg);
/arch/alpha/include/asm/
H A Dprocessor.h56 extern long kernel_thread(int (*fn)(void *), void *arg, unsigned long flags);

Completed in 684 milliseconds

123456789