summaryrefslogtreecommitdiff
path: root/pagecache
diff options
context:
space:
mode:
authorShai Barack <shayba@google.com>2023-08-23 23:13:17 +0000
committerShai Barack <shayba@google.com>2023-08-23 23:13:17 +0000
commite668873ed28f88ce7d03a8c047e25aa0451b6a8d (patch)
tree9ab952aae21bbd7d24030666fe5823165cc73397 /pagecache
parente73090fd462a84e35daead8097141278485f2cda (diff)
downloadextras-e668873ed28f88ce7d03a8c047e25aa0451b6a8d.tar.gz
Add missing paths to pagecache.py
Change-Id: Iefe6efb9b9cde1065d70bb3d4e5b201dd568f67d
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 c822ff00..419999ec 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)