All of lore.kernel.org
 help / color / mirror / Atom feed
* [XEN PATCH v2 00/13] x86: address some violations of MISRA C Rule 16.3
@ 2024-06-24  9:04 Federico Serafini
  2024-06-24  9:04 ` [XEN PATCH v2 01/13] automation/eclair: fix deviation " Federico Serafini
                   ` (12 more replies)
  0 siblings, 13 replies; 54+ messages in thread
From: Federico Serafini @ 2024-06-24  9:04 UTC (permalink / raw)
  To: xen-devel
  Cc: consulting, Federico Serafini, Simone Ballarin, Doug Goldstein,
	Stefano Stabellini, Jan Beulich, Andrew Cooper,
	Roger Pau Monné

This patch series fixes a missing escape in a deviation and addresses some
violations.

Federico Serafini (13):
  automation/eclair: fix deviation of MISRA C Rule 16.3
  x86/cpuid: use fallthrough pseudo keyword
  x86/domctl: address a violation of MISRA C Rule 16.3
  x86/vpmu: address violations of MISRA C Rule 16.3
  x86/traps: address violations of MISRA C Rule 16.3
  x86/mce: address violations of MISRA C Rule 16.3
  x86/hvm: address violations of MISRA C Rule 16.3
  x86/vpt: address a violation of MISRA C Rule 16.3
  x86/mm: add defensive return
  x86/mpparse: address a violation of MISRA C Rule 16.3
  x86/pmtimer: address a violation of MISRA C Rule 16.3
  x86/vPIC: address a violation of MISRA C Rule 16.3
  x86/vlapic: address a violation of MISRA C Rule 16.3

 automation/eclair_analysis/ECLAIR/deviations.ecl | 2 +-
 xen/arch/x86/cpu/mcheck/mce_amd.c                | 1 +
 xen/arch/x86/cpu/mcheck/mce_intel.c              | 2 ++
 xen/arch/x86/cpu/vpmu.c                          | 3 +++
 xen/arch/x86/cpu/vpmu_intel.c                    | 1 +
 xen/arch/x86/cpuid.c                             | 3 +--
 xen/arch/x86/domctl.c                            | 1 +
 xen/arch/x86/hvm/emulate.c                       | 9 ++++++---
 xen/arch/x86/hvm/hvm.c                           | 6 ++++++
 xen/arch/x86/hvm/hypercall.c                     | 1 +
 xen/arch/x86/hvm/irq.c                           | 1 +
 xen/arch/x86/hvm/pmtimer.c                       | 1 +
 xen/arch/x86/hvm/vlapic.c                        | 1 +
 xen/arch/x86/hvm/vpic.c                          | 1 +
 xen/arch/x86/hvm/vpt.c                           | 2 ++
 xen/arch/x86/mm.c                                | 1 +
 xen/arch/x86/mpparse.c                           | 1 +
 xen/arch/x86/traps.c                             | 3 +++
 18 files changed, 34 insertions(+), 6 deletions(-)

-- 
2.34.1



^ permalink raw reply	[flat|nested] 54+ messages in thread

end of thread, other threads:[~2024-06-28  6:16 UTC | newest]

Thread overview: 54+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-24  9:04 [XEN PATCH v2 00/13] x86: address some violations of MISRA C Rule 16.3 Federico Serafini
2024-06-24  9:04 ` [XEN PATCH v2 01/13] automation/eclair: fix deviation " Federico Serafini
2024-06-24 10:57   ` Jan Beulich
2024-06-25  6:47     ` Federico Serafini
2024-06-25  0:49   ` Stefano Stabellini
2024-06-24  9:04 ` [XEN PATCH v2 02/13] x86/cpuid: use fallthrough pseudo keyword Federico Serafini
2024-06-24 15:08   ` Jan Beulich
2024-06-25  0:50   ` Stefano Stabellini
2024-06-24  9:04 ` [XEN PATCH v2 03/13] x86/domctl: address a violation of MISRA C Rule 16.3 Federico Serafini
2024-06-24 15:09   ` Jan Beulich
2024-06-25  0:51   ` Stefano Stabellini
2024-06-24  9:04 ` [XEN PATCH v2 04/13] x86/vpmu: address violations " Federico Serafini
2024-06-24 15:16   ` Jan Beulich
2024-06-25  9:53     ` Federico Serafini
2024-06-25  0:52   ` Stefano Stabellini
2024-06-24  9:04 ` [XEN PATCH v2 05/13] x86/traps: " Federico Serafini
2024-06-24 15:19   ` Jan Beulich
2024-06-25  0:54   ` Stefano Stabellini
2024-06-25  6:41     ` Jan Beulich
2024-06-26  1:11       ` Stefano Stabellini
2024-06-26  8:11         ` Jan Beulich
2024-06-27  1:53           ` Stefano Stabellini
2024-06-27  1:57             ` Stefano Stabellini
2024-06-27  8:11             ` Jan Beulich
2024-06-27 22:59               ` Stefano Stabellini
2024-06-28  6:15                 ` Jan Beulich
2024-06-24  9:04 ` [XEN PATCH v2 06/13] x86/mce: " Federico Serafini
2024-06-24 15:21   ` Jan Beulich
2024-06-25  0:55   ` Stefano Stabellini
2024-06-24  9:04 ` [XEN PATCH v2 07/13] x86/hvm: " Federico Serafini
2024-06-24 15:32   ` Jan Beulich
2024-06-25  7:21     ` Federico Serafini
2024-06-25  7:46       ` Jan Beulich
2024-06-25  0:57   ` Stefano Stabellini
2024-06-24  9:04 ` [XEN PATCH v2 08/13] x86/vpt: address a violation " Federico Serafini
2024-06-24 15:34   ` Jan Beulich
2024-06-25  0:58   ` [XEN PATCH v2 08/13] x86/vpt: address a violation of MISRA C Rule 16.3x Stefano Stabellini
2024-06-24  9:04 ` [XEN PATCH v2 09/13] x86/mm: add defensive return Federico Serafini
2024-06-24 15:39   ` Jan Beulich
2024-06-25  7:38     ` Federico Serafini
2024-06-25  0:58   ` Stefano Stabellini
2024-06-24  9:04 ` [XEN PATCH v2 10/13] x86/mpparse: address a violation of MISRA C Rule 16.3 Federico Serafini
2024-06-24 15:41   ` Jan Beulich
2024-06-25  0:59   ` Stefano Stabellini
2024-06-24  9:04 ` [XEN PATCH v2 11/13] x86/pmtimer: " Federico Serafini
2024-06-24 15:43   ` Jan Beulich
2024-06-25  7:54     ` Federico Serafini
2024-06-25  0:59   ` Stefano Stabellini
2024-06-24  9:04 ` [XEN PATCH v2 12/13] x86/vPIC: " Federico Serafini
2024-06-24 15:45   ` Jan Beulich
2024-06-25  1:00   ` Stefano Stabellini
2024-06-24  9:04 ` [XEN PATCH v2 13/13] x86/vlapic: " Federico Serafini
2024-06-24 15:47   ` Jan Beulich
2024-06-25  1:00   ` Stefano Stabellini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.