qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v2 00/30] hw: use the BYTE-based definitions when useful
@ 2018-03-05 11:27 Philippe Mathieu-Daudé
  2018-03-05 11:27 ` [Qemu-devel] [PATCH v2 01/30] util/cutils: extract byte-based definitions into a new header: "qemu/cunits.h" Philippe Mathieu-Daudé
                   ` (29 more replies)
  0 siblings, 30 replies; 40+ messages in thread
From: Philippe Mathieu-Daudé @ 2018-03-05 11:27 UTC (permalink / raw)
  To: qemu-trivial; +Cc: Philippe Mathieu-Daudé, qemu-devel

Hi,

This series:

- split the byte-based definitions from "qemu/cutils.h" to "qemu/cunits.h"
  and let them available for all hw/ files (via "hw/hw.h");
- clean hw/ includes;
- replace different constants used for byte size with their corresponding
  BYTE-based definitions.

Since v1:
- corrected Xen mult -> div (Alan Robinson)
- tagged 'include "qemu/cunits.h" in "hw/hw.h" as RFC
- fixed mips_r4k 'params_size' (Thomas Huth)
- added command used to generate patch in each commit (Alistair Francis)
- use G_BYTE for the raspi3 machine
- added Reviewed-by tags

patches generated using:

$ git grep -E '(1024|2048|4096|8192|(<<|>>).?(10|20|30))' hw/ include/hw/

and modified manually.

Regards,

Phil.

$ git backport-diff -r master.. -u v1
001/30:[----] [--] 'util/cutils: extract byte-based definitions into a new header: "qemu/cunits.h"'
002/30:[----] [--] 'hw: include "qemu/cunits.h" and clean unused "qemu/cutils.h"'
003/30:[----] [--] 'hw/block/nvme: include the "qemu/cutils.h" in the source file'
004/30:[----] [--] 'hw/lm32/milkymist: remove unused include'
005/30:[0003] [FC] 'hw/mips/r4k: constify params_size'
006/30:[0002] [FC] 'hw/mips: use the BYTE-based definitions'
007/30:[0002] [FC] 'hw/arm: use the BYTE-based definitions'
008/30:[----] [--] 'hw/i386: use the BYTE-based definitions'
009/30:[----] [--] 'hw/sparc: use the BYTE-based definitions'
010/30:[----] [--] 'hw/ppc: use the BYTE-based definitions'
011/30:[----] [--] 'hw/s390x: use the BYTE-based definitions'
012/30:[----] [--] 'hw/hppa: use the BYTE-based definitions'
013/30:[----] [--] 'hw/xtensa: use the BYTE-based definitions'
014/30:[----] [--] 'hw/alpha: use the BYTE-based definitions'
015/30:[----] [--] 'hw/lm32: use the BYTE-based definitions'
016/30:[----] [--] 'hw/sh4: use the BYTE-based definitions'
017/30:[----] [--] 'hw/tricore: use the BYTE-based definitions'
018/30:[----] [--] 'hw/microblaze: use the BYTE-based definitions'
019/30:[----] [--] 'hw/nios2: use the BYTE-based definitions'
020/30:[----] [--] 'hw/cris: use the BYTE-based definitions'
021/30:[----] [--] 'hw/misc: use the BYTE-based definitions'
022/30:[----] [--] 'hw/display: use the BYTE-based definitions'
023/30:[----] [--] 'hw/net: use the BYTE-based definitions'
024/30:[----] [--] 'hw/ipack: use the BYTE-based definitions'
025/30:[----] [--] 'hw/scsi: use the BYTE-based definitions'
026/30:[----] [--] 'hw/smbios: use the BYTE-based definitions'
027/30:[----] [--] 'vfio/pci: use the BYTE-based definitions'
028/30:[----] [--] 'ivshmem: use the BYTE-based definitions'
029/30:[----] [--] 'tpm: use the BYTE-based definitions'
030/30:[0006] [FC] 'xen: use the BYTE-based definitions'

