[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20071120092949.GD7992@osiris.boeblingen.de.ibm.com>
Date: Tue, 20 Nov 2007 10:29:49 +0100
From: Heiko Carstens <heiko.carstens@...ibm.com>
To: Ulrich Drepper <drepper@...hat.com>
Cc: linux-kernel@...r.kernel.org, akpm@...ux-foundation.org,
mingo@...e.hu, tglx@...utronix.de, torvalds@...ux-foundation.org
Subject: Re: [PATCHv4 2/6] x86&x86-64 support for sys_indirect
> +#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 majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists