This is a kernel issue and should be fixed in kernel unless we want
to do something in <sys/sysctl.h>.
H.J.
---
--- include/linux/sysctl.h.user 2003-05-29 07:36:51.000000000 -0700
#include <linux/types.h>
#include <linux/list.h>
+#ifdefine __KERNEL__
+#undef __user
+#define __user
+#endif
+
struct file;
#define CTL_MAXNAME 10 /* how many path components do we allow in a
> > What is the problem? Does linux/sysctl.h include
> > linux/compiler.h?
> No it doesnt include it directly. It includes
> linux/kernel.h and linux/kernel.h does a trick like
> #ifdef __KERNEL__
> .......
> #include <linux/compiler.h>
> So we never get __user defined.
> > Does your compiler define __CHECKER__?
> No.
> Would it be too bad to a trick like
> #include <linux/version.h>
> #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,70)
> #define __user
> #endif
> What do you think?
> Regards,
> /ismail
> =====
> Microsoft Windows: made for the internet
> The Internet: made for UNIX
> __________________________________
> Do you Yahoo!?
> Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
> http://calendar.yahoo.com
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/