On Tue, 2008-07-15 at 18:36 +0530, Jaswinder Singh wrote: > Updated Patch: > > declaring arch-dependent syscalls for x86 under one hood Thanks Jaswinder, this looks quite sensible in general and should go some way towards making sparse shut up about undeclared functions. You should Cc Ingo though. I don't like this bit though: > --- a/include/linux/syscalls.h > +++ b/include/linux/syscalls.h > @@ -65,6 +65,10 @@ struct getcpu_cache; > #include <linux/quota.h> > #include <linux/key.h> > > +#ifdef CONFIG_X86 > +#include <asm/syscalls.h> > +#endif > + > asmlinkage long sys_time(time_t __user *tloc); > asmlinkage long sys_stime(time_t __user *tptr); > asmlinkage long sys_gettimeofday(struct timeval __user *tv, We're going to want to do this for all architectures, aren't we? Perhaps it's better to provide <asm/syscalls.h> for all architectures from the beginning, and not bother with the ifdef? Or if you must have an ifdef, perhaps make it on something like ARCH_HAS_ASM_SYSCALLS_H rather than having to change it every time an architecture adds its own <asm/syscalls.h> file? -- dwmw2 -- To unsubscribe from this list: send an email with "unsubscribe kernelnewbies" to ecartis@xxxxxxxxxxxx Please read the FAQ at http://kernelnewbies.org/FAQ