Message ID | 20210311083939.595568-2-bharata@linux.ibm.com (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | Support for H_RPT_INVALIDATE in PowerPC KVM | expand |
Related | show |
Context | Check | Description |
---|---|---|
snowpatch_ozlabs/apply_patch | success | Successfully applied on branch powerpc/merge (91966823812efbd175f904599e5cf2a854b39809) |
snowpatch_ozlabs/checkpatch | success | total: 0 errors, 0 warnings, 0 checks, 11 lines checked |
snowpatch_ozlabs/needsstable | success | Patch has no Fixes tags |
On Thu, Mar 11, 2021 at 02:09:34PM +0530, Bharata B Rao wrote: > From: "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com> > > The type values H_RPTI_TYPE_PRT and H_RPTI_TYPE_PAT indicate > invalidating the caching of process and partition scoped entries > respectively. > > Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.ibm.com> > Signed-off-by: Bharata B Rao <bharata@linux.ibm.com> Not sure the change really clarifies that much, but whatever Reviewed-by: David Gibson <david@gibson.dropbear.id.au> > --- > arch/powerpc/include/asm/hvcall.h | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/arch/powerpc/include/asm/hvcall.h b/arch/powerpc/include/asm/hvcall.h > index ed6086d57b22..6af7bb3c9121 100644 > --- a/arch/powerpc/include/asm/hvcall.h > +++ b/arch/powerpc/include/asm/hvcall.h > @@ -411,9 +411,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)
diff --git a/arch/powerpc/include/asm/hvcall.h b/arch/powerpc/include/asm/hvcall.h index ed6086d57b22..6af7bb3c9121 100644 --- a/arch/powerpc/include/asm/hvcall.h +++ b/arch/powerpc/include/asm/hvcall.h @@ -411,9 +411,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)