summaryrefslogtreecommitdiff
path: root/pagecache
diff options
context:
space:
mode:
authorXin Li <delphij@google.com>2024-01-29 21:20:12 -0800
committerXin Li <delphij@google.com>2024-01-29 21:20:12 -0800
commit49127d863c0909393305570be30acf5d17358acb (patch)
treee1a713eabd216dac48b38665954730d58b7048fe /pagecache
parent7311a7d0ff5981c694ab275a511d0125646080c4 (diff)
parent7d24c66653253ffb9c7b587ccbf9145624a34eca (diff)
downloadextras-49127d863c0909393305570be30acf5d17358acb.tar.gz
Merge Android 24Q1 Release (ab/11220357)
Bug: 319669529 Merged-In: Ie1a75f44606c4cd7a0971a09322169c01bdca325 Change-Id: Ic3de6a19d71608787e698fe4979a4a46c07a67bd
Diffstat (limited to 'pagecache')
-rw-r--r--[-rwxr-xr-x]pagecache/pagecache.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/pagecache/pagecache.py b/pagecache/pagecache.py
index cb9c7396..3f96a5d1 100755..100644
--- a/pagecache/pagecache.py
+++ b/pagecache/pagecache.py
@@ -261,8 +261,9 @@ def get_inode_data(datafile, dumpfile, adb_serial):
else:
# Build inode maps if we were tracing page cache
print('Downloading inode data from device')
- stat_dump = AdbUtils.do_preprocess_adb_cmd('find /system /data /vendor ' +
- '-exec stat -c "%d %i %s %n" {} \;', adb_serial)
+ stat_dump = AdbUtils.do_preprocess_adb_cmd(
+ 'find /apex /system /system_ext /product /data /vendor ' +
+ '-exec stat -c "%d %i %s %n" {} \;', adb_serial)
if stat_dump is None:
print 'Could not retrieve inode data from device.'
sys.exit(1)