On 09.11.2020 10:50, Juergen Gross wrote: > Instead of using a softirq pci_serr_error() can use NMI continuation > for issuing an error message. > > Signed-off-by: Juergen Gross <jgr...@suse.com>
Reviewed-by: Jan Beulich <jbeul...@suse.com> with one minor change to be considered: > @@ -1808,6 +1816,9 @@ bool nmi_check_continuation(void) > if ( nmi_oprofile_send_virq() ) > ret = true; > > + if ( pci_serr_nmicont() ) > + ret = true; > + > return ret; > } As the likely more important part, wouldn't it be better to insert this ahead of the oprofile check? Jan