aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAboorva Devarajan <aboorvad@linux.vnet.ibm.com>2023-10-05 20:23:15 +0530
committerHengqi Chen <chenhengqi@outlook.com>2023-10-09 23:15:43 +0800
commitcab1f40a9b223d5ddc2236a25dce9b834a64390a (patch)
tree25bb0a2384ace4462756162598aa29e7150a638f
parent89ae23dea338a4550ca1b9a06ae444eca46ce825 (diff)
downloadbcc-cab1f40a9b223d5ddc2236a25dce9b834a64390a.tar.gz
tools/ppchcalls: fix incorrect hypercall name
Hypercall name 'H_DISABLE_AND_GETC' is incorrect. In this commit, it has been corrected to 'H_DISABLE_AND_GET' to align with this linux kernel commit 0f10228c6ff6 ("KVM: PPC: Fix typo on H_DISABLE_AND_GET hcall") Signed-off-by: Aboorva Devarajan <aboorvad@linux.vnet.ibm.com>
-rwxr-xr-xtools/ppchcalls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ppchcalls.py b/tools/ppchcalls.py
index aedefb9e..b6ca8826 100755
--- a/tools/ppchcalls.py
+++ b/tools/ppchcalls.py
@@ -94,7 +94,7 @@ hcall_table = {
420: 'H_CREATE_RPT',
424: 'H_REMOVE_RPT',
428: 'H_REGISTER_RPAGES',
- 432: 'H_DISABLE_AND_GETC',
+ 432: 'H_DISABLE_AND_GET',
436: 'H_ERROR_DATA',
440: 'H_GET_HCA_INFO',
444: 'H_GET_PERF_COUNT',