Fixes userspace compilation error: error: unknown type name ‘size_t’ Signed-off-by: Mikko Rapeli <mikko.rapeli@xxxxxx> Cc: Arnd Bergmann <arnd@xxxxxxxx> Cc: David S. Miller <davem@xxxxxxxxxxxxx> --- include/uapi/linux/sysctl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/uapi/linux/sysctl.h b/include/uapi/linux/sysctl.h index e13d48058b8d..35a4b8b417fe 100644 --- a/include/uapi/linux/sysctl.h +++ b/include/uapi/linux/sysctl.h @@ -35,9 +35,9 @@ struct __sysctl_args { int __user *name; int nlen; void __user *oldval; - size_t __user *oldlenp; + __kernel_size_t __user *oldlenp; void __user *newval; - size_t newlen; + __kernel_size_t newlen; unsigned long __unused[4]; }; -- 2.13.3 -- To unsubscribe from this list: send the line "unsubscribe linux-api" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html