diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2023-06-24 22:06:44 +0200 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2023-07-10 15:34:23 +0200 |
commit | f5f9c6ea11bc807664fdeb9354915c2c9cdcbd89 (patch) | |
tree | 3efa00a507db50969144f2002629d1aaca0c6a82 /target/s390x/diag.c | |
parent | fcb237e64f9d026c03d635579c7b288d0008a6e5 (diff) | |
download | qemu-f5f9c6ea11bc807664fdeb9354915c2c9cdcbd89.zip qemu-f5f9c6ea11bc807664fdeb9354915c2c9cdcbd89.tar.gz qemu-f5f9c6ea11bc807664fdeb9354915c2c9cdcbd89.tar.bz2 |
hw/s390x: Move KVM specific PV from hw/ to target/s390x/kvm/
Protected Virtualization (PV) is not a real hardware device:
it is a feature of the firmware on s390x that is exposed to
userspace via the KVM interface.
Move the pv.c/pv.h files to target/s390x/kvm/ to make this clearer.
Suggested-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-Id: <20230624200644.23931-1-philmd@linaro.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'target/s390x/diag.c')
-rw-r--r-- | target/s390x/diag.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/s390x/diag.c b/target/s390x/diag.c index e5f0df1..8ce18e0 100644 --- a/target/s390x/diag.c +++ b/target/s390x/diag.c @@ -19,9 +19,9 @@ #include "sysemu/cpus.h" #include "hw/s390x/ipl.h" #include "hw/s390x/s390-virtio-ccw.h" -#include "hw/s390x/pv.h" #include "sysemu/kvm.h" #include "kvm/kvm_s390x.h" +#include "target/s390x/kvm/pv.h" #include "qemu/error-report.h" |