All of lore.kernel.org
 help / color / mirror / Atom feed
From: Federico Serafini <federico.serafini@bugseng.com>
To: xen-devel@lists.xenproject.org
Cc: consulting@bugseng.com,
	"Federico Serafini" <federico.serafini@bugseng.com>,
	"Andrew Cooper" <andrew.cooper3@citrix.com>,
	"George Dunlap" <george.dunlap@citrix.com>,
	"Jan Beulich" <jbeulich@suse.com>,
	"Julien Grall" <julien@xen.org>,
	"Stefano Stabellini" <sstabellini@kernel.org>,
	"Wei Liu" <wl@xen.org>, "Paul Durrant" <paul@xen.org>,
	"Roger Pau Monné" <roger.pau@citrix.com>
Subject: [XEN PATCH 00/11] xen: address violations of MISRA C:2012 Rule 8.2
Date: Fri, 24 Nov 2023 15:03:15 +0100	[thread overview]
Message-ID: <cover.1700832962.git.federico.serafini@bugseng.com> (raw)

This patch series adds some of the missing parameter names.
No functional changes are introduced.

Federico Serafini (11):
  xen/console: address violations of MISRA C:2012 Rule 8.2
  xen/aclinux: address violations of MISRA C:2012 Rule 8.2
  xen/cpumask: address violations of MISRA C:2012 Rule 8.2
  xen/dmi: address a violation of MISRA C:2012 Rule 8.2
  xen/domain: address violations of MISRA C:2012 Rule 8.2
  xen/notifier: address violations of MISRA C:2012 Rule 8.2
  xen/iommu: address violations of MISRA C:2012 Rule 8.2
  xen/kernel: address a violation of MISRA C:2012 Rule 8.2
  xen/param: address a violation of MISRA C:2012 Rule 8.2
  xen/perfc: address a violation of MISRA C:2012 Rule 8.2
  xen/serial: address a violation of MISRA C:2012 Rule 8.2

 xen/drivers/char/console.c          |  4 ++--
 xen/include/acpi/platform/aclinux.h |  6 +++---
 xen/include/xen/console.h           |  2 +-
 xen/include/xen/cpumask.h           |  6 ++++--
 xen/include/xen/dmi.h               |  2 +-
 xen/include/xen/domain.h            | 14 +++++++-------
 xen/include/xen/iommu.h             | 13 +++++++------
 xen/include/xen/kernel.h            |  2 +-
 xen/include/xen/notifier.h          |  3 ++-
 xen/include/xen/param.h             |  2 +-
 xen/include/xen/perfc.h             |  2 +-
 xen/include/xen/serial.h            |  2 +-
 12 files changed, 31 insertions(+), 27 deletions(-)

-- 
2.34.1



             reply	other threads:[~2023-11-24 14:05 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-24 14:03 Federico Serafini [this message]
2023-11-24 14:03 ` [XEN PATCH 01/11] xen/console: address violations of MISRA C:2012 Rule 8.2 Federico Serafini
2023-11-28 17:22   ` Jan Beulich
2023-11-24 14:03 ` [XEN PATCH 02/11] xen/aclinux: " Federico Serafini
2023-11-28 17:23   ` Jan Beulich
2023-11-24 14:03 ` [XEN PATCH 03/11] xen/cpumask: " Federico Serafini
2023-11-28 17:24   ` Jan Beulich
2023-11-24 14:03 ` [XEN PATCH 04/11] xen/dmi: address a violation " Federico Serafini
2023-11-28 17:25   ` Jan Beulich
2023-11-24 14:03 ` [XEN PATCH 05/11] xen/domain: address violations " Federico Serafini
2023-11-30 15:58   ` Jan Beulich
2023-12-01  2:28   ` Stefano Stabellini
2023-11-24 14:03 ` [XEN PATCH 06/11] xen/notifier: " Federico Serafini
2023-11-30 15:58   ` Jan Beulich
2023-12-01  2:29   ` Stefano Stabellini
2023-11-24 14:03 ` [XEN PATCH 07/11] xen/iommu: " Federico Serafini
2023-11-30 15:59   ` Jan Beulich
2023-11-24 14:03 ` [XEN PATCH 08/11] xen/kernel: address a violation " Federico Serafini
2023-11-30 16:00   ` Jan Beulich
2023-12-01  2:30   ` Stefano Stabellini
2023-11-24 14:03 ` [XEN PATCH 09/11] xen/param: " Federico Serafini
2023-11-30 16:29   ` Jan Beulich
2023-12-01  2:32   ` Stefano Stabellini
2023-11-24 14:03 ` [XEN PATCH 10/11] xen/perfc: " Federico Serafini
2023-11-30 16:35   ` Jan Beulich
2023-12-01  2:33   ` Stefano Stabellini
2023-11-24 14:03 ` [XEN PATCH 11/11] xen/serial: " Federico Serafini
2023-11-30 16:35   ` Jan Beulich
2023-12-01  2:34   ` Stefano Stabellini

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.1700832962.git.federico.serafini@bugseng.com \
    --to=federico.serafini@bugseng.com \
    --cc=andrew.cooper3@citrix.com \
    --cc=consulting@bugseng.com \
    --cc=george.dunlap@citrix.com \
    --cc=jbeulich@suse.com \
    --cc=julien@xen.org \
    --cc=paul@xen.org \
    --cc=roger.pau@citrix.com \
    --cc=sstabellini@kernel.org \
    --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.