Lines Matching refs:func
80 #define smp_cross_call(func,arg1,arg2,arg3,arg4,arg5) BTFIXUP_CALL(smp_cross_call)(func,arg1,arg2,a… in BTFIXUPDEF_CALL() argument
83 extern __inline__ void xc0(smpfunc_t func) { smp_cross_call(func, 0, 0, 0, 0, 0); } in BTFIXUPDEF_CALL()
84 extern __inline__ void xc1(smpfunc_t func, unsigned long arg1) in xc1() argument
85 { smp_cross_call(func, arg1, 0, 0, 0, 0); } in xc1()
86 extern __inline__ void xc2(smpfunc_t func, unsigned long arg1, unsigned long arg2) in xc2() argument
87 { smp_cross_call(func, arg1, arg2, 0, 0, 0); } in xc2()
88 extern __inline__ void xc3(smpfunc_t func, unsigned long arg1, unsigned long arg2, in xc3() argument
90 { smp_cross_call(func, arg1, arg2, arg3, 0, 0); } in xc3()
91 extern __inline__ void xc4(smpfunc_t func, unsigned long arg1, unsigned long arg2, in xc4() argument
93 { smp_cross_call(func, arg1, arg2, arg3, arg4, 0); } in xc4()
94 extern __inline__ void xc5(smpfunc_t func, unsigned long arg1, unsigned long arg2, in xc5() argument
96 { smp_cross_call(func, arg1, arg2, arg3, arg4, arg5); } in xc5()
98 extern __inline__ int smp_call_function(void (*func)(void *info), void *info, int nonatomic, int wa… in smp_call_function()
100 xc1((smpfunc_t)func, (unsigned long)info); in smp_call_function()