All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Philippe Mathieu-Daudé" <philmd@redhat.com>
To: qemu-devel@nongnu.org
Cc: "Max Reitz" <mreitz@redhat.com>, "Kevin Wolf" <kwolf@redhat.com>,
	"Thomas Huth" <thuth@redhat.com>, "Fam Zheng" <fam@euphon.net>,
	"Eduardo Habkost" <ehabkost@redhat.com>,
	"Alex Williamson" <alex.williamson@redhat.com>,
	"Marcel Apfelbaum" <marcel.apfelbaum@gmail.com>,
	"Richard Henderson" <rth@twiddle.net>,
	"Julia Suvorova" <jusual@redhat.com>,
	"Thomas Huth" <huth@tuxfamily.org>,
	"Edgar E. Iglesias" <edgar.iglesias@gmail.com>,
	"Aarushi Mehta" <mehta.aaru20@gmail.com>,
	qemu-trivial@nongnu.org, "Stefan Hajnoczi" <stefanha@redhat.com>,
	"Alistair Francis" <alistair@alistair23.me>,
	"Gerd Hoffmann" <kraxel@redhat.com>,
	"Luc Michel" <luc.michel@greensocs.com>,
	"Laurent Vivier" <lvivier@redhat.com>,
	"Juan Quintela" <quintela@redhat.com>,
	"Michael Tokarev" <mjt@tls.msk.ru>,
	"Laurent Vivier" <laurent@vivier.eu>,
	"Paolo Bonzini" <pbonzini@redhat.com>,
	"Dr. David Alan Gilbert" <dgilbert@redhat.com>,
	"Yuval Shaia" <yuval.shaia.ml@gmail.com>,
	qemu-arm@nongnu.org, "Peter Maydell" <peter.maydell@linaro.org>,
	qemu-block@nongnu.org,
	"Philippe Mathieu-Daudé" <philmd@redhat.com>
Subject: [PATCH RESEND 00/13] trivial: Detect and remove superfluous semicolons in C code
Date: Tue, 18 Feb 2020 10:43:49 +0100	[thread overview]
Message-ID: <20200218094402.26625-1-philmd@redhat.com> (raw)

Luc noticed a superfluous trailing semicolon:
https://lists.gnu.org/archive/html/qemu-devel/2020-02/msg04593.html

Prevent that by modifying checkpatch.pl and clean the codebase.

Philippe Mathieu-Daudé (13):
  scripts/checkpatch.pl: Detect superfluous semicolon in C code
  audio/alsaaudio: Remove superfluous semicolons
  block: Remove superfluous semicolons
  block/io_uring: Remove superfluous semicolon
  hw/arm/xlnx-versal: Remove superfluous semicolon
  hw/m68k/next-cube: Remove superfluous semicolon
  hw/scsi/esp: Remove superfluous semicolon
  hw/vfio/display: Remove superfluous semicolon
  migration/multifd: Remove superfluous semicolon
  ui/input-barrier: Remove superfluous semicolon
  target/i386/whpx: Remove superfluous semicolon
  tests/qtest/libqos/qgraph: Remove superfluous semicolons
  contrib/rdmacm-mux: Remove superfluous semicolon

 audio/alsaaudio.c           | 4 ++--
 block.c                     | 4 ++--
 block/io_uring.c            | 2 +-
 contrib/rdmacm-mux/main.c   | 2 +-
 hw/arm/xlnx-versal-virt.c   | 2 +-
 hw/m68k/next-cube.c         | 2 +-
 hw/scsi/esp.c               | 2 +-
 hw/vfio/display.c           | 2 +-
 migration/multifd.c         | 2 +-
 target/i386/whpx-all.c      | 2 +-
 tests/qtest/libqos/qgraph.c | 4 ++--
 ui/input-barrier.c          | 2 +-
 scripts/checkpatch.pl       | 5 +++++
 13 files changed, 20 insertions(+), 15 deletions(-)

-- 
2.21.1



