[Qemu-devel] [PATCH v4 0/4] event: Add source information to SHUTDOWN

Eric Blake posted 4 patches 6 years, 12 months ago
Only 3 patches received!
There is a newer version of this series
qapi-schema.json            |    26 +
qapi/event.json             |    12 +-
include/sysemu/sysemu.h     |     6 +-
trace/generated-tracers.h   | 18523 ++++++++++++++++++++++++++++++++++++++++++
vl.c                        |    58 +-
foo.c                       |   121 +
hw/acpi/core.c              |     4 +-
hw/arm/highbank.c           |     4 +-
hw/arm/integratorcp.c       |     2 +-
hw/arm/musicpal.c           |     2 +-
hw/arm/omap1.c              |    10 +-
hw/arm/omap2.c              |     2 +-
hw/arm/spitz.c              |     2 +-
hw/arm/stellaris.c          |     2 +-
hw/arm/tosa.c               |     2 +-
hw/i386/pc.c                |     2 +-
hw/i386/xen/xen-hvm.c       |    11 +-
hw/input/pckbd.c            |     4 +-
hw/ipmi/ipmi.c              |     4 +-
hw/isa/lpc_ich9.c           |     2 +-
hw/mips/boston.c            |     2 +-
hw/mips/mips_malta.c        |     2 +-
hw/mips/mips_r4k.c          |     4 +-
hw/misc/arm_sysctl.c        |     8 +-
hw/misc/cbus.c              |     2 +-
hw/misc/macio/cuda.c        |     4 +-
hw/misc/slavio_misc.c       |     4 +-
hw/misc/zynq_slcr.c         |     2 +-
hw/pci-host/apb.c           |     4 +-
hw/pci-host/bonito.c        |     2 +-
hw/pci-host/piix.c          |     2 +-
hw/ppc/e500.c               |     2 +-
hw/ppc/mpc8544_guts.c       |     2 +-
hw/ppc/ppc.c                |     2 +-
hw/ppc/ppc405_uc.c          |     2 +-
hw/ppc/spapr_hcall.c        |     2 +-
hw/ppc/spapr_rtas.c         |     4 +-
hw/s390x/ipl.c              |     2 +-
hw/sh4/r2d.c                |     2 +-
hw/timer/etraxfs_timer.c    |     2 +-
hw/timer/m48t59.c           |     4 +-
hw/timer/milkymist-sysctl.c |     4 +-
hw/timer/pxa2xx_timer.c     |     2 +-
hw/watchdog/watchdog.c      |     2 +-
hw/xenpv/xen_domainbuild.c  |     2 +-
hw/xtensa/xtfpga.c          |     2 +-
kvm-all.c                   |     6 +-
migration/colo.c            |     2 +-
migration/savevm.c          |     2 +-
os-win32.c                  |     2 +-
qmp.c                       |     4 +-
replay/replay.c             |     5 +-
target/alpha/sys_helper.c   |     4 +-
target/arm/psci.c           |     4 +-
target/i386/excp_helper.c   |     2 +-
target/i386/hax-all.c       |     6 +-
target/i386/helper.c        |     2 +-
target/i386/kvm.c           |     2 +-
target/s390x/helper.c       |     2 +-
target/s390x/kvm.c          |     4 +-
target/s390x/misc_helper.c  |     4 +-
target/sparc/int32_helper.c |     2 +-
ui/sdl.c                    |     2 +-
ui/sdl2.c                   |     4 +-
bar                         |   Bin 0 -> 67108864 bytes
bar.src                     |   Bin 0 -> 560 bytes
file                        |   Bin 0 -> 1900544 bytes
file2                       |   Bin 0 -> 10485760 bytes
file3                       |   Bin 0 -> 15728640 bytes
foo                         |   Bin 0 -> 13344 bytes
tests/qemu-iotests/071.out  |     4 +-
tests/qemu-iotests/081.out  |     2 +-
tests/qemu-iotests/087.out  |    12 +-
tests/qemu-iotests/094.out  |     2 +-
tests/qemu-iotests/117.out  |     2 +-
tests/qemu-iotests/119.out  |     2 +-
tests/qemu-iotests/120.out  |     2 +-
tests/qemu-iotests/140.out  |     2 +-
tests/qemu-iotests/143.out  |     2 +-
tests/qemu-iotests/156.out  |     2 +-
tests/test-hmp              |   Bin 0 -> 603288 bytes
trace-events                |     2 +-
ui/cocoa.m                  |     2 +-
83 files changed, 18829 insertions(+), 137 deletions(-)
create mode 100644 trace/generated-tracers.h
create mode 100644 foo.c
create mode 100644 bar
create mode 100644 bar.src
create mode 100644 file
create mode 100644 file2
create mode 100644 file3
create mode 100755 foo
create mode 100755 tests/test-hmp
[Qemu-devel] [PATCH v4 0/4] event: Add source information to SHUTDOWN
Posted by Eric Blake 6 years, 12 months ago
v2 was here:
https://lists.gnu.org/archive/html/qemu-devel/2017-04/msg03185.html
v3 was here:
https://lists.gnu.org/archive/html/qemu-devel/2017-04/msg05515.html

