diff options
author | Janosch Frank <frankja@linux.ibm.com> | 2020-05-05 08:41:59 -0400 |
---|---|---|
committer | Cornelia Huck <cohuck@redhat.com> | 2020-06-05 17:13:11 +0200 |
commit | 9a4325976264e2fac9a77cfabd774bd725c07027 (patch) | |
tree | 5def3a1890e6d548dcd86df312c340629e134ddf /include | |
parent | f555638c0ef9e9eb47677879fff7ca6f4b04df66 (diff) | |
download | qemu-9a4325976264e2fac9a77cfabd774bd725c07027.zip qemu-9a4325976264e2fac9a77cfabd774bd725c07027.tar.gz qemu-9a4325976264e2fac9a77cfabd774bd725c07027.tar.bz2 |
s390x: pv: Fix KVM_PV_PREP_RESET command wrapper name
s390_pv_perf_clear_reset() is not a very helpful name since that
function needs to be called for a normal and a clear reset via
diag308.
Let's instead name it s390_pv_prep_reset() which reflects the purpose
of the function a bit better.
Signed-off-by: Janosch Frank <frankja@linux.ibm.com>
Reviewed-by: David Hildenbrand <david@redhat.com>
Message-Id: <20200505124159.24099-1-frankja@linux.ibm.com>
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/hw/s390x/pv.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/hw/s390x/pv.h b/include/hw/s390x/pv.h index 522ca6a..aee758b 100644 --- a/include/hw/s390x/pv.h +++ b/include/hw/s390x/pv.h @@ -39,7 +39,7 @@ int s390_pv_vm_enable(void); void s390_pv_vm_disable(void); int s390_pv_set_sec_parms(uint64_t origin, uint64_t length); int s390_pv_unpack(uint64_t addr, uint64_t size, uint64_t tweak); -void s390_pv_perf_clear_reset(void); +void s390_pv_prep_reset(void); int s390_pv_verify(void); void s390_pv_unshare(void); void s390_pv_inject_reset_error(CPUState *cs); @@ -49,7 +49,7 @@ static inline int s390_pv_vm_enable(void) { return 0; } static inline void s390_pv_vm_disable(void) {} static inline int s390_pv_set_sec_parms(uint64_t origin, uint64_t length) { return 0; } static inline int s390_pv_unpack(uint64_t addr, uint64_t size, uint64_t tweak) { return 0; } -static inline void s390_pv_perf_clear_reset(void) {} +static inline void s390_pv_prep_reset(void) {} static inline int s390_pv_verify(void) { return 0; } static inline void s390_pv_unshare(void) {} static inline void s390_pv_inject_reset_error(CPUState *cs) {}; |