qemu-commits
[Top][All Lists]
Advanced

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

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


From: Peter Maydell
Subject: [Qemu-commits] [qemu/qemu] 806c9f: scripts/clean-includes: Fully skip / ignore files
Date: Tue, 07 Feb 2023 09:01:04 -0800

  Branch: refs/heads/staging
  Home:   https://github.com/qemu/qemu
  Commit: 806c9f1181fa912bebf40c16dbd678d83bd73805
      
https://github.com/qemu/qemu/commit/806c9f1181fa912bebf40c16dbd678d83bd73805
  Author: Markus Armbruster <armbru@redhat.com>
  Date:   2023-02-06 (Mon, 06 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: 33dd7b4b68b62dd343e14af13291035e86c9dc98
      
https://github.com/qemu/qemu/commit/33dd7b4b68b62dd343e14af13291035e86c9dc98
  Author: Markus Armbruster <armbru@redhat.com>
  Date:   2023-02-06 (Mon, 06 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: 49d44cb7433dea2a0841be30b0f12f31c32d536b
      
https://github.com/qemu/qemu/commit/49d44cb7433dea2a0841be30b0f12f31c32d536b
  Author: Markus Armbruster <armbru@redhat.com>
  Date:   2023-02-06 (Mon, 06 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: 316751f7e3ae10d7bef89b8a46260d380e83567e
      
https://github.com/qemu/qemu/commit/316751f7e3ae10d7bef89b8a46260d380e83567e
  Author: Markus Armbruster <armbru@redhat.com>
  Date:   2023-02-06 (Mon, 06 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: 632ad37c614e1bcf25aed97165a7ab320c7f5bb3
      
https://github.com/qemu/qemu/commit/632ad37c614e1bcf25aed97165a7ab320c7f5bb3
  Author: Markus Armbruster <armbru@redhat.com>
  Date:   2023-02-06 (Mon, 06 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: b6761bd8f17f294038edae86a367584d05dba146
      
https://github.com/qemu/qemu/commit/b6761bd8f17f294038edae86a367584d05dba146
  Author: Markus Armbruster <armbru@redhat.com>
  Date:   2023-02-06 (Mon, 06 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: 383c1ca7e59d42e127be649f1e80581aa0cd38ea
      
https://github.com/qemu/qemu/commit/383c1ca7e59d42e127be649f1e80581aa0cd38ea
  Author: Markus Armbruster <armbru@redhat.com>
  Date:   2023-02-06 (Mon, 06 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: a0fce09758798141b6422a1d657fd069b243f847
      
https://github.com/qemu/qemu/commit/a0fce09758798141b6422a1d657fd069b243f847
  Author: Markus Armbruster <armbru@redhat.com>
  Date:   2023-02-06 (Mon, 06 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: 5a033be6c699fe50e827843d5fc36c5ef4074ee7
      
https://github.com/qemu/qemu/commit/5a033be6c699fe50e827843d5fc36c5ef4074ee7
  Author: Markus Armbruster <armbru@redhat.com>
  Date:   2023-02-06 (Mon, 06 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: 219d350b706a26a6d85d22101c63e8611b7cb52c
      
https://github.com/qemu/qemu/commit/219d350b706a26a6d85d22101c63e8611b7cb52c
  Author: Markus Armbruster <armbru@redhat.com>
  Date:   2023-02-06 (Mon, 06 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: b54490a2f87f02a1eda4a4302e93539528bef5e6
      
https://github.com/qemu/qemu/commit/b54490a2f87f02a1eda4a4302e93539528bef5e6
  Author: Markus Armbruster <armbru@redhat.com>
  Date:   2023-02-06 (Mon, 06 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>


  Commit: 3c0096220c7dc6fbf9a185974fd9bed0aa4cda3e
      
https://github.com/qemu/qemu/commit/3c0096220c7dc6fbf9a185974fd9bed0aa4cda3e
  Author: Markus Armbruster <armbru@redhat.com>
  Date:   2023-02-06 (Mon, 06 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: 0fc8702aa6f5069cb5e2cdd9320b140d8e2999e8
      
https://github.com/qemu/qemu/commit/0fc8702aa6f5069cb5e2cdd9320b140d8e2999e8
  Author: Markus Armbruster <armbru@redhat.com>
  Date:   2023-02-06 (Mon, 06 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: d5dd71446d8ad405b42b318af79af13ac8d7360c
      
https://github.com/qemu/qemu/commit/d5dd71446d8ad405b42b318af79af13ac8d7360c
  Author: Markus Armbruster <armbru@redhat.com>
  Date:   2023-02-06 (Mon, 06 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: f7b7274776ed70a72006f16b137ffe2b63bb8307
      
https://github.com/qemu/qemu/commit/f7b7274776ed70a72006f16b137ffe2b63bb8307
  Author: Markus Armbruster <armbru@redhat.com>
  Date:   2023-02-06 (Mon, 06 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: 659bf82eaa3a9db9ef58846f2de4d72fcac687a2
      
https://github.com/qemu/qemu/commit/659bf82eaa3a9db9ef58846f2de4d72fcac687a2
  Author: Markus Armbruster <armbru@redhat.com>
  Date:   2023-02-06 (Mon, 06 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: cc0cfc6765755082cda68643dfcd1a71ea288b29
      
https://github.com/qemu/qemu/commit/cc0cfc6765755082cda68643dfcd1a71ea288b29
  Author: Markus Armbruster <armbru@redhat.com>
  Date:   2023-02-06 (Mon, 06 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: d7144edb00b6afae0cd4f38eb6d3f4662183a288
      
https://github.com/qemu/qemu/commit/d7144edb00b6afae0cd4f38eb6d3f4662183a288
  Author: Markus Armbruster <armbru@redhat.com>
  Date:   2023-02-06 (Mon, 06 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: 442f6955e59f45e565baf30fe7c64671952a8249
      
https://github.com/qemu/qemu/commit/442f6955e59f45e565baf30fe7c64671952a8249
  Author: Markus Armbruster <armbru@redhat.com>
  Date:   2023-02-06 (Mon, 06 Feb 2023)

  Changed paths:
    M hw/9pfs/9p.c

  Log Message:
  -----------
  9p: Drop superfluous include of linux/limits.h

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


  Commit: e74285cc0d1d517271531c4103d8bbabe1bdad7d
      
https://github.com/qemu/qemu/commit/e74285cc0d1d517271531c4103d8bbabe1bdad7d
  Author: Markus Armbruster <armbru@redhat.com>
  Date:   2023-02-06 (Mon, 06 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: 7400017ad855d4f2d62aaed79ebcc7f230e6c5a1
      
https://github.com/qemu/qemu/commit/7400017ad855d4f2d62aaed79ebcc7f230e6c5a1
  Author: Peter Maydell <peter.maydell@linaro.org>
  Date:   2023-02-07 (Tue, 07 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' of https://repo.or.cz/qemu/armbru into 
staging

Header cleanup patches for 2023-02-06

# -----BEGIN PGP SIGNATURE-----
#
# iQJGBAABCAAwFiEENUvIs9frKmtoZ05fOHC0AOuRhlMFAmPhH7ASHGFybWJydUBy
# ZWRoYXQuY29tAAoJEDhwtADrkYZTNC8P/iaacGQAWA/OOuRy5iSTwLl6ONo4ASRg
# xHtsikSb7GQjbnIXQdrdY0iHO000mTiPIpNnENQR2GXqzazoWgUYDRBkAPT+rHhK
# uzXlUDZI8/2/2oKRcygOnUZz3S6Z8dMqf+5kkXTaulrxNL5SpxAceuFJnDx+XpLe
# EV+QRGOgjqhQFKXNB+d6+NXOBVrm34lFVbZKMAAE8wKwBVCwWIEKqbFAHfTXk694
# G0JgGRbdnd3FLHyZ+4B9BDbUklbtpY8ypyztu2WWWUQv+8tgenTXyIPcSoSixDbk
# XDjyx7ZL7B3IfXnjoCAKdL2IsF9Q6h+LhKEUCyyZpaRWIQ589K8wUlUDtNpsIhv/
# 8NCYXBpajO0o7Cix0rUOujLCAOIxFyHDj4mEV3w6mGkj+83wqhuNJYe0vPziCwEV
# 3fnyqf9AN1nZa/U3blr5tla3kRCLBFltnO3IBi16Axfq5zj6ZyCT5R1wr/+zzDXz
# z7G9K3qFqiFBcMzqpxgn3OvRJO59+qcEpmbrHar9BhnW4ymyxe6Tx/RpLwdbyUt2
# ilFmV8ZTY9eOD3KYRFQENCVvrwlStLmUFSSdKjSyephRlnDAhNrZYwxhJ5o1lsnx
# GjnHSsj/MQnnJrcrzpvoEcxVOzgfrsjd0vrv0OOyI4PFHSUVREHYl9fLDQU+/ewI
# 3ndrO+PiGGoL
# =M99L
# -----END PGP SIGNATURE-----
# gpg: Signature made Mon 06 Feb 2023 15:41:36 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' of https://repo.or.cz/qemu/armbru:
  Drop duplicate #include
  9p: Drop superfluous include of linux/limits.h
  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>

# Conflicts:
#       include/qemu/userfaultfd.h


Compare: https://github.com/qemu/qemu/compare/b86307ecef92...7400017ad855



reply via email to

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