Re: [PATCH v5 2/5] irqchip/gic-v3: Enable support for SGIs to act as NMIs

2020-10-20 Thread Sumit Garg
On Mon, 19 Oct 2020 at 17:37, Marc Zyngier wrote: > > On 2020-10-14 12:12, Sumit Garg wrote: > > Add support to handle SGIs as regular NMIs. As SGIs or IPIs defaults to > > a > > There is nothing "regular" about NMIs. Okay, will do s/regular/pseudo/. > Drop "or IPIs". > s/defaults/default/ >

Re: [PATCH v5 2/5] irqchip/gic-v3: Enable support for SGIs to act as NMIs

2020-10-19 Thread Marc Zyngier
On 2020-10-14 12:12, Sumit Garg wrote: Add support to handle SGIs as regular NMIs. As SGIs or IPIs defaults to a There is nothing "regular" about NMIs. Drop "or IPIs". s/defaults/default/ special flow handler: handle_percpu_devid_fasteoi_ipi(), so skip NMI handler update in case of SGIs.

Re: [PATCH v5 2/5] irqchip/gic-v3: Enable support for SGIs to act as NMIs

2020-10-14 Thread Masayoshi Mizuma
On Wed, Oct 14, 2020 at 04:42:08PM +0530, Sumit Garg wrote: > Add support to handle SGIs as regular NMIs. As SGIs or IPIs defaults to a > special flow handler: handle_percpu_devid_fasteoi_ipi(), so skip NMI > handler update in case of SGIs. > > Also, enable NMI support prior to gic_smp_init() as

[PATCH v5 2/5] irqchip/gic-v3: Enable support for SGIs to act as NMIs

2020-10-14 Thread Sumit Garg
Add support to handle SGIs as regular NMIs. As SGIs or IPIs defaults to a special flow handler: handle_percpu_devid_fasteoi_ipi(), so skip NMI handler update in case of SGIs. Also, enable NMI support prior to gic_smp_init() as allocation of SGIs as IRQs/NMIs happen as part of this routine.