Re: [PATCH] uapi: fix linux/kexec.h userspace compilation errors

2017-03-06 Thread Dmitry V. Levin
On Thu, Feb 23, 2017 at 02:37:46PM +1300, Eric W. Biederman wrote: > "Dmitry V. Levin" writes: > > > Include (guarded by #ifndef __KERNEL__) to fix the following > > linux/kexec.h userspace compilation errors: > > > > /usr/include/linux/kexec.h:53:2: error: unknown type name 'size_t' > > size_

Re: [PATCH] uapi: fix linux/kexec.h userspace compilation errors

2017-02-22 Thread Eric W. Biederman
"Dmitry V. Levin" writes: > Include (guarded by #ifndef __KERNEL__) to fix the following > linux/kexec.h userspace compilation errors: > > /usr/include/linux/kexec.h:53:2: error: unknown type name 'size_t' > size_t bufsz; > /usr/include/linux/kexec.h:55:2: error: unknown type name 'size_t' >

[PATCH] uapi: fix linux/kexec.h userspace compilation errors

2017-02-22 Thread Dmitry V. Levin
Include (guarded by #ifndef __KERNEL__) to fix the following linux/kexec.h userspace compilation errors: /usr/include/linux/kexec.h:53:2: error: unknown type name 'size_t' size_t bufsz; /usr/include/linux/kexec.h:55:2: error: unknown type name 'size_t' size_t memsz; Signed-off-by: Dmitry V.