Re: [PATCH] sched: Add __ASSEMBLY__ guards around struct clone_args

2019-09-17 Thread Ingo Molnar
* Seth Forshee wrote: > The addition of struct clone_args to uapi/linux/sched.h is not > protected by __ASSEMBLY__ guards, causing a FTBFS for glibc on > RISC-V. Add the guards to fix this. > > Fixes: 7f192e3cd316 ("fork: add clone3") > Signed-off-by: Seth Forshee > --- >

Re: [PATCH] sched: Add __ASSEMBLY__ guards around struct clone_args

2019-09-17 Thread Christian Brauner
On Tue, Sep 17, 2019 at 09:18:53AM +0200, Seth Forshee wrote: > The addition of struct clone_args to uapi/linux/sched.h is not > protected by __ASSEMBLY__ guards, causing a FTBFS for glibc on > RISC-V. Add the guards to fix this. > > Fixes: 7f192e3cd316 ("fork: add clone3") > Signed-off-by: Seth

[PATCH] sched: Add __ASSEMBLY__ guards around struct clone_args

2019-09-17 Thread Seth Forshee
The addition of struct clone_args to uapi/linux/sched.h is not protected by __ASSEMBLY__ guards, causing a FTBFS for glibc on RISC-V. Add the guards to fix this. Fixes: 7f192e3cd316 ("fork: add clone3") Signed-off-by: Seth Forshee --- include/uapi/linux/sched.h | 2 ++ 1 file changed, 2