qemu-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-commits] [qemu/qemu] aa7358: scripts/clean-includes: Fully skip /


From: Peter Maydell
Subject: [Qemu-commits] [qemu/qemu] aa7358: scripts/clean-includes: Fully skip / ignore files
Date: Wed, 08 Feb 2023 05:28:21 -0800

  Branch: refs/heads/master
  Home:   https://github.com/qemu/qemu
  Commit: aa735872a879075d1e9d669c8d5737f41232a3e3
      
https://github.com/qemu/qemu/commit/aa735872a879075d1e9d669c8d5737f41232a3e3
  Author: Markus Armbruster <armbru@redhat.com>
  Date:   2023-02-08 (Wed, 08 Feb 2023)

  Changed paths:
    M scripts/clean-includes

  Log Message:
  -----------
  scripts/clean-includes: Fully skip / ignore files

When clean-includes claims to skip or ignore a file, only the part
that sanitizes use of qemu/osdep.h skips the file.  The part that
looks for duplicate #include does not, and neither does committing to
Git.

The latter can get unrelated stuff included in the commit, but only if
you run clean-includes in a dirty tree, which is unwise.  Messed up
when we added skipping in commit fd3e39a40c "scripts/clean-includes:
Enhance to handle header files".

The former can cause bogus reports for --check-dup-head.  Added in
commit d66253e46a "scripts/clean-includes: added duplicate #include
check", duplicating the prior mistake.

Fix the script to fully skip files.

Fixes: fd3e39a40ca2 ("scripts/clean-includes: Enhance to handle header files")
Fixes: d66253e46ae2 ("scripts/clean-includes: added duplicate #include check")
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Message-Id: <20230202133830.2152150-2-armbru@redhat.com>


  Commit: 2555150244393a8cf433d6762c265b1e89c70be4
      
https://github.com/qemu/qemu/commit/2555150244393a8cf433d6762c265b1e89c70be4
  Author: Markus Armbruster <armbru@redhat.com>
  Date:   2023-02-08 (Wed, 08 Feb 2023)

  Changed paths:
    M scripts/clean-includes

  Log Message:
  -----------
  scripts/clean-includes: Don't claim duplicate headers found when not

When running with --check-dup-head, the script always claims it "Found
duplicate header file includes."  Fix to do it only when it actually
found some.

Fixes: d66253e46ae2 ("scripts/clean-includes: added duplicate #include check")
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Message-Id: <20230202133830.2152150-3-armbru@redhat.com>


  Commit: 6a7f0515fd8f12377622dbbda1e794f28511192d
      
https://github.com/qemu/qemu/commit/6a7f0515fd8f12377622dbbda1e794f28511192d
  Author: Markus Armbruster <armbru@redhat.com>
  Date:   2023-02-08 (Wed, 08 Feb 2023)

  Changed paths:
    M scripts/clean-includes

  Log Message:
  -----------
  scripts/clean-includes: Skip symbolic links

When a symbolic link points to a file that needs cleaning, the script
replaces the link with a cleaned regular file.  Not wanted; skip them.

We have a few symbolic links under subprojects/libvduse/ and
subprojects/libvhost-user/.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Message-Id: <20230202133830.2152150-4-armbru@redhat.com>


  Commit: d598d9746e87cea8e92acd0d4f4320fe5d854440
      
https://github.com/qemu/qemu/commit/d598d9746e87cea8e92acd0d4f4320fe5d854440
  Author: Markus Armbruster <armbru@redhat.com>
  Date:   2023-02-08 (Wed, 08 Feb 2023)

  Changed paths:
    M scripts/clean-includes

  Log Message:
  -----------
  scripts/clean-includes: Improve --git commit message

The script drops #include "qemu/osdep.h" from headers.  Mention it in
the commit message it uses for --git.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Juan Quintela <quintela@redhat.com>
Message-Id: <20230202133830.2152150-5-armbru@redhat.com>


  Commit: 48e438a3aaf9697d69902dd7f16c0655142dfa8e
      
