Re: [linux-yocto] [PATCH] powerpc: correct the preempt-lazy assembly

2018-09-26 Thread Bruce Ashfield
I have a full update to the latest 4.18-rt pending, so I'll confirm that these are part of it, and do the update that way. Cheers, Bruce On 2018-09-26 2:42 AM, zhe...@windriver.com wrote: From: Sebastian Andrzej Siewior The powerpc port won't compile and abort with "Error: operand out of

[linux-yocto] [PATCH] powerpc: correct the preempt-lazy assembly

2018-09-26 Thread zhe.he
From: Sebastian Andrzej Siewior The powerpc port won't compile and abort with "Error: operand out of range" because the TIF_NEED_RESCHED_LAZY uses bit 20 which is larger than 15 which is the upper limit. Swap it with TIF_32BIT and fixup the assembly in one assembly file to get it to compile

Re: [linux-yocto] [PATCH] powerpc: correct the preempt-lazy assembly

2018-09-26 Thread He Zhe
Ignore this. Zhe On 2018年09月26日 14:33, zhe...@windriver.com wrote: > From: Sebastian Andrzej Siewior > > The powerpc port won't compile and abort with "Error: operand out of > range" because the TIF_NEED_RESCHED_LAZY uses bit 20 which is larger > than 15 which is the upper limit. > Swap it with

[linux-yocto] [PATCH] powerpc: correct the preempt-lazy assembly

2018-09-26 Thread zhe.he
From: Sebastian Andrzej Siewior The powerpc port won't compile and abort with "Error: operand out of range" because the TIF_NEED_RESCHED_LAZY uses bit 20 which is larger than 15 which is the upper limit. Swap it with TIF_32BIT and fixup the assembly in one assembly file to get it to compile