From: Federico Serafini <federico.serafini@bugseng.com>
To: xen-devel@lists.xenproject.org
Cc: consulting@bugseng.com,
Federico Serafini <federico.serafini@bugseng.com>
Subject: [XEN PATCH v4 0/9] x86: address some violations of MISRA C Rule 16.3
Date: Mon, 15 Jul 2024 18:47:13 +0200 [thread overview]
Message-ID: <cover.1721050709.git.federico.serafini@bugseng.com> (raw)
This patch series fixes a missing escape in a deviation and addresses some
violations.
Federico Serafini (9):
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/mm: add defensive return
x86/mpparse: 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 | 2 ++
xen/arch/x86/cpuid.c | 3 +--
xen/arch/x86/domctl.c | 1 +
xen/arch/x86/hvm/emulate.c | 10 ++++++----
xen/arch/x86/hvm/hvm.c | 5 +++++
xen/arch/x86/hvm/hypercall.c | 2 +-
xen/arch/x86/hvm/irq.c | 1 +
xen/arch/x86/hvm/pmtimer.c | 1 +
xen/arch/x86/hvm/svm/svm.c | 2 ++
xen/arch/x86/hvm/vlapic.c | 1 +
xen/arch/x86/hvm/vmx/vmcs.c | 2 ++
xen/arch/x86/hvm/vmx/vmx.c | 3 ++-
xen/arch/x86/hvm/vmx/vvmx.c | 1 +
xen/arch/x86/hvm/vpic.c | 1 +
xen/arch/x86/hvm/vpt.c | 3 +--
xen/arch/x86/mm.c | 1 +
xen/arch/x86/mpparse.c | 1 +
xen/arch/x86/traps.c | 3 +++
22 files changed, 40 insertions(+), 11 deletions(-)
--
2.34.1
WARNING: multiple messages have this Message-ID (diff)
From: Federico Serafini <federico.serafini@bugseng.com>
To: xen-devel@lists.xenproject.org
Cc: consulting@bugseng.com,
"Federico Serafini" <federico.serafini@bugseng.com>,
"Simone Ballarin" <simone.ballarin@bugseng.com>,
"Doug Goldstein" <cardoe@cardoe.com>,
"Stefano Stabellini" <sstabellini@kernel.org>,
"Jan Beulich" <jbeulich@suse.com>,
"Andrew Cooper" <andrew.cooper3@citrix.com>,
"Roger Pau Monné" <roger.pau@citrix.com>
Subject: [Resend XEN PATCH v4 0/9] x86: address some violations of MISRA C Rule 16.3
Date: Mon, 15 Jul 2024 18:48:51 +0200 [thread overview]
Message-ID: <cover.1721050709.git.federico.serafini@bugseng.com> (raw)
Message-ID: <20240715164851.vKuCbB4YBLsy0ilH1lKI1tZhl3wOtFJ0JdmgKLScC9g@z> (raw)
This patch series fixes a missing escape in a deviation and addresses some
violations.
Federico Serafini (9):
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/mm: add defensive return
x86/mpparse: 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 | 2 ++
xen/arch/x86/cpuid.c | 3 +--
xen/arch/x86/domctl.c | 1 +
xen/arch/x86/hvm/emulate.c | 10 ++++++----
xen/arch/x86/hvm/hvm.c | 5 +++++
xen/arch/x86/hvm/hypercall.c | 2 +-
xen/arch/x86/hvm/irq.c | 1 +
xen/arch/x86/hvm/pmtimer.c | 1 +
xen/arch/x86/hvm/svm/svm.c | 2 ++
xen/arch/x86/hvm/vlapic.c | 1 +
xen/arch/x86/hvm/vmx/vmcs.c | 2 ++
xen/arch/x86/hvm/vmx/vmx.c | 3 ++-
xen/arch/x86/hvm/vmx/vvmx.c | 1 +
xen/arch/x86/hvm/vpic.c | 1 +
xen/arch/x86/hvm/vpt.c | 3 +--
xen/arch/x86/mm.c | 1 +
xen/arch/x86/mpparse.c | 1 +
xen/arch/x86/traps.c | 3 +++
22 files changed, 40 insertions(+), 11 deletions(-)
--
2.34.1
next reply other threads:[~2024-07-15 16:47 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-07-15 16:47 Federico Serafini [this message]
2024-07-15 16:48 ` [Resend XEN PATCH v4 0/9] x86: address some violations of MISRA C Rule 16.3 Federico Serafini
2024-07-15 16:47 ` [XEN PATCH v4 1/9] automation/eclair: fix deviation " Federico Serafini
2024-07-15 16:48 ` Federico Serafini
2024-07-24 9:45 ` Jan Beulich
2024-07-24 11:32 ` Federico Serafini
2024-07-24 12:38 ` Jan Beulich
2024-07-15 16:47 ` [XEN PATCH v4 2/9] x86/cpuid: use fallthrough pseudo keyword Federico Serafini
2024-07-15 16:48 ` Federico Serafini
2024-07-15 16:47 ` [XEN PATCH v4 3/9] x86/domctl: address a violation of MISRA C Rule 16.3 Federico Serafini
2024-07-15 16:48 ` Federico Serafini
2024-07-15 16:47 ` [XEN PATCH v4 4/9] x86/vpmu: address violations " Federico Serafini
2024-07-15 16:48 ` Federico Serafini
2024-07-16 7:05 ` Jan Beulich
2024-07-15 16:47 ` [XEN PATCH v4 5/9] x86/traps: " Federico Serafini
2024-07-15 16:48 ` Federico Serafini
2024-07-16 7:08 ` Jan Beulich
2024-07-16 7:10 ` Federico Serafini
2024-07-15 16:47 ` [XEN PATCH v4 6/9] x86/mce: " Federico Serafini
2024-07-15 16:48 ` Federico Serafini
2024-07-15 16:47 ` [XEN PATCH v4 7/9] x86/hvm: " Federico Serafini
2024-07-15 16:48 ` Federico Serafini
2024-07-16 8:17 ` Jan Beulich
2024-07-15 16:47 ` [XEN PATCH v4 8/9] x86/mm: add defensive return Federico Serafini
2024-07-15 16:48 ` Federico Serafini
2024-07-17 23:23 ` Stefano Stabellini
2024-07-15 16:47 ` [XEN PATCH v4 9/9] x86/mpparse: address a violation of MISRA C Rule 16.3 Federico Serafini
2024-07-15 16:49 ` Federico Serafini
2024-07-16 6:59 ` [Resend XEN PATCH v4 0/9] x86: address some violations " Jan Beulich
2024-07-16 7:08 ` Federico Serafini
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cover.1721050709.git.federico.serafini@bugseng.com \
--to=federico.serafini@bugseng.com \
--cc=consulting@bugseng.com \
--cc=xen-devel@lists.xenproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.