https://github.com/qemu/qemu/commit/48e438a3aaf9697d69902dd7f16c0655142dfa8e
  Author: Markus Armbruster <armbru@redhat.com>
  Date:   2023-02-08 (Wed, 08 Feb 2023)

  Changed paths:
    M bsd-user/arm/signal.c
    M bsd-user/arm/target_arch_cpu.c
    M bsd-user/bsd-proc.h
    M bsd-user/freebsd/os-sys.c
    M bsd-user/i386/signal.c
    M bsd-user/i386/target_arch_cpu.c
    M bsd-user/main.c
    M bsd-user/qemu.h
    M bsd-user/strace.c
    M bsd-user/x86_64/signal.c
    M bsd-user/x86_64/target_arch_cpu.c

  Log Message:
  -----------
  bsd-user: Clean up includes

This commit was created with scripts/clean-includes.

All .c should include qemu/osdep.h first.  The script performs three
related cleanups:

* Ensure .c files include qemu/osdep.h first.
* Including it in a .h is redundant, since the .c  already includes
  it.  Drop such inclusions.
* Likewise, including headers qemu/osdep.h includes is redundant.
  Drop these, too.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Warner Losh <imp@bsdimp.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Message-Id: <20230202133830.2152150-6-armbru@redhat.com>


  Commit: f4124f831d29982f95cb53dd77b85be4643b4ced
      
https://github.com/qemu/qemu/commit/f4124f831d29982f95cb53dd77b85be4643b4ced
  Author: Markus Armbruster <armbru@redhat.com>
  Date:   2023-02-08 (Wed, 08 Feb 2023)

  Changed paths:
    M crypto/block-luks-priv.h

  Log Message:
  -----------
  crypto: Clean up includes

This commit was created with scripts/clean-includes.

All .c should include qemu/osdep.h first.  The script performs three
related cleanups:

* Ensure .c files include qemu/osdep.h first.
* Including it in a .h is redundant, since the .c  already includes
  it.  Drop such inclusions.
* Likewise, including headers qemu/osdep.h includes is redundant.
  Drop these, too.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Message-Id: <20230202133830.2152150-7-armbru@redhat.com>


  Commit: d90b1e42362950ad31a4b143416d78a33a894294
      
https://github.com/qemu/qemu/commit/d90b1e42362950ad31a4b143416d78a33a894294
  Author: Markus Armbruster <armbru@redhat.com>
  Date:   2023-02-08 (Wed, 08 Feb 2023)

  Changed paths:
    M include/hw/cxl/cxl_component.h
    M include/hw/cxl/cxl_host.h
    M include/hw/cxl/cxl_pci.h

  Log Message:
  -----------
  hw/cxl: Clean up includes

This commit was created with scripts/clean-includes.

All .c should include qemu/osdep.h first.  The script performs three
related cleanups:

* Ensure .c files include qemu/osdep.h first.
* Including it in a .h is redundant, since the .c  already includes
  it.  Drop such inclusions.
* Likewise, including headers qemu/osdep.h includes is redundant.
  Drop these, too.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Message-Id: <20230202133830.2152150-8-armbru@redhat.com>
Acked-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>


  Commit: 626fb3c6a884583a425672f34c3837ed99365b27
      
https://github.com/qemu/qemu/commit/626fb3c6a884583a425672f34c3837ed99365b27
  Author: Markus Armbruster <armbru@redhat.com>
  Date:   2023-02-08 (Wed, 08 Feb 2023)

  Changed paths:
    M hw/input/tsc210x.c
    M include/hw/input/pl050.h

  Log Message:
  -----------
  hw/input: Clean up includes

This commit was created with scripts/clean-includes.

All .c should include qemu/osdep.h first.  The script performs three
related cleanups:

* Ensure .c files include qemu/osdep.h first.
* Including it in a .h is redundant, since the .c  already includes
  it.  Drop such inclusions.