WARNING: multiple messages have this Message-ID (diff)
From: "Philippe Mathieu-Daudé" <philmd@redhat.com>
To: qemu-devel@nongnu.org
Cc: "Fam Zheng" <fam@euphon.net>,
	"Peter Maydell" <peter.maydell@linaro.org>,
	"Michael Tokarev" <mjt@tls.msk.ru>,
	"Yuval Shaia" <yuval.shaia.ml@gmail.com>,
	"Gerd Hoffmann" <kraxel@redhat.com>,
	qemu-block@nongnu.org, "Juan Quintela" <quintela@redhat.com>,
	qemu-trivial@nongnu.org,
	"Marcel Apfelbaum" <marcel.apfelbaum@gmail.com>,
	"Philippe Mathieu-Daudé" <philmd@redhat.com>,
	"Laurent Vivier" <lvivier@redhat.com>,
	"Thomas Huth" <thuth@redhat.com>,
	"Eduardo Habkost" <ehabkost@redhat.com>,
	"Alistair Francis" <alistair@alistair23.me>,
	"Julia Suvorova" <jusual@redhat.com>,
	"Dr. David Alan Gilbert" <dgilbert@redhat.com>,
	"Alex Williamson" <alex.williamson@redhat.com>,
	qemu-arm@nongnu.org, "Stefan Hajnoczi" <stefanha@redhat.com>,
	"Aarushi Mehta" <mehta.aaru20@gmail.com>,
	"Richard Henderson" <rth@twiddle.net>,
	"Kevin Wolf" <kwolf@redhat.com>,
	"Thomas Huth" <huth@tuxfamily.org>,
	"Laurent Vivier" <laurent@vivier.eu>,
	"Max Reitz" <mreitz@redhat.com>,
	"Paolo Bonzini" <pbonzini@redhat.com>,
	"Luc Michel" <luc.michel@greensocs.com>
Subject: [PATCH RESEND 00/13] trivial: Detect and remove superfluous semicolons in C code
Date: Tue, 18 Feb 2020 10:43:49 +0100	[thread overview]
Message-ID: <20200218094402.26625-1-philmd@redhat.com> (raw)

Luc noticed a superfluous trailing semicolon:
https://lists.gnu.org/archive/html/qemu-devel/2020-02/msg04593.html

Prevent that by modifying checkpatch.pl and clean the codebase.

Philippe Mathieu-Daudé (13):
  scripts/checkpatch.pl: Detect superfluous semicolon in C code
  audio/alsaaudio: Remove superfluous semicolons
  block: Remove superfluous semicolons
  block/io_uring: Remove superfluous semicolon
  hw/arm/xlnx-versal: Remove superfluous semicolon
  hw/m68k/next-cube: Remove superfluous semicolon
  hw/scsi/esp: Remove superfluous semicolon
  hw/vfio/display: Remove superfluous semicolon
  migration/multifd: Remove superfluous semicolon
  ui/input-barrier: Remove superfluous semicolon
  target/i386/whpx: Remove superfluous semicolon
  tests/qtest/libqos/qgraph: Remove superfluous semicolons
  contrib/rdmacm-mux: Remove superfluous semicolon

 audio/alsaaudio.c           | 4 ++--
 block.c                     | 4 ++--
 block/io_uring.c            | 2 +-
 contrib/rdmacm-mux/main.c   | 2 +-
 hw/arm/xlnx-versal-virt.c   | 2 +-
 hw/m68k/next-cube.c         | 2 +-
 hw/scsi/esp.c               | 2 +-
 hw/vfio/display.c           | 2 +-
 migration/multifd.c         | 2 +-
 target/i386/whpx-all.c      | 2 +-
 tests/qtest/libqos/qgraph.c | 4 ++--
 ui/input-barrier.c          | 2 +-
 scripts/checkpatch.pl       | 5 +++++
 13 files changed, 20 insertions(+), 15 deletions(-)

-- 
2.21.1


WARNING: multiple messages have this Message-ID (diff)
From: "Philippe Mathieu-Daudé" <philmd@redhat.com>
To: qemu-devel@nongnu.org
Cc: "Fam Zheng" <fam@euphon.net>,
	"Peter Maydell" <peter.maydell@linaro.org>,
	"Michael Tokarev" <mjt@tls.msk.ru>,
	"Yuval Shaia" <yuval.shaia.ml@gmail.com>,
	"Gerd Hoffmann" <kraxel@redhat.com>,
	"Edgar E. Iglesias" <edgar.iglesias@gmail.com>,
	qemu-block@nongnu.org, "Juan Quintela" <quintela@redhat.com>,
	qemu-trivial@nongnu.org,
	"Philippe Mathieu-Daudé" <philmd@redhat.com>,
	"Laurent Vivier" <lvivier@redhat.com>,
	"Thomas Huth" <thuth@redhat.com>,
	"Eduardo Habkost" <ehabkost@redhat.com>,
	"Alistair Francis" <alistair@alistair23.me>,
	"Julia Suvorova" <jusual@redhat.com>,
	"Dr. David Alan Gilbert" <dgilbert@redhat.com>,
	"Alex Williamson" <alex.williamson@redhat.com>,
	qemu-arm@nongnu.org, "Stefan Hajnoczi" <stefanha@redhat.com>,
	"Aarushi Mehta" <mehta.aaru20@gmail.com>,
	"Richard Henderson" <rth@twiddle.net>,
	"Kevin Wolf" <kwolf@redhat.com>,
	"Thomas Huth" <huth@tuxfamily.org>,
	"Laurent Vivier" <laurent@vivier.eu>,
	"Max Reitz" <mreitz@redhat.com>,
	"Paolo Bonzini" <pbonzini@redhat.com>,
	"Luc Michel" <luc.michel@greensocs.com>
Subject: [PATCH RESEND 00/13] trivial: Detect and remove superfluous semicolons in C code
Date: Tue, 18 Feb 2020 10:43:49 +0100	[thread overview]
Message-ID: <20200218094402.26625-1-philmd@redhat.com> (raw)

Luc noticed a superfluous trailing semicolon:
https://lists.gnu.org/archive/html/qemu-devel/2020-02/msg04593.html

Prevent that by modifying checkpatch.pl and clean the codebase.

Philippe Mathieu-Daudé (13):
  scripts/checkpatch.pl: Detect superfluous semicolon in C code
  audio/alsaaudio: Remove superfluous semicolons
  block: Remove superfluous semicolons
  block/io_uring: Remove superfluous semicolon
  hw/arm/xlnx-versal: Remove superfluous semicolon
  hw/m68k/next-cube: Remove superfluous semicolon
  hw/scsi/esp: Remove superfluous semicolon
  hw/vfio/display: Remove superfluous semicolon
  migration/multifd: Remove superfluous semicolon
  ui/input-barrier: Remove superfluous semicolon
  target/i386/whpx: Remove superfluous semicolon
  tests/qtest/libqos/qgraph: Remove superfluous semicolons
  contrib/rdmacm-mux: Remove superfluous semicolon

 audio/alsaaudio.c           | 4 ++--
 block.c                     | 4 ++--
 block/io_uring.c            | 2 +-
 contrib/rdmacm-mux/main.c   | 2 +-
 hw/arm/xlnx-versal-virt.c   | 2 +-
 hw/m68k/next-cube.c         | 2 +-
 hw/scsi/esp.c               | 2 +-
 hw/vfio/display.c           | 2 +-
 migration/multifd.c         | 2 +-
 target/i386/whpx-all.c      | 2 +-
 tests/qtest/libqos/qgraph.c | 4 ++--
 ui/input-barrier.c          | 2 +-
 scripts/checkpatch.pl       | 5 +++++
 13 files changed, 20 insertions(+), 15 deletions(-)

-- 
2.21.1



             reply	other threads:[~2020-02-18  9:44 UTC|newest]

