Re: [PATCH] ARM: check stmfd instruction using right shift

2019-07-30 Thread Chunyan Zhang
On Tue, 30 Jul 2019 at 19:02, Russell King - ARM Linux admin wrote: > > On Tue, Jul 30, 2019 at 03:18:31PM +0800, Chunyan Zhang wrote: > > Gentle ping > > > > probably this patch was missed or entered into spam? > > Please submit it to the patch system, thanks. Ok, thanks. > > > > > On Mon, 22 J

Re: [PATCH] ARM: check stmfd instruction using right shift

2019-07-30 Thread Russell King - ARM Linux admin
On Tue, Jul 30, 2019 at 03:18:31PM +0800, Chunyan Zhang wrote: > Gentle ping > > probably this patch was missed or entered into spam? Please submit it to the patch system, thanks. > > On Mon, 22 Jul 2019 at 15:14, Chunyan Zhang wrote: > > > > From: Lvqiang Huang > > > > In the commit ef41b5c9

Re: [PATCH] ARM: check stmfd instruction using right shift

2019-07-30 Thread Chunyan Zhang
Gentle ping probably this patch was missed or entered into spam? On Mon, 22 Jul 2019 at 15:14, Chunyan Zhang wrote: > > From: Lvqiang Huang > > In the commit ef41b5c92498 ("ARM: make kernel oops easier to read"), > - .word 0xe92d >> 10@ stmfd sp!, {} > +

[PATCH] ARM: check stmfd instruction using right shift

2019-07-22 Thread Chunyan Zhang
From: Lvqiang Huang In the commit ef41b5c92498 ("ARM: make kernel oops easier to read"), - .word 0xe92d >> 10@ stmfd sp!, {} + .word 0xe92d >> 11@ stmfd sp!, {} then the shift need to change to 11. Fixes: ef41b5c92498 ("ARM: make kernel oop

[PATCH] ARM: check stmfd instruction using right shift

2019-07-22 Thread Chunyan Zhang
From: Lvqiang Huang In the commit ef41b5c92498 ("ARM: make kernel oops easier to read"), - .word 0xe92d >> 10@ stmfd sp!, {} + .word 0xe92d >> 11@ stmfd sp!, {} then the shift need to change to 11. Signed-off-by: Lvqiang Huang Signed-off-b