Philippe Mathieu-Daudé (30):
  util/cutils: extract byte-based definitions into a new header: "qemu/cunits.h"
  hw: include "qemu/cunits.h" and clean unused "qemu/cutils.h"
  hw/block/nvme: include the "qemu/cutils.h" in the source file
  hw/lm32/milkymist: remove unused include
  hw/mips/r4k: constify params_size
  hw/mips: use the BYTE-based definitions
  hw/arm: use the BYTE-based definitions
  hw/i386: use the BYTE-based definitions
  hw/sparc: use the BYTE-based definitions
  hw/ppc: use the BYTE-based definitions
  hw/s390x: use the BYTE-based definitions
  hw/hppa: use the BYTE-based definitions
  hw/xtensa: use the BYTE-based definitions
  hw/alpha: use the BYTE-based definitions
  hw/lm32: use the BYTE-based definitions
  hw/sh4: use the BYTE-based definitions
  hw/tricore: use the BYTE-based definitions
  hw/microblaze: use the BYTE-based definitions
  hw/nios2: use the BYTE-based definitions
  hw/cris: use the BYTE-based definitions
  hw/misc: use the BYTE-based definitions
  hw/display: use the BYTE-based definitions
  hw/net: use the BYTE-based definitions
  hw/ipack: use the BYTE-based definitions
  hw/scsi: use the BYTE-based definitions
  hw/smbios: use the BYTE-based definitions
  vfio/pci: use the BYTE-based definitions
  ivshmem: use the BYTE-based definitions
  tpm: use the BYTE-based definitions
  xen: use the BYTE-based definitions

 include/hw/acpi/tpm.h                    |  2 +-
 include/hw/arm/stm32f205_soc.h           |  4 ++--
 include/hw/hw.h                          |  1 +
 include/hw/i386/ich9.h                   |  2 +-
 include/hw/intc/mips_gic.h               |  2 +-
 include/hw/mips/bios.h                   |  2 +-
 include/hw/net/allwinner_emac.h          |  4 ++--
 include/hw/ppc/spapr.h                   |  2 +-
 include/qemu/cunits.h                    | 11 +++++++++++
 include/qemu/cutils.h                    |  8 +-------
 hw/block/nvme.h                          |  1 -
 hw/alpha/typhoon.c                       | 16 +++++++---------
 hw/arm/boot.c                            |  6 +++---
 hw/arm/collie.c                          |  4 ++--
 hw/arm/digic_boards.c                    |  6 +++---
 hw/arm/gumstix.c                         |  2 +-
 hw/arm/integratorcp.c                    |  2 +-
 hw/arm/mainstone.c                       |  2 +-
 hw/arm/msf2-soc.c                        |  1 -
 hw/arm/msf2-som.c                        |  1 -
 hw/arm/musicpal.c                        |  8 ++++----
 hw/arm/omap_sx1.c                        |  8 ++++----
 hw/arm/raspi.c                           |  4 ++--
 hw/arm/stellaris.c                       |  4 ++--
 hw/arm/versatilepb.c                     |  4 ++--
 hw/arm/vexpress.c                        |  6 +++---
 hw/arm/virt.c                            |  4 ++--
 hw/arm/xilinx_zynq.c                     |  4 ++--
 hw/block/nvme.c                          |  1 +
 hw/block/tc58128.c                       |  2 +-
 hw/block/xen_disk.c                      |  4 ++--
 hw/core/loader-fit.c                     |  1 -
 hw/core/loader.c                         |  1 -
 hw/core/machine.c                        |  1 -
 hw/cris/axis_dev88.c                     |  2 +-
 hw/cris/boot.c                           |  1 -
 hw/display/cirrus_vga.c                  |  9 ++++-----
 hw/display/g364fb.c                      |  2 +-
 hw/display/qxl.c                         | 26 +++++++++++---------------
 hw/display/sm501.c                       |  1 -
 hw/display/vga-isa-mm.c                  |  4 ++--
 hw/display/vga.c                         |  4 ++--
 hw/display/virtio-gpu.c                  |  3 +--
 hw/display/vmware_vga.c                  |  2 +-
 hw/display/xenfb.c                       |  2 +-
 hw/hppa/dino.c                           |  2 +-
 hw/hppa/machine.c                        |  9 ++++-----
 hw/i386/acpi-build.c                     |  4 ++--
 hw/i386/pc.c                             | 18 +++++++++---------
 hw/i386/pc_piix.c                        |  2 +-
 hw/i386/pc_q35.c                         |  2 +-
 hw/i386/pc_sysfw.c                       |  8 ++++----
 hw/i386/xen/xen-mapcache.c               |  2 +-
 hw/intc/apic_common.c                    |  2 +-
 hw/ipack/tpci200.c                       |  4 ++--
 hw/lm32/lm32_boards.c                    | 12 ++++++------
 hw/lm32/milkymist.c                      | 10 ++++------
 hw/microblaze/boot.c                     |  1 -
 hw/microblaze/petalogix_ml605_mmu.c      |  6 +++---
 hw/microblaze/petalogix_s3adsp1800_mmu.c |  6 +++---
 hw/mips/boston.c                         |  3 +--
 hw/mips/mips_fulong2e.c                  |  6 +++---
 hw/mips/mips_malta.c                     | 19 ++++++++++---------
 hw/mips/mips_r4k.c                       | 14 +++++++-------
 hw/misc/aspeed_sdmc.c                    |  8 ++++----
 hw/misc/auxbus.c                         |  2 +-
 hw/misc/edu.c                            |  2 +-
 hw/misc/imx7_gpr.c                       |  2 +-
 hw/misc/ivshmem.c                        |  2 +-
 hw/misc/mips_itu.c                       |  2 +-
 hw/misc/mos6522.c                        |  1 -
 hw/misc/omap_gpmc.c                      |  4 ++--
 hw/net/e1000e.c                          |  6 +++---
 hw/net/eepro100.c                        |  6 ++----
 hw/nios2/boot.c                          |  3 +--
 hw/pci-host/gpex.c                       |  2 +-
 hw/pci-host/piix.c                       |  4 ++--
 hw/pci-host/prep.c                       |  2 +-
 hw/pci-host/q35.c                        | 16 ++++++++--------
 hw/pci-host/xilinx-pcie.c                |  4 ++--
 hw/ppc/e500.c                            |  8 ++++----
 hw/ppc/mac_newworld.c                    |  1 -
 hw/ppc/mac_oldworld.c                    |  8 +++-----
 hw/ppc/pnv.c                             |  1 -
 hw/ppc/ppc405_boards.c                   |  8 ++++----
 hw/ppc/ppc405_uc.c                       |  6 +++---
 hw/ppc/ppc4xx_devs.c                     | 21 +++++++++++----------
 hw/ppc/ppce500_spin.c                    |  2 +-
 hw/ppc/prep.c                            |  3 +--
 hw/ppc/rs6000_mc.c                       | 12 ++++++------
 hw/ppc/spapr_rtas.c                      |  1 -
 hw/ppc/virtex_ml507.c                    |  4 ++--
 hw/s390x/sclp.c                          |  4 ++--
 hw/scsi/scsi-disk.c                      |  8 ++++----
 hw/sd/sdhci.c                            |  1 -
 hw/sh4/r2d.c                             |  2 +-
 hw/smbios/smbios.c                       | 14 +++++---------
 hw/sparc/leon3.c                         |  8 ++++----
 hw/sparc/sun4m.c                         |  8 +++-----
 hw/sparc64/niagara.c                     |  2 +-
 hw/sparc64/sun4u.c                       |  3 +--
 hw/ssi/aspeed_smc.c                      | 28 ++++++++++++++--------------
 hw/tricore/tricore_testboard.c           | 12 ++++++------
 hw/usb/dev-serial.c                      |  1 -
 hw/usb/dev-storage.c                     |  1 -
 hw/vfio/pci-quirks.c                     |  8 ++++----
 hw/vfio/pci.c                            |  2 +-
 hw/xenpv/xen_domainbuild.c               | 10 +++++-----
 hw/xtensa/xtfpga.c                       |  2 +-
 109 files changed, 270 insertions(+), 302 deletions(-)
 create mode 100644 include/qemu/cunits.h

