summaryrefslogtreecommitdiffstats
path: root/arch/powerpc/include/asm/hvcall.h
diff options
context:
space:
mode:
authorMichael Ellerman <mpe@ellerman.id.au>2021-06-22 16:19:08 +0200
committerMichael Ellerman <mpe@ellerman.id.au>2021-06-22 16:19:08 +0200
commita736143afd036f2078fe19435b16fd55abc789a9 (patch)
tree3ae0c967f9e7a25f928badfb48c2d36b6402c76a /arch/powerpc/include/asm/hvcall.h
parentpowerpc/boot: Add a boot wrapper for Microwatt (diff)
parentKVM: PPC: Book3S HV: Workaround high stack usage with clang (diff)
downloadlinux-a736143afd036f2078fe19435b16fd55abc789a9.tar.xz
linux-a736143afd036f2078fe19435b16fd55abc789a9.zip
Merge branch 'topic/ppc-kvm' into next
Pull in some more ppc KVM patches we are keeping in our topic branch. In particular this brings in the series to add H_RPT_INVALIDATE.
Diffstat (limited to 'arch/powerpc/include/asm/hvcall.h')
-rw-r--r--arch/powerpc/include/asm/hvcall.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/include/asm/hvcall.h b/arch/powerpc/include/asm/hvcall.h
index 2a6346b6472f..9bcf345cb208 100644
--- a/arch/powerpc/include/asm/hvcall.h
+++ b/arch/powerpc/include/asm/hvcall.h
@@ -423,9 +423,9 @@
#define H_RPTI_TYPE_NESTED 0x0001 /* Invalidate nested guest partition-scope */
#define H_RPTI_TYPE_TLB 0x0002 /* Invalidate TLB */
#define H_RPTI_TYPE_PWC 0x0004 /* Invalidate Page Walk Cache */
-/* Invalidate Process Table Entries if H_RPTI_TYPE_NESTED is clear */
+/* Invalidate caching of Process Table Entries if H_RPTI_TYPE_NESTED is clear */
#define H_RPTI_TYPE_PRT 0x0008
-/* Invalidate Partition Table Entries if H_RPTI_TYPE_NESTED is set */
+/* Invalidate caching of Partition Table Entries if H_RPTI_TYPE_NESTED is set */
#define H_RPTI_TYPE_PAT 0x0008
#define H_RPTI_TYPE_ALL (H_RPTI_TYPE_TLB | H_RPTI_TYPE_PWC | \
H_RPTI_TYPE_PRT)