> +#define INDIRECT_SYSCALL(regs) (regs)->rax > +#define INDIRECT_SYSCALL32(regs) (regs)->eax > + > +#define CALL_INDIRECT(regs) \ > + ({ extern long (*sys_call_table[]) (__u64, __u64, __u64, __u64, __u64, > __u64); \ > + sys_call_table[INDIRECT_SYSCALL(regs)] ((regs)->rdi, (regs)->rsi, \ > + (regs)->rdx, (regs)->r10, \ > + (regs)->r8, (regs)->r9); \ > + }) > +
All these macros could be functions, or? Would give us some type checking and avoids the capital letters. - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/