|
@@ -25,7 +25,8 @@ ENDPROC(__x86_indirect_thunk_\reg)
|
|
|
* than one per register with the correct names. So we do it
|
|
|
* the simple and nasty way...
|
|
|
*/
|
|
|
-#define EXPORT_THUNK(reg) EXPORT_SYMBOL(__x86_indirect_thunk_ ## reg)
|
|
|
+#define __EXPORT_THUNK(sym) _ASM_NOKPROBE(sym); EXPORT_SYMBOL(sym)
|
|
|
+#define EXPORT_THUNK(reg) __EXPORT_THUNK(__x86_indirect_thunk_ ## reg)
|
|
|
#define GENERATE_THUNK(reg) THUNK reg ; EXPORT_THUNK(reg)
|
|
|
|
|
|
GENERATE_THUNK(_ASM_AX)
|