* Likewise, including headers qemu/osdep.h includes is redundant.
  Drop these, too.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Message-Id: <20230202133830.2152150-9-armbru@redhat.com>


  Commit: e09458005068c38f235e53cc4b079c200470b88b
      
https://github.com/qemu/qemu/commit/e09458005068c38f235e53cc4b079c200470b88b
  Author: Markus Armbruster <armbru@redhat.com>
  Date:   2023-02-08 (Wed, 08 Feb 2023)

  Changed paths:
    M include/hw/tricore/triboard.h

  Log Message:
  -----------
  hw/tricore: Clean up includes

This commit was created with scripts/clean-includes.

All .c should include qemu/osdep.h first.  The script performs three
related cleanups:

* Ensure .c files include qemu/osdep.h first.
* Including it in a .h is redundant, since the .c  already includes
  it.  Drop such inclusions.
* Likewise, including headers qemu/osdep.h includes is redundant.
  Drop these, too.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Message-Id: <20230202133830.2152150-10-armbru@redhat.com>


  Commit: c12a9848148bb3babf9a29bd965d82f79ecfba27
      
https://github.com/qemu/qemu/commit/c12a9848148bb3babf9a29bd965d82f79ecfba27
  Author: Markus Armbruster <armbru@redhat.com>
  Date:   2023-02-08 (Wed, 08 Feb 2023)

  Changed paths:
    M qga/commands-posix.c
    M qga/cutils.c
    M qga/cutils.h

  Log Message:
  -----------
  qga: Clean up includes

This commit was created with scripts/clean-includes.

All .c should include qemu/osdep.h first.  The script performs three
related cleanups:

* Ensure .c files include qemu/osdep.h first.
* Including it in a .h is redundant, since the .c  already includes
  it.  Drop such inclusions.
* Likewise, including headers qemu/osdep.h includes is redundant.
  Drop these, too.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Konstantin Kostiuk <kkostiuk@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Message-Id: <20230202133830.2152150-11-armbru@redhat.com>


  Commit: c0e38aa8f58d0cf39c9feec3e3f75615b768d520
      
https://github.com/qemu/qemu/commit/c0e38aa8f58d0cf39c9feec3e3f75615b768d520
  Author: Markus Armbruster <armbru@redhat.com>
  Date:   2023-02-08 (Wed, 08 Feb 2023)

  Changed paths:
    M include/qemu/userfaultfd.h

  Log Message:
  -----------
  migration: Clean up includes

This commit was created with scripts/clean-includes.

All .c should include qemu/osdep.h first.  The script performs three
related cleanups:

* Ensure .c files include qemu/osdep.h first.
* Including it in a .h is redundant, since the .c  already includes
  it.  Drop such inclusions.
* Likewise, including headers qemu/osdep.h includes is redundant.
  Drop these, too.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Juan Quintela <quintela@redhat.com>
Message-Id: <20230202133830.2152150-12-armbru@redhat.com>
[Straightforward conflict with commit d5890ea0722 resolved]


  Commit: e02e085c8b88b4f78ab56dbd57da8b7952b73d54
      
https://github.com/qemu/qemu/commit/e02e085c8b88b4f78ab56dbd57da8b7952b73d54
  Author: Markus Armbruster <armbru@redhat.com>
  Date:   2023-02-08 (Wed, 08 Feb 2023)

  Changed paths:
    M net/vmnet_int.h

  Log Message:
  -----------
  net: Clean up includes

This commit was created with scripts/clean-includes.

All .c should include qemu/osdep.h first.  The script performs three
related cleanups:

* Ensure .c files include qemu/osdep.h first.
* Including it in a .h is redundant, since the .c  already includes
  it.  Drop such inclusions.
* Likewise, including headers qemu/osdep.h includes is redundant.
  Drop these, too.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Message-Id: <20230202133830.2152150-13-armbru@redhat.com>


  Commit: 1beb07ca8a95e202d525fbdceb2a9209d253b971
      
https://github.com/qemu/qemu/commit/1beb07ca8a95e202d525fbdceb2a9209d253b971
  Author: Markus Armbruster <armbru@redhat.com>
  Date:   2023-02-08 (Wed, 08 Feb 2023)

  Changed paths:
    M target/hexagon/hex_arch_types.h
    M target/hexagon/mmvec/macros.h

  Log Message:
  -----------
  target/hexagon: Clean up includes

This commit was created with scripts/clean-includes.

All .c should include qemu/osdep.h first.  The script performs three
related cleanups:

* Ensure .c files include qemu/osdep.h first.
* Including it in a .h is redundant, since the .c  already includes
  it.  Drop such inclusions.
* Likewise, including headers qemu/osdep.h includes is redundant.
  Drop these, too.

Changes to standalone programs dropped, because these intentionally
don't use qemu/osdep.h:

    target/hexagon/gen_dectree_import.c
    target/hexagon/gen_semantics.c
    target/hexagon/idef-parser/idef-parser.h
    target/hexagon/idef-parser/parser-helpers.c
    target/hexagon/idef-parser/parser-helpers.h

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Taylor Simpson <tsimpson@quicinc.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Message-Id: <20230202133830.2152150-14-armbru@redhat.com>


  Commit: 06e2b0107fedf9ebef2d175a06a66c82015af11b
      
https://github.com/qemu/qemu/commit/06e2b0107fedf9ebef2d175a06a66c82015af11b
  Author: Markus Armbruster <armbru@redhat.com>
  Date:   2023-02-08 (Wed, 08 Feb 2023)

  Changed paths:
    M target/riscv/pmu.h

  Log Message:
  -----------
  riscv: Clean up includes

This commit was created with scripts/clean-includes.

All .c should include qemu/osdep.h first.  The script performs three
related cleanups:

* Ensure .c files include qemu/osdep.h first.
* Including it in a .h is redundant, since the .c  already includes
  it.  Drop such inclusions.
* Likewise, including headers qemu/osdep.h includes is redundant.
  Drop these, too.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Message-Id: <20230202133830.2152150-15-armbru@redhat.com>


  Commit: 02f95e91a66bf4027317591090350e3fb7e700de
      
https://github.com/qemu/qemu/commit/02f95e91a66bf4027317591090350e3fb7e700de
  Author: Markus Armbruster <armbru@redhat.com>
  Date:   2023-02-08 (Wed, 08 Feb 2023)

  Changed paths:
    M block/qapi.c
    M include/block/graph-lock.h
    M include/block/write-threshold.h

  Log Message:
  -----------
  block: Clean up includes

This commit was created with scripts/clean-includes.

All .c should include qemu/osdep.h first.  The script performs three
related cleanups:

* Ensure .c files include qemu/osdep.h first.
* Including it in a .h is redundant, since the .c  already includes
  it.  Drop such inclusions.
* Likewise, including headers qemu/osdep.h includes is redundant.
  Drop these, too.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Message-Id: <20230202133830.2152150-16-armbru@redhat.com>


  Commit: d35d5047a68e45020102aa4ad8e4be8ce6934600
      
https://github.com/qemu/qemu/commit/d35d5047a68e45020102aa4ad8e4be8ce6934600
  Author: Markus Armbruster <armbru@redhat.com>
  Date:   2023-02-08 (Wed, 08 Feb 2023)

  Changed paths:
    M include/sysemu/accel-blocker.h

  Log Message:
  -----------
  accel: Clean up includes

This commit was created with scripts/clean-includes.

All .c should include qemu/osdep.h first.  The script performs three
related cleanups:

* Ensure .c files include qemu/osdep.h first.
* Including it in a .h is redundant, since the .c  already includes
  it.  Drop such inclusions.
* Likewise, including headers qemu/osdep.h includes is redundant.
  Drop these, too.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Message-Id: <20230202133830.2152150-17-armbru@redhat.com>


  Commit: 2ca10faeb85e3c1b87e10bb46786445a5a879bbd
      
https://github.com/qemu/qemu/commit/2ca10faeb85e3c1b87e10bb46786445a5a879bbd
  Author: Markus Armbruster <armbru@redhat.com>
  Date:   2023-02-08 (Wed, 08 Feb 2023)

  Changed paths:
    M audio/sndioaudio.c
    M backends/hostmem-epc.c
    M block/export/vduse-blk.c
    M hw/hyperv/syndbg.c
    M util/async-teardown.c

  Log Message:
  -----------
  Fix non-first inclusions of qemu/osdep.h

This commit was created with scripts/clean-includes.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Juan Quintela <quintela@redhat.com>
Message-Id: <20230202133830.2152150-18-armbru@redhat.com>


  Commit: bfe7bf8590a74aebd572abe56927b53f4978ab42
      
https://github.com/qemu/qemu/commit/bfe7bf8590a74aebd572abe56927b53f4978ab42
  Author: Markus Armbruster <armbru@redhat.com>
  Date:   2023-02-08 (Wed, 08 Feb 2023)

  Changed paths:
    M accel/tcg/cpu-exec.c
    M backends/tpm/tpm_ioctl.h
    M fsdev/p9array.h
    M hw/9pfs/9p.c
    M hw/display/virtio-gpu-udmabuf.c
    M hw/i2c/pmbus_device.c
    M hw/remote/proxy-memory-listener.c
    M hw/sensor/adm1272.c
    M hw/usb/dev-storage-bot.c
    M hw/usb/dev-storage-classic.c
    M include/hw/misc/aspeed_lpc.h
    M include/hw/pci/pcie_doe.h
    M include/qemu/async-teardown.h
    M include/qemu/dbus.h
    M include/qemu/host-utils.h
    M include/sysemu/event-loop-base.h
    M softmmu/vl.c
    M tcg/tci.c
    M tests/unit/test-seccomp.c
    M ui/udmabuf.c
    M util/main-loop.c
    M util/oslib-posix.c

  Log Message:
  -----------
  Don't include headers already included by qemu/osdep.h

This commit was created with scripts/clean-includes.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Acked-by: Christian Schoenebeck <qemu_oss@crudebyte.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Message-Id: <20230202133830.2152150-19-armbru@redhat.com>


  Commit: a67dfa660b0dd944c8fedfac02806de75b0c08b1
      
https://github.com/qemu/qemu/commit/a67dfa660b0dd944c8fedfac02806de75b0c08b1
  Author: Markus Armbruster <armbru@redhat.com>
  Date:   2023-02-08 (Wed, 08 Feb 2023)

  Changed paths:
    M backends/tpm/tpm_emulator.c
    M hw/acpi/piix4.c
    M hw/alpha/dp264.c
    M hw/arm/virt.c
    M hw/arm/xlnx-versal.c
    M hw/block/pflash_cfi01.c
    M hw/core/machine.c
    M hw/hppa/machine.c
    M hw/i386/acpi-build.c
    M hw/loongarch/acpi-build.c
    M hw/misc/macio/cuda.c
    M hw/misc/macio/pmu.c
    M hw/net/xilinx_axienet.c
    M hw/ppc/ppc405_uc.c
    M hw/ppc/ppc440_bamboo.c
    M hw/ppc/spapr_drc.c
    M hw/rdma/vmw/pvrdma_dev_ring.c
    M hw/remote/machine.c
    M hw/remote/remote-obj.c
    M hw/rtc/mc146818rtc.c
    M hw/s390x/virtio-ccw-serial.c
    M include/hw/arm/fsl-imx6ul.h
    M include/hw/arm/fsl-imx7.h
    M migration/postcopy-ram.c
    M softmmu/dirtylimit.c
    M softmmu/runstate.c
    M softmmu/vl.c
    M target/loongarch/translate.c
    M target/mips/tcg/translate.c
    M target/nios2/translate.c
    M tests/unit/test-cutils.c
    M ui/gtk.c
    M util/oslib-posix.c

  Log Message:
  -----------
  Drop duplicate #include

