All of lore.kernel.org
 help / color / mirror / Atom feed
* [XEN PATCH 00/13] xen: address violations of MISRA C:2012 Rule 7.3
@ 2023-08-03 10:22 Simone Ballarin
  2023-08-03 10:22 ` [XEN PATCH 01/13] AMD/IOMMU: " Simone Ballarin
                   ` (13 more replies)
  0 siblings, 14 replies; 46+ messages in thread
From: Simone Ballarin @ 2023-08-03 10:22 UTC (permalink / raw)
  To: xen-devel
  Cc: consulting, Simone Ballarin, Jan Beulich, Andrew Cooper,
	Roger Pau Monné, Wei Liu, Stefano Stabellini, Julien Grall,
	Bertrand Marquis, Volodymyr Babchuk, Paul Durrant,
	Tamas K Lengyel, Alexandru Isaila, Petre Pircalabu, George Dunlap

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



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

end of thread, other threads:[~2023-09-13  6:54 UTC | newest]

Thread overview: 46+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-03 10:22 [XEN PATCH 00/13] xen: address violations of MISRA C:2012 Rule 7.3 Simone Ballarin
2023-08-03 10:22 ` [XEN PATCH 01/13] AMD/IOMMU: " 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

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.