-- 
2.16.2

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

end of thread, other threads:[~2018-03-06 15:47 UTC | newest]

Thread overview: 40+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-03-05 11:27 [Qemu-devel] [PATCH v2 00/30] hw: use the BYTE-based definitions when useful Philippe Mathieu-Daudé
2018-03-05 11:27 ` [Qemu-devel] [PATCH v2 01/30] util/cutils: extract byte-based definitions into a new header: "qemu/cunits.h" Philippe Mathieu-Daudé
2018-03-05 11:27 ` [Qemu-devel] [RFC PATCH v2 02/30] hw: include "qemu/cunits.h" and clean unused "qemu/cutils.h" Philippe Mathieu-Daudé
2018-03-05 18:57   ` Daniel P. Berrangé
2018-03-05 19:01     ` [Qemu-devel] [Qemu-arm] " Philippe Mathieu-Daudé
2018-03-05 11:27 ` [Qemu-devel] [PATCH v2 03/30] hw/block/nvme: include the "qemu/cutils.h" in the source file Philippe Mathieu-Daudé
2018-03-05 11:27 ` [Qemu-devel] [PATCH v2 04/30] hw/lm32/milkymist: remove unused include Philippe Mathieu-Daudé
2018-03-05 11:27 ` [Qemu-devel] [PATCH v2 05/30] hw/mips/r4k: constify params_size Philippe Mathieu-Daudé
2018-03-05 11:27 ` [Qemu-devel] [PATCH v2 06/30] hw/mips: use the BYTE-based definitions Philippe Mathieu-Daudé
2018-03-05 11:27 ` [Qemu-devel] [PATCH v2 07/30] hw/arm: " Philippe Mathieu-Daudé
2018-03-06 15:46   ` Alex Bennée
2018-03-05 11:27 ` [Qemu-devel] [PATCH v2 08/30] hw/i386: " Philippe Mathieu-Daudé
2018-03-05 18:51   ` Anthony PERARD
2018-03-06 12:43   ` Igor Mammedov
2018-03-05 11:27 ` [Qemu-devel] [PATCH v2 09/30] hw/sparc: " Philippe Mathieu-Daudé
2018-03-05 11:27 ` [Qemu-devel] [PATCH v2 10/30] hw/ppc: " Philippe Mathieu-Daudé
2018-03-05 11:27 ` [Qemu-devel] [PATCH v2 11/30] hw/s390x: " Philippe Mathieu-Daudé
2018-03-05 11:27 ` [Qemu-devel] [PATCH v2 12/30] hw/hppa: " Philippe Mathieu-Daudé
2018-03-05 11:27 ` [Qemu-devel] [PATCH v2 13/30] hw/xtensa: " Philippe Mathieu-Daudé
2018-03-05 11:27 ` [Qemu-devel] [PATCH v2 14/30] hw/alpha: " Philippe Mathieu-Daudé
2018-03-05 11:27 ` [Qemu-devel] [PATCH v2 15/30] hw/lm32: " Philippe Mathieu-Daudé
2018-03-05 11:27 ` [Qemu-devel] [PATCH v2 16/30] hw/sh4: " Philippe Mathieu-Daudé
2018-03-05 11:27 ` [Qemu-devel] [PATCH v2 17/30] hw/tricore: " Philippe Mathieu-Daudé
2018-03-05 11:27 ` [Qemu-devel] [PATCH v2 18/30] hw/microblaze: " Philippe Mathieu-Daudé
2018-03-05 11:27 ` [Qemu-devel] [PATCH v2 19/30] hw/nios2: " Philippe Mathieu-Daudé
2018-03-05 11:27 ` [Qemu-devel] [PATCH v2 20/30] hw/cris: " Philippe Mathieu-Daudé
2018-03-05 11:27 ` [Qemu-devel] [PATCH v2 21/30] hw/misc: " Philippe Mathieu-Daudé
2018-03-05 19:02   ` Jiri Slaby
2018-03-05 19:05     ` Philippe Mathieu-Daudé
2018-03-05 11:27 ` [Qemu-devel] [PATCH v2 23/30] hw/net: " Philippe Mathieu-Daudé
2018-03-05 11:27 ` [Qemu-devel] [PATCH v2 24/30] hw/ipack: " Philippe Mathieu-Daudé
2018-03-05 11:27 ` [Qemu-devel] [PATCH v2 25/30] hw/scsi: " Philippe Mathieu-Daudé
2018-03-05 11:27 ` [Qemu-devel] [PATCH v2 26/30] hw/smbios: " Philippe Mathieu-Daudé
2018-03-06  9:02   ` Igor Mammedov
2018-03-05 11:27 ` [Qemu-devel] [PATCH v2 27/30] vfio/pci: " Philippe Mathieu-Daudé
2018-03-05 11:27 ` [Qemu-devel] [PATCH v2 28/30] ivshmem: " Philippe Mathieu-Daudé
2018-03-05 11:27 ` [Qemu-devel] [PATCH v2 29/30] tpm: " Philippe Mathieu-Daudé
2018-03-05 11:27 ` [Qemu-devel] [PATCH v2 30/30] xen: " Philippe Mathieu-Daudé
2018-03-05 18:53   ` Anthony PERARD
     [not found] ` <20180305112732.26471-23-f4bug@amsat.org>
2018-03-05 18:52   ` [Qemu-devel] [PATCH v2 22/30] hw/display: " Anthony PERARD

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).