Tracked down with the help of scripts/clean-includes.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Acked-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Reviewed-by: Greg Kurz <groug@kaod.org>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Juan Quintela <quintela@redhat.com>
Message-Id: <20230202133830.2152150-21-armbru@redhat.com>


  Commit: ae2b5d8381a73b27f35f19c988d45c78bb4d5768
      
https://github.com/qemu/qemu/commit/ae2b5d8381a73b27f35f19c988d45c78bb4d5768
  Author: Peter Maydell <peter.maydell@linaro.org>
  Date:   2023-02-08 (Wed, 08 Feb 2023)

  Changed paths:
    M accel/tcg/cpu-exec.c
    M audio/sndioaudio.c
    M backends/hostmem-epc.c
    M backends/tpm/tpm_emulator.c
    M backends/tpm/tpm_ioctl.h
    M block/export/vduse-blk.c
    M block/qapi.c
    M bsd-user/arm/signal.c
    M bsd-user/arm/target_arch_cpu.c
    M bsd-user/bsd-proc.h
    M bsd-user/freebsd/os-sys.c
    M bsd-user/i386/signal.c
    M bsd-user/i386/target_arch_cpu.c
    M bsd-user/main.c
    M bsd-user/qemu.h
    M bsd-user/strace.c
    M bsd-user/x86_64/signal.c
    M bsd-user/x86_64/target_arch_cpu.c
    M crypto/block-luks-priv.h
    M fsdev/p9array.h
    M hw/9pfs/9p.c
    M hw/acpi/piix4.c
    M hw/alpha/dp264.c
    M hw/arm/virt.c
    M hw/arm/xlnx-versal.c
    M hw/block/pflash_cfi01.c
    M hw/core/machine.c
    M hw/display/virtio-gpu-udmabuf.c
    M hw/hppa/machine.c
    M hw/hyperv/syndbg.c
    M hw/i2c/pmbus_device.c
    M hw/i386/acpi-build.c
    M hw/input/tsc210x.c
    M hw/loongarch/acpi-build.c
    M hw/misc/macio/cuda.c
    M hw/misc/macio/pmu.c
    M hw/net/xilinx_axienet.c
    M hw/ppc/ppc405_uc.c
    M hw/ppc/ppc440_bamboo.c
    M hw/ppc/spapr_drc.c
    M hw/rdma/vmw/pvrdma_dev_ring.c
    M hw/remote/machine.c
    M hw/remote/proxy-memory-listener.c
    M hw/remote/remote-obj.c
    M hw/rtc/mc146818rtc.c
    M hw/s390x/virtio-ccw-serial.c
    M hw/sensor/adm1272.c
    M hw/usb/dev-storage-bot.c
    M hw/usb/dev-storage-classic.c
    M include/block/graph-lock.h
    M include/block/write-threshold.h
    M include/hw/arm/fsl-imx6ul.h
    M include/hw/arm/fsl-imx7.h
    M include/hw/cxl/cxl_component.h
    M include/hw/cxl/cxl_host.h
    M include/hw/cxl/cxl_pci.h
    M include/hw/input/pl050.h
    M include/hw/misc/aspeed_lpc.h
    M include/hw/pci/pcie_doe.h
    M include/hw/tricore/triboard.h
    M include/qemu/async-teardown.h
    M include/qemu/dbus.h
    M include/qemu/host-utils.h
    M include/qemu/userfaultfd.h
    M include/sysemu/accel-blocker.h
    M include/sysemu/event-loop-base.h
    M migration/postcopy-ram.c
    M net/vmnet_int.h
    M qga/commands-posix.c
    M qga/cutils.c
    M qga/cutils.h
    M scripts/clean-includes
    M softmmu/dirtylimit.c
    M softmmu/runstate.c
    M softmmu/vl.c
    M target/hexagon/hex_arch_types.h
    M target/hexagon/mmvec/macros.h
    M target/loongarch/translate.c
    M target/mips/tcg/translate.c
    M target/nios2/translate.c
    M target/riscv/pmu.h
    M tcg/tci.c
    M tests/unit/test-cutils.c
    M tests/unit/test-seccomp.c
    M ui/gtk.c
    M ui/udmabuf.c
    M util/async-teardown.c
    M util/main-loop.c
    M util/oslib-posix.c

  Log Message:
  -----------
  Merge tag 'pull-include-2023-02-06-v2' of https://repo.or.cz/qemu/armbru into 