Thread overview: 132+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-02-18  9:43 Philippe Mathieu-Daudé [this message]
2020-02-18  9:43 ` [PATCH RESEND 00/13] trivial: Detect and remove superfluous semicolons in C code Philippe Mathieu-Daudé
2020-02-18  9:43 ` Philippe Mathieu-Daudé
2020-02-18  9:43 ` [PATCH RESEND 01/13] scripts/checkpatch.pl: Detect superfluous semicolon " Philippe Mathieu-Daudé
2020-02-18  9:43   ` Philippe Mathieu-Daudé
2020-02-18  9:43   ` Philippe Mathieu-Daudé
2020-02-18  9:49   ` Dr. David Alan Gilbert
2020-02-18  9:49     ` Dr. David Alan Gilbert
2020-02-18  9:49     ` Dr. David Alan Gilbert
2020-02-18 10:26   ` Juan Quintela
2020-02-18 10:26     ` Juan Quintela
2020-02-18 10:26     ` Juan Quintela
2020-02-18 10:46   ` Luc Michel
2020-02-18 10:46     ` Luc Michel
2020-02-18 10:46     ` Luc Michel
2020-02-18  9:43 ` [PATCH RESEND 02/13] audio/alsaaudio: Remove superfluous semicolons Philippe Mathieu-Daudé
2020-02-18  9:43   ` Philippe Mathieu-Daudé
2020-02-18  9:43   ` Philippe Mathieu-Daudé
2020-02-18  9:50   ` Dr. David Alan Gilbert
2020-02-18  9:50     ` Dr. David Alan Gilbert
2020-02-18  9:50     ` Dr. David Alan Gilbert
2020-02-18 10:26   ` Juan Quintela
2020-02-18 10:26     ` Juan Quintela
2020-02-18 10:26     ` Juan Quintela
2020-02-18  9:43 ` [PATCH RESEND 03/13] block: " Philippe Mathieu-Daudé
2020-02-18  9:43   ` Philippe Mathieu-Daudé
2020-02-18  9:43   ` Philippe Mathieu-Daudé
2020-02-18  9:52   ` Dr. David Alan Gilbert
2020-02-18  9:52     ` Dr. David Alan Gilbert
2020-02-18  9:52     ` Dr. David Alan Gilbert
2020-02-18 10:28   ` Juan Quintela
2020-02-18 10:28     ` Juan Quintela
2020-02-18  9:43 ` [PATCH RESEND 04/13] block/io_uring: Remove superfluous semicolon Philippe Mathieu-Daudé
2020-02-18  9:43   ` Philippe Mathieu-Daudé
2020-02-18  9:52   ` Dr. David Alan Gilbert
2020-02-18  9:52     ` Dr. David Alan Gilbert
2020-02-18  9:52     ` Dr. David Alan Gilbert
2020-02-18  9:55   ` Kevin Wolf
2020-02-18  9:55     ` Kevin Wolf
2020-02-18  9:55     ` Kevin Wolf
2020-02-18  9:55   ` Stefano Garzarella
2020-02-18  9:55     ` Stefano Garzarella
2020-02-18 10:29   ` Juan Quintela
2020-02-18 10:29     ` Juan Quintela
2020-02-18 10:29     ` Juan Quintela
2020-02-18  9:43 ` [PATCH RESEND 05/13] hw/arm/xlnx-versal: " Philippe Mathieu-Daudé
2020-02-18  9:43   ` Philippe Mathieu-Daudé
2020-02-18  9:43   ` Philippe Mathieu-Daudé
2020-02-18  9:53   ` Dr. David Alan Gilbert
2020-02-18  9:53     ` Dr. David Alan Gilbert
2020-02-18  9:53     ` Dr. David Alan Gilbert
2020-02-18 10:29   ` Juan Quintela
2020-02-18 10:29     ` Juan Quintela
2020-02-18 10:29     ` Juan Quintela
2020-02-18  9:43 ` [PATCH RESEND 06/13] hw/m68k/next-cube: " Philippe Mathieu-Daudé
2020-02-18  9:43   ` Philippe Mathieu-Daudé
2020-02-18  9:43   ` Philippe Mathieu-Daudé
2020-02-18  9:55   ` Dr. David Alan Gilbert
2020-02-18  9:55     ` Dr. David Alan Gilbert
2020-02-18  9:55     ` Dr. David Alan Gilbert
2020-02-18 10:30   ` Juan Quintela
2020-02-18 10:30     ` Juan Quintela
2020-02-18  9:43 ` [PATCH RESEND 07/13] hw/scsi/esp: " Philippe Mathieu-Daudé
2020-02-18  9:43   ` Philippe Mathieu-Daudé
2020-02-18  9:43   ` Philippe Mathieu-Daudé
2020-02-18  9:56   ` Dr. David Alan Gilbert
2020-02-18  9:56     ` Dr. David Alan Gilbert
2020-02-18  9:56     ` Dr. David Alan Gilbert
2020-02-18 10:30   ` Juan Quintela
2020-02-18 10:30     ` Juan Quintela
2020-02-18 10:30     ` Juan Quintela
2020-02-18  9:43 ` [PATCH RESEND 08/13] hw/vfio/display: " Philippe Mathieu-Daudé
2020-02-18  9:43   ` Philippe Mathieu-Daudé
2020-02-18  9:43   ` Philippe Mathieu-Daudé
2020-02-18  9:58   ` Dr. David Alan Gilbert
2020-02-18  9:58     ` Dr. David Alan Gilbert
2020-02-18  9:58     ` Dr. David Alan Gilbert
2020-02-18 10:31   ` Juan Quintela
2020-02-18 10:31     ` Juan Quintela
2020-02-18 10:31     ` Juan Quintela
2020-02-18  9:43 ` [PATCH RESEND 09/13] migration/multifd: " Philippe Mathieu-Daudé
2020-02-18  9:43   ` Philippe Mathieu-Daudé
2020-02-18  9:43   ` Philippe Mathieu-Daudé
2020-02-18  9:58   ` Dr. David Alan Gilbert
2020-02-18  9:58     ` Dr. David Alan Gilbert
2020-02-18  9:58     ` Dr. David Alan Gilbert
2020-02-18 10:27   ` Juan Quintela
2020-02-18 10:27     ` Juan Quintela
2020-02-18 10:31   ` Juan Quintela
2020-02-18 10:31     ` Juan Quintela
2020-02-18  9:43 ` [PATCH RESEND 10/13] ui/input-barrier: " Philippe Mathieu-Daudé
2020-02-18  9:43   ` Philippe Mathieu-Daudé
2020-02-18  9:59   ` Dr. David Alan Gilbert
2020-02-18  9:59     ` Dr. David Alan Gilbert
2020-02-18 10:32   ` Juan Quintela
2020-02-18 10:32     ` Juan Quintela
2020-02-18 10:32     ` Juan Quintela
2020-02-18  9:44 ` [PATCH RESEND 11/13] target/i386/whpx: " Philippe Mathieu-Daudé
2020-02-18  9:44   ` Philippe Mathieu-Daudé
2020-02-18 10:00   ` Dr. David Alan Gilbert
2020-02-18 10:00     ` Dr. David Alan Gilbert
2020-02-18 10:00     ` Dr. David Alan Gilbert
2020-02-20 17:30     ` [EXTERNAL] " Justin Terry (SF)
2020-02-18 10:33   ` Juan Quintela
2020-02-18 10:33     ` Juan Quintela
2020-02-18 10:33     ` Juan Quintela
2020-02-18  9:44 ` [PATCH RESEND 12/13] tests/qtest/libqos/qgraph: Remove superfluous semicolons Philippe Mathieu-Daudé
2020-02-18  9:44   ` Philippe Mathieu-Daudé
2020-02-18  9:44   ` Philippe Mathieu-Daudé
2020-02-18 10:05   ` Dr. David Alan Gilbert
2020-02-18 10:05     ` Dr. David Alan Gilbert
2020-02-18 10:05     ` Dr. David Alan Gilbert
2020-02-18 10:33   ` Juan Quintela
2020-02-18 10:33     ` Juan Quintela
2020-02-18 10:33     ` Juan Quintela
2020-02-18  9:44 ` [PATCH RESEND 13/13] contrib/rdmacm-mux: Remove superfluous semicolon Philippe Mathieu-Daudé
2020-02-18  9:44   ` Philippe Mathieu-Daudé
2020-02-18  9:44   ` Philippe Mathieu-Daudé
2020-02-18 10:07   ` Dr. David Alan Gilbert
2020-02-18 10:07     ` Dr. David Alan Gilbert
2020-02-18 10:07     ` Dr. David Alan Gilbert
2020-02-18 10:28   ` Juan Quintela
2020-02-18 10:28     ` Juan Quintela
2020-02-18 10:28     ` Juan Quintela
2020-02-18 17:04 ` [PATCH RESEND 00/13] trivial: Detect and remove superfluous semicolons in C code Paolo Bonzini
2020-02-18 17:04   ` Paolo Bonzini
2020-02-18 17:04   ` Paolo Bonzini
2020-02-18 18:54   ` Laurent Vivier
2020-02-18 18:54     ` Laurent Vivier
2020-02-18 18:54     ` Laurent Vivier
2020-02-18 19:08   ` Laurent Vivier
2020-02-18 19:08     ` Laurent Vivier

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=20200218094402.26625-1-philmd@redhat.com \
    --to=philmd@redhat.com \
    --cc=alex.williamson@redhat.com \
    --cc=alistair@alistair23.me \
    --cc=dgilbert@redhat.com \
    --cc=edgar.iglesias@gmail.com \
    --cc=ehabkost@redhat.com \
    --cc=fam@euphon.net \
    --cc=huth@tuxfamily.org \
    --cc=jusual@redhat.com \
    --cc=kraxel@redhat.com \
    --cc=kwolf@redhat.com \
    --cc=laurent@vivier.eu \
    --cc=luc.michel@greensocs.com \
    --cc=lvivier@redhat.com \
    --cc=marcel.apfelbaum@gmail.com \
    --cc=mehta.aaru20@gmail.com \
    --cc=mjt@tls.msk.ru \
    --cc=mreitz@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-arm@nongnu.org \
    --cc=qemu-block@nongnu.org \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-trivial@nongnu.org \
    --cc=quintela@redhat.com \
    --cc=rth@twiddle.net \
    --cc=stefanha@redhat.com \
    --cc=thuth@redhat.com \
    --cc=yuval.shaia.ml@gmail.com \
    /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.