On Wed, 22 May 2024, Sergiy Kibrik wrote: > The default switch case block is wanted here, to handle situation > e.g. of unexpected c->x86_vendor value -- then no mcheck init is done, but > misleading message still gets logged anyway. > > Signed-off-by: Sergiy Kibrik <sergiy_kib...@epam.com> > CC: Jan Beulich <jbeul...@suse.com>
Reviewed-by: Stefano Stabellini <sstabell...@kernel.org> > --- > changes in v4: > - return 0 instead of -ENODEV and put a comment > - update description a bit > --- > xen/arch/x86/cpu/mcheck/non-fatal.c | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/xen/arch/x86/cpu/mcheck/non-fatal.c > b/xen/arch/x86/cpu/mcheck/non-fatal.c > index 33cacd15c2..5a53bcd0b7 100644 > --- a/xen/arch/x86/cpu/mcheck/non-fatal.c > +++ b/xen/arch/x86/cpu/mcheck/non-fatal.c > @@ -29,9 +29,14 @@ static int __init cf_check init_nonfatal_mce_checker(void) > /* Assume we are on K8 or newer AMD or Hygon CPU here */ > amd_nonfatal_mcheck_init(c); > break; > + > case X86_VENDOR_INTEL: > intel_nonfatal_mcheck_init(c); > break; > + > + default: > + /* unhandled vendor isn't really an error */ > + return 0; > } > printk(KERN_INFO "mcheck_poll: Machine check polling timer started.\n"); > return 0; > -- > 2.25.1 >