Since then:
- s/ShutdownType/ShutdownCause/ to avoid conflict with mingw header pollution
- fix long line

Eric Blake (4):
  shutdown: Simplify shutdown_signal
  shutdown: Prepare for use of an enum in reset/shutdown_request
  shutdown: Add source information to SHUTDOWN and RESET
  RFC: shutdown: Expose full ShutdownCause across QMP

 qapi-schema.json            |    26 +
 qapi/event.json             |    12 +-
 include/sysemu/sysemu.h     |     6 +-
 trace/generated-tracers.h   | 18523 ++++++++++++++++++++++++++++++++++++++++++
 vl.c                        |    58 +-
 foo.c                       |   121 +
 hw/acpi/core.c              |     4 +-
 hw/arm/highbank.c           |     4 +-
 hw/arm/integratorcp.c       |     2 +-
 hw/arm/musicpal.c           |     2 +-
 hw/arm/omap1.c              |    10 +-
 hw/arm/omap2.c              |     2 +-
 hw/arm/spitz.c              |     2 +-
 hw/arm/stellaris.c          |     2 +-
 hw/arm/tosa.c               |     2 +-
 hw/i386/pc.c                |     2 +-
 hw/i386/xen/xen-hvm.c       |    11 +-
 hw/input/pckbd.c            |     4 +-
 hw/ipmi/ipmi.c              |     4 +-
 hw/isa/lpc_ich9.c           |     2 +-
 hw/mips/boston.c            |     2 +-
 hw/mips/mips_malta.c        |     2 +-
 hw/mips/mips_r4k.c          |     4 +-
 hw/misc/arm_sysctl.c        |     8 +-
 hw/misc/cbus.c              |     2 +-
 hw/misc/macio/cuda.c        |     4 +-
 hw/misc/slavio_misc.c       |     4 +-
 hw/misc/zynq_slcr.c         |     2 +-
 hw/pci-host/apb.c           |     4 +-
 hw/pci-host/bonito.c        |     2 +-
 hw/pci-host/piix.c          |     2 +-
 hw/ppc/e500.c               |     2 +-
 hw/ppc/mpc8544_guts.c       |     2 +-
 hw/ppc/ppc.c                |     2 +-
 hw/ppc/ppc405_uc.c          |     2 +-
 hw/ppc/spapr_hcall.c        |     2 +-
 hw/ppc/spapr_rtas.c         |     4 +-
 hw/s390x/ipl.c              |     2 +-
 hw/sh4/r2d.c                |     2 +-
 hw/timer/etraxfs_timer.c    |     2 +-
 hw/timer/m48t59.c           |     4 +-
 hw/timer/milkymist-sysctl.c |     4 +-
 hw/timer/pxa2xx_timer.c     |     2 +-
 hw/watchdog/watchdog.c      |     2 +-
 hw/xenpv/xen_domainbuild.c  |     2 +-
 hw/xtensa/xtfpga.c          |     2 +-
 kvm-all.c                   |     6 +-
 migration/colo.c            |     2 +-
 migration/savevm.c          |     2 +-
 os-win32.c                  |     2 +-
 qmp.c                       |     4 +-
 replay/replay.c             |     5 +-
 target/alpha/sys_helper.c   |     4 +-
 target/arm/psci.c           |     4 +-
 target/i386/excp_helper.c   |     2 +-
 target/i386/hax-all.c       |     6 +-
 target/i386/helper.c        |     2 +-
 target/i386/kvm.c           |     2 +-
 target/s390x/helper.c       |     2 +-
 target/s390x/kvm.c          |     4 +-
 target/s390x/misc_helper.c  |     4 +-
 target/sparc/int32_helper.c |     2 +-
 ui/sdl.c                    |     2 +-
 ui/sdl2.c                   |     4 +-
 bar                         |   Bin 0 -> 67108864 bytes
 bar.src                     |   Bin 0 -> 560 bytes
 file                        |   Bin 0 -> 1900544 bytes
 file2                       |   Bin 0 -> 10485760 bytes
 file3                       |   Bin 0 -> 15728640 bytes
 foo                         |   Bin 0 -> 13344 bytes
 tests/qemu-iotests/071.out  |     4 +-
 tests/qemu-iotests/081.out  |     2 +-
 tests/qemu-iotests/087.out  |    12 +-
 tests/qemu-iotests/094.out  |     2 +-
 tests/qemu-iotests/117.out  |     2 +-
 tests/qemu-iotests/119.out  |     2 +-
 tests/qemu-iotests/120.out  |     2 +-
 tests/qemu-iotests/140.out  |     2 +-
 tests/qemu-iotests/143.out  |     2 +-
 tests/qemu-iotests/156.out  |     2 +-
 tests/test-hmp              |   Bin 0 -> 603288 bytes
 trace-events                |     2 +-
 ui/cocoa.m                  |     2 +-
 83 files changed, 18829 insertions(+), 137 deletions(-)
 create mode 100644 trace/generated-tracers.h
 create mode 100644 foo.c
 create mode 100644 bar
 create mode 100644 bar.src
 create mode 100644 file
 create mode 100644 file2
 create mode 100644 file3
 create mode 100755 foo
 create mode 100755 tests/test-hmp

