diff options
author | Greg Kurz <groug@kaod.org> | 2017-07-10 14:17:46 +0200 |
---|---|---|
committer | Alexey Kardashevskiy <aik@ozlabs.ru> | 2017-07-11 14:34:50 +1000 |
commit | 089fc18a9b8c38ff83d678f4ea05b270a172848c (patch) | |
tree | 534aee8466b94128691d3118fecd801a132a70b9 /lib | |
parent | 834113a1c67d6fb53dea153c3313d182238f2d36 (diff) | |
download | SLOF-089fc18a9b8c38ff83d678f4ea05b270a172848c.zip SLOF-089fc18a9b8c38ff83d678f4ea05b270a172848c.tar.gz SLOF-089fc18a9b8c38ff83d678f4ea05b270a172848c.tar.bz2 |
libhvcall: drop unused KVMPPC_H_REPORT_MC_ERR and KVMPPC_H_NMI_MCE defines
These defines were introduced to add support for FWNMI in KVM guests. This
has been WIP since 2015 and the KVM part finally made it to kvm-ppc-next.
Latest work on the QEMU side [1] no longer needs KVMPPC_H_REPORT_MC_ERR.
The KVMPPC_HCALL_MAX define is never used anywhere, and moreover it
is bogus since there's no KVMPPC_H_NMI_MCE private hcall.
[1] http://lists.nongnu.org/archive/html/qemu-ppc/2015-12/msg00199.html
Signed-off-by: Greg Kurz <groug@kaod.org>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libhvcall/libhvcall.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/libhvcall/libhvcall.h b/lib/libhvcall/libhvcall.h index 193b738..b2ea3f6 100644 --- a/lib/libhvcall/libhvcall.h +++ b/lib/libhvcall/libhvcall.h @@ -25,8 +25,6 @@ /* Client Architecture support */ #define KVMPPC_H_CAS (KVMPPC_HCALL_BASE + 0x2) #define KVMPPC_H_RTAS_UPDATE (KVMPPC_HCALL_BASE + 0x3) -#define KVMPPC_H_REPORT_MC_ERR (KVMPPC_HCALL_BASE + 0x4) -#define KVMPPC_HCALL_MAX KVMPPC_H_NMI_MCE #ifndef __ASSEMBLY__ |