Re: [PATCH] irqchip/gic-v3-its: Avoid parsing _indirect_ twice for Device table

2019-02-14 Thread Zenghui Yu
Hi Marc, On 2019/2/14 18:46, Marc Zyngier wrote: On Sun, 10 Feb 2019 05:24:10 +, Zenghui Yu wrote: In current logic, its_parse_indirect_baser() will be invoked twice when allocating Device tables. Add a *break* to omit the unnecessary and annoying (might be ...) invoking. Signed-off-by:

Re: [PATCH] irqchip/gic-v3-its: Avoid parsing _indirect_ twice for Device table

2019-02-14 Thread Marc Zyngier
On Sun, 10 Feb 2019 05:24:10 +, Zenghui Yu wrote: > > In current logic, its_parse_indirect_baser() will be invoked twice > when allocating Device tables. Add a *break* to omit the unnecessary > and annoying (might be ...) invoking. > > Signed-off-by: Zenghui Yu > --- > drivers/irqchip/irq-

Re: [PATCH] irqchip/gic-v3-its: Avoid parsing _indirect_ twice for Device table

2019-02-12 Thread Zenghui Yu
Hi Marc, On 2019/2/10 13:24, Zenghui Yu wrote: In current logic, its_parse_indirect_baser() will be invoked twice when allocating Device tables. Add a *break* to omit the unnecessary and annoying (might be ...) invoking. Forgot to add: Fixes: 32bd44dc19de ("irqchip/gic-v3-its: Fix the incorr

[PATCH] irqchip/gic-v3-its: Avoid parsing _indirect_ twice for Device table

2019-02-09 Thread Zenghui Yu
In current logic, its_parse_indirect_baser() will be invoked twice when allocating Device tables. Add a *break* to omit the unnecessary and annoying (might be ...) invoking. Signed-off-by: Zenghui Yu --- drivers/irqchip/irq-gic-v3-its.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drive