summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKalesh Singh <kaleshsingh@google.com>2024-05-01 12:53:08 -0700
committerKalesh Singh <kaleshsingh@google.com>2024-05-04 21:22:32 +0000
commit7bdee094a589589e5cd2ad5285a9b83e5d88b512 (patch)
treeaeaface2e52542b99d8cddf475cc6acdd04cd4bb
parentd1827dfad8ac3d94212ad48bc54364ece213b61e (diff)
downloadcommon-android14-5.15-2024-05.tar.gz
ANDROID: 16K: Fix call to show_pad_maps_fn()android14-5.15-2024-05
The call should be for printing maps not smaps; fix this. Bug: 338774168 Bug: 330117029 Bug: 327600007 Bug: 330767927 Bug: 328266487 Bug: 329803029 Change-Id: I8356b9e93fa2a300cb8bcd66fed857d42e8bfdca Signed-off-by: Kalesh Singh <kaleshsingh@google.com>
-rw-r--r--mm/pgsize_migration.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/pgsize_migration.c b/mm/pgsize_migration.c
index fd826fa33b93..185b16929d33 100644
--- a/mm/pgsize_migration.c
+++ b/mm/pgsize_migration.c
@@ -326,7 +326,7 @@ void show_map_pad_vma(struct vm_area_struct *vma, struct vm_area_struct *pad,
if (smaps)
((show_pad_smaps_fn)func)(m, pad);
else
- ((show_pad_smaps_fn)func)(m, pad);
+ ((show_pad_maps_fn)func)(m, pad);
kfree(pad);
kfree(vma);