Re: [PATCH] Fix kprobes on ia64

2008-01-13 Thread Christoph Hellwig
On Sun, Jan 13, 2008 at 07:24:24PM -0700, Matthew Wilcox wrote: > If CONFIG_KPROBES is set, we get the error during build: > > kernel/kprobes.c:1057: error: __ksymtab_jprobe_return causes a section > type conflict > > This is because ia64 defines a static inline jprobe_return which kprobes > atte

Re: [PATCH] Fix kprobes on ia64

2008-01-13 Thread Sam Ravnborg
On Sun, Jan 13, 2008 at 07:24:24PM -0700, Matthew Wilcox wrote: > > If CONFIG_KPROBES is set, we get the error during build: > > kernel/kprobes.c:1057: error: __ksymtab_jprobe_return causes a section > type conflict > > This is because ia64 defines a static inline jprobe_return which kprobes > a

[PATCH] Fix kprobes on ia64

2008-01-13 Thread Matthew Wilcox
If CONFIG_KPROBES is set, we get the error during build: kernel/kprobes.c:1057: error: __ksymtab_jprobe_return causes a section type conflict This is because ia64 defines a static inline jprobe_return which kprobes attempts to EXPORT_SYMBOL. Signed-off-by: Matthew Wilcox <[EMAIL PROTECTED]> di