All of lore.kernel.org
 help / color / mirror / Atom feed
* [XEN PATCH 0/5] Fix violations of MISRA C:2012 Rule 8.3 on parameter names
@ 2023-06-29 15:55 Federico Serafini
  2023-06-29 15:55 ` [XEN PATCH 1/5] x86: swap parameter names of hvm_copy_context_and_params() declaration Federico Serafini
                   ` (5 more replies)
  0 siblings, 6 replies; 26+ messages in thread
From: Federico Serafini @ 2023-06-29 15:55 UTC (permalink / raw)
  To: xen-devel
  Cc: consulting, Federico Serafini, Jan Beulich, Andrew Cooper,
	Roger Pau Monné, Wei Liu, Paul Durrant, Tamas K Lengyel,
	Alexandru Isaila, Petre Pircalabu, Jun Nakajima, Kevin Tian,
	Stefano Stabellini, Michal Orzel, Xenia Ragiadakou,
	Ayan Kumar Halder

To comply with Rule 8.3 ("All declarations of an object or function
shall use the same names and type qualifiers") change the parameter
names in order to have function declarations consistent with the
corresponding definitions.

Federico Serafini (5):
  x86: swap parameter names of hvm_copy_context_and_params() declaration
  x86: change parameter names of nestedhvm_vcpu_iomap_get() definition
  x86/vlapic: change parameter names in function definitions
  x86/x86_emulate: change parameter name from 's' to 'state'
  x86: make parameter names of function declarations consistent

 xen/arch/x86/cpu/mcheck/mce.h           |  2 +-
 xen/arch/x86/cpu/mcheck/x86_mca.h       |  2 +-
 xen/arch/x86/hvm/nestedhvm.c            | 10 ++---
 xen/arch/x86/hvm/rtc.c                  |  2 +-
 xen/arch/x86/hvm/svm/nestedhvm.h        |  2 +-
 xen/arch/x86/hvm/vioapic.c              |  2 +-
 xen/arch/x86/hvm/vlapic.c               | 56 ++++++++++++-------------
 xen/arch/x86/include/asm/genapic.h      |  2 +-
 xen/arch/x86/include/asm/guest_pt.h     |  2 +-
 xen/arch/x86/include/asm/hap.h          |  2 +-
 xen/arch/x86/include/asm/hvm/hvm.h      |  2 +-
 xen/arch/x86/include/asm/hvm/io.h       |  2 +-
 xen/arch/x86/include/asm/hvm/monitor.h  |  2 +-
 xen/arch/x86/include/asm/hvm/svm/vmcb.h |  2 +-
 xen/arch/x86/include/asm/hvm/vmx/vmcs.h |  4 +-
 xen/arch/x86/include/asm/hvm/vmx/vvmx.h |  8 ++--
 xen/arch/x86/include/asm/io_apic.h      |  2 +-
 xen/arch/x86/include/asm/irq.h          |  6 +--
 xen/arch/x86/include/asm/mem_access.h   |  2 +-
 xen/arch/x86/include/asm/mpspec.h       |  2 +-
 xen/arch/x86/include/asm/msi.h          |  4 +-
 xen/arch/x86/include/asm/p2m.h          |  8 ++--
 xen/arch/x86/include/asm/paging.h       |  2 +-
 xen/arch/x86/include/asm/psr.h          |  2 +-
 xen/arch/x86/include/asm/setup.h        |  2 +-
 xen/arch/x86/include/asm/uaccess.h      |  6 +--
 xen/arch/x86/include/asm/xstate.h       |  2 +-
 xen/arch/x86/x86_emulate/blk.c          | 38 ++++++++---------
 xen/arch/x86/x86_emulate/util-xen.c     | 46 ++++++++++----------
 xen/arch/x86/x86_emulate/util.c         | 54 ++++++++++++------------
 xen/include/xen/lib/x86/cpu-policy.h    | 29 ++++++-------
 31 files changed, 154 insertions(+), 153 deletions(-)

-- 
2.34.1



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

end of thread, other threads:[~2023-07-07  6:37 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-29 15:55 [XEN PATCH 0/5] Fix violations of MISRA C:2012 Rule 8.3 on parameter names Federico Serafini
2023-06-29 15:55 ` [XEN PATCH 1/5] x86: swap parameter names of hvm_copy_context_and_params() declaration Federico Serafini
2023-06-29 19:23   ` Stefano Stabellini
2023-06-29 15:55 ` [XEN PATCH 2/5] x86: change parameter names of nestedhvm_vcpu_iomap_get() definition Federico Serafini
2023-06-29 19:25   ` Stefano Stabellini
2023-07-04 13:53     ` Jan Beulich
2023-06-29 15:55 ` [XEN PATCH 3/5] x86/vlapic: change parameter names in function definitions Federico Serafini
2023-06-29 19:28   ` Stefano Stabellini
2023-06-29 15:55 ` [XEN PATCH 4/5] x86/x86_emulate: change parameter name from 's' to 'state' Federico Serafini
2023-06-29 19:31   ` Stefano Stabellini
2023-07-04 13:57     ` Jan Beulich
2023-07-05 22:49       ` Stefano Stabellini
2023-07-06  6:40         ` Jan Beulich
2023-07-06 22:05           ` Stefano Stabellini
2023-07-07  6:37             ` Jan Beulich
2023-06-29 15:55 ` [XEN PATCH 5/5] x86: make parameter names of function declarations consistent Federico Serafini
2023-06-29 19:47   ` Stefano Stabellini
2023-06-30  7:36     ` Federico Serafini
2023-06-30 14:21       ` Andrew Cooper
2023-06-30 15:41         ` Federico Serafini
2023-07-04 14:00   ` Jan Beulich
2023-07-05 22:51     ` Stefano Stabellini
2023-07-05 22:52       ` Stefano Stabellini
2023-07-06  6:44         ` Jan Beulich
2023-07-06  6:43       ` Jan Beulich
2023-06-30 14:15 ` [XEN PATCH 0/5] Fix violations of MISRA C:2012 Rule 8.3 on parameter names Andrew Cooper

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.