staging

Header cleanup patches for 2023-02-06

# -----BEGIN PGP SIGNATURE-----
#
# iQJGBAABCAAwFiEENUvIs9frKmtoZ05fOHC0AOuRhlMFAmPjQRUSHGFybWJydUBy
# ZWRoYXQuY29tAAoJEDhwtADrkYZTWHwQAI5D2HTRt3peFSPg/tFuYqSGtOobzM5x
# xdZxjWCtGV+dZ4TsyQ7yJkQ2i6aPjs0LzmTnTIsmf+p1OJSthvp4fQUzfXQauiJy
# OnNA76v7WjiXB8u8tcXtEkkHNmccp8n4KMjk33TfK/HQVx7lZ2EFurlCkvBr5wki
# FuDVad6R43ChmvBWdCUOi6G1IklAihm8AN4lBJu3iC7U8bjW4FmLLMitcu5OyKgt
# v9V4XFAe4eYUIPZ6uH5Lpr5m/qtrRXLe9KOdRUR2vDVL18Cf6Zl7mrUNtv7iV5TI
# hBOA12ZP5XXf81FXl7e8y3Xi2KXvb/el0wQ7SvtE7XB3Pdbfa5WSGKOc3VxYLmBA
# 4xUnEbzAogrrruovdk1bmh2LnVzCH66m72xaLCHBvjOU3M6V2B0eeaZ35FxNuFcB
# toHPAjeuzWkDAscVYcYKuPwnkNOMNqHxEdihrgy6mYLr6nauIYr7Lqgs3SqGqpct
# /HGy683+J+AqnHFTk1MTRftDxqk/Nku6ntAxLXndkpm3uDvu+iV5d3BfK3A9t7d1
# A2Y983DU6SiVwpMIv2eDL8sXYxuwIs56ZmPYIcSbqzpCXtdFqwWOTeFET/4vD+8t
# V3YKJ27jmWQ9bxbLHGPPYSKheuCVBIGsqxouE/Pbj5nXRKm/TeGp+20a4dWdE08r
# 2WTLAQbVQGD4
# =5TPW
# -----END PGP SIGNATURE-----
# gpg: Signature made Wed 08 Feb 2023 06:28:37 GMT
# gpg:                using RSA key 354BC8B3D7EB2A6B68674E5F3870B400EB918653
# gpg:                issuer "armbru@redhat.com"
# gpg: Good signature from "Markus Armbruster <armbru@redhat.com>" [full]
# gpg:                 aka "Markus Armbruster <armbru@pond.sub.org>" [full]
# Primary key fingerprint: 354B C8B3 D7EB 2A6B 6867  4E5F 3870 B400 EB91 8653

* tag 'pull-include-2023-02-06-v2' of https://repo.or.cz/qemu/armbru:
  Drop duplicate #include
  Don't include headers already included by qemu/osdep.h
  Fix non-first inclusions of qemu/osdep.h
  accel: Clean up includes
  block: Clean up includes
  riscv: Clean up includes
  target/hexagon: Clean up includes
  net: Clean up includes
  migration: Clean up includes
  qga: Clean up includes
  hw/tricore: Clean up includes
  hw/input: Clean up includes
  hw/cxl: Clean up includes
  crypto: Clean up includes
  bsd-user: Clean up includes
  scripts/clean-includes: Improve --git commit message
  scripts/clean-includes: Skip symbolic links
  scripts/clean-includes: Don't claim duplicate headers found when not
  scripts/clean-includes: Fully skip / ignore files

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>


Compare: https://github.com/qemu/qemu/compare/6b433719eabf...ae2b5d8381a7



reply via email to

[Prev in Thread] Current Thread [Next in Thread]