-- 
2.9.3


Re: [Qemu-devel] [PATCH v4 0/4] event: Add source information to SHUTDOWN
Posted by Eric Blake 6 years, 12 months ago
On 04/27/2017 04:31 PM, Eric Blake wrote:
> v2 was here:
> https://lists.gnu.org/archive/html/qemu-devel/2017-04/msg03185.html
> v3 was here:
> https://lists.gnu.org/archive/html/qemu-devel/2017-04/msg05515.html
> 
> Since then:
> - s/ShutdownType/ShutdownCause/ to avoid conflict with mingw header pollution
> - fix long line
> 
> Eric Blake (4):
>   shutdown: Simplify shutdown_signal
>   shutdown: Prepare for use of an enum in reset/shutdown_request
>   shutdown: Add source information to SHUTDOWN and RESET
>   RFC: shutdown: Expose full ShutdownCause across QMP
> 
>  qapi-schema.json            |    26 +
>  qapi/event.json             |    12 +-
>  include/sysemu/sysemu.h     |     6 +-
>  trace/generated-tracers.h   | 18523 ++++++++++++++++++++++++++++++++++++++++++

Bleargh. I 'git add'ed too much.  Apologies for the spam. v5 coming up.


-- 
Eric Blake, Principal Software Engineer
Red Hat, Inc.           +1-919-301-3266
Virtualization:  qemu.org | libvirt.org