From: Simone Ballarin <simone.ballarin@bugseng.com>
To: xen-devel@lists.xenproject.org
Cc: consulting@bugseng.com,
"Simone Ballarin" <simone.ballarin@bugseng.com>,
"Jan Beulich" <jbeulich@suse.com>,
"Andrew Cooper" <andrew.cooper3@citrix.com>,
"Roger Pau Monné" <roger.pau@citrix.com>, "Wei Liu" <wl@xen.org>,
"Stefano Stabellini" <sstabellini@kernel.org>,
"Julien Grall" <julien@xen.org>,
"Bertrand Marquis" <bertrand.marquis@arm.com>,
"Volodymyr Babchuk" <Volodymyr_Babchuk@epam.com>,
"Paul Durrant" <paul@xen.org>,
"Tamas K Lengyel" <tamas@tklengyel.com>,
"Alexandru Isaila" <aisaila@bitdefender.com>,
"Petre Pircalabu" <ppircalabu@bitdefender.com>,
"George Dunlap" <george.dunlap@citrix.com>
Subject: [XEN PATCH 00/13] xen: address violations of MISRA C:2012 Rule 7.3
Date: Thu, 3 Aug 2023 12:22:15 +0200 [thread overview]
Message-ID: <cover.1691053438.git.simone.ballarin@bugseng.com> (raw)
This series aims to address some violations ofMISRA C:2012 Rule 7.3:
"The lowercase character 'l' shall not be used in a literal suffix".
This patch replaces "l" suffixes with "L", to comply with the rule.
If the "u" suffix is used near "L", use the "U" suffix instead, for consistency.
Gianluca Luparini (13):
AMD/IOMMU: address violations of MISRA C:2012 Rule 7.3
x86/svm: address violations of MISRA C:2012 Rule 7.3
xen/arm: address violations of MISRA C:2012 Rule 7.3
x86/IOMMU: address violations of MISRA C:2012 Rule 7.3
xen/ioreq: address violations of MISRA C:2012 Rule 7.3
xen/mem_access: address violations of MISRA C:2012 Rule 7.3
xen/vpci: address violations of MISRA C:2012 Rule 7.3
xen/hvm: address violations of MISRA C:2012 Rule 7.3
x86/mm: address violations of MISRA C:2012 Rule 7.3
x86/viridian: address violations of MISRA C:2012 Rule 7.3
xen/x86: address violations of MISRA C:2012 Rule 7.3
xen/common: address violations of MISRA C:2012 Rule 7.3
xen: address violations of MISRA C:2012 Rule 7.3
xen/arch/arm/include/asm/processor.h | 6 +++---
xen/arch/arm/vtimer.c | 2 +-
xen/arch/x86/cpu-policy.c | 4 ++--
xen/arch/x86/dom0_build.c | 2 +-
xen/arch/x86/e820.c | 2 +-
xen/arch/x86/hpet.c | 2 +-
xen/arch/x86/hvm/emulate.c | 2 +-
xen/arch/x86/hvm/hpet.c | 6 +++---
xen/arch/x86/hvm/hvm.c | 6 +++---
xen/arch/x86/hvm/io.c | 2 +-
xen/arch/x86/hvm/stdvga.c | 2 +-
xen/arch/x86/hvm/svm/svm.c | 4 ++--
xen/arch/x86/hvm/viridian/synic.c | 2 +-
xen/arch/x86/hvm/viridian/time.c | 10 +++++-----
xen/arch/x86/include/asm/apicdef.h | 4 ++--
xen/arch/x86/include/asm/debugreg.h | 16 ++++++++--------
xen/arch/x86/include/asm/guest_pt.h | 16 ++++++++--------
xen/arch/x86/include/asm/pv/domain.h | 2 +-
xen/arch/x86/mm.c | 4 ++--
xen/arch/x86/mm/p2m-pt.c | 6 +++---
xen/arch/x86/mm/p2m.c | 20 ++++++++++----------
xen/arch/x86/mm/physmap.c | 4 ++--
xen/arch/x86/msr.c | 2 +-
xen/arch/x86/nmi.c | 2 +-
xen/arch/x86/psr.c | 8 ++++----
xen/arch/x86/spec_ctrl.c | 6 +++---
xen/arch/x86/x86_64/mm.c | 4 ++--
xen/arch/x86/xstate.c | 2 +-
xen/common/ioreq.c | 2 +-
xen/common/mem_access.c | 4 ++--
xen/common/page_alloc.c | 6 +++---
xen/common/rangeset.c | 2 +-
xen/common/softirq.c | 8 ++++----
xen/common/vsprintf.c | 2 +-
xen/drivers/passthrough/amd/iommu_guest.c | 2 +-
xen/drivers/passthrough/amd/iommu_map.c | 2 +-
xen/drivers/passthrough/amd/pci_amd_iommu.c | 2 +-
xen/drivers/passthrough/x86/iommu.c | 8 ++++----
xen/drivers/vpci/header.c | 2 +-
xen/drivers/vpci/msi.c | 2 +-
xen/drivers/vpci/msix.c | 10 +++++-----
xen/include/xen/bitops.h | 8 ++++----
xen/include/xen/ioreq.h | 2 +-
xen/include/xen/tasklet.h | 4 ++--
xen/include/xen/time.h | 4 ++--
xen/lib/x86/cpuid.c | 4 ++--
46 files changed, 111 insertions(+), 111 deletions(-)
--
2.34.1
next reply other threads:[~2023-08-03 10:23 UTC|newest]
Thread overview: 46+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-03 10:22 Simone Ballarin [this message]
2023-08-03 10:22 ` [XEN PATCH 01/13] AMD/IOMMU: address violations of MISRA C:2012 Rule 7.3 Simone Ballarin
2023-08-04 0:40 ` Stefano Stabellini
2023-08-07 14:22 ` Jan Beulich
2023-08-03 10:22 ` [XEN PATCH 02/13] x86/svm: " Simone Ballarin
2023-08-04 0:42 ` Stefano Stabellini
2023-08-07 14:22 ` Jan Beulich
2023-08-03 10:22 ` [XEN PATCH 03/13] xen/arm: " Simone Ballarin
2023-08-03 13:44 ` Luca Fancellu
2023-08-04 0:44 ` Stefano Stabellini
2023-08-03 10:22 ` [XEN PATCH 04/13] x86/IOMMU: " Simone Ballarin
2023-08-04 0:45 ` Stefano Stabellini
2023-08-07 14:23 ` Jan Beulich
2023-08-03 10:22 ` [XEN PATCH 05/13] xen/ioreq: " Simone Ballarin
2023-08-04 0:46 ` Stefano Stabellini
2023-09-12 16:19 ` Simone Ballarin
2023-09-13 6:52 ` Paul Durrant
2023-08-03 10:22 ` [XEN PATCH 06/13] xen/mem_access: " Simone Ballarin
2023-08-04 0:47 ` Stefano Stabellini
2023-08-24 10:54 ` Jan Beulich
2023-08-24 21:37 ` Stefano Stabellini
2023-08-03 10:22 ` [XEN PATCH 07/13] xen/vpci: " Simone Ballarin
2023-08-04 0:48 ` Stefano Stabellini
2023-08-24 12:22 ` Roger Pau Monné
2023-08-03 10:22 ` [XEN PATCH 08/13] xen/hvm: " Simone Ballarin
2023-08-04 0:50 ` Stefano Stabellini
2023-08-07 14:24 ` Jan Beulich
2023-08-07 14:25 ` Jan Beulich
2023-09-12 16:18 ` Simone Ballarin
2023-09-13 6:53 ` Paul Durrant
2023-08-03 10:22 ` [XEN PATCH 09/13] x86/mm: " Simone Ballarin
2023-08-04 0:52 ` Stefano Stabellini
2023-08-07 14:26 ` Jan Beulich
2023-08-03 10:22 ` [XEN PATCH 10/13] x86/viridian: " Simone Ballarin
2023-08-04 0:54 ` Stefano Stabellini
2023-09-12 6:23 ` Paul Durrant
2023-08-03 10:22 ` [XEN PATCH 11/13] xen/x86: " Simone Ballarin
2023-08-04 0:59 ` Stefano Stabellini
2023-08-07 14:53 ` Jan Beulich
2023-08-03 10:22 ` [XEN PATCH 12/13] xen/common: " Simone Ballarin
2023-08-04 1:00 ` Stefano Stabellini
2023-08-03 10:22 ` [XEN PATCH 13/13] xen: " Simone Ballarin
2023-08-04 1:02 ` Stefano Stabellini
2023-08-23 8:15 ` [XEN PATCH 00/13] " Jan Beulich
2023-08-28 12:41 ` Simone Ballarin
2023-08-28 13:33 ` Jan Beulich
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.1691053438.git.simone.ballarin@bugseng.com \
--to=simone.ballarin@bugseng.com \
--cc=Volodymyr_Babchuk@epam.com \
--cc=aisaila@bitdefender.com \
--cc=andrew.cooper3@citrix.com \
--cc=bertrand.marquis@arm.com \
--cc=consulting@bugseng.com \
--cc=george.dunlap@citrix.com \
--cc=jbeulich@suse.com \
--cc=julien@xen.org \
--cc=paul@xen.org \
--cc=ppircalabu@bitdefender.com \
--cc=roger.pau@citrix.com \
--cc=sstabellini@kernel.org \
--cc=tamas@tklengyel.com \
--cc=wl@xen.org \
--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.