diff options
| author | Jaegeuk Kim <jaegeuk@google.com> | 2018-05-10 19:59:27 -0700 |
|---|---|---|
| committer | Jaegeuk Kim <jaegeuk@google.com> | 2018-05-10 20:00:34 -0700 |
| commit | 4b6bcfa69a154cb16d4c4891e5624728a380b153 (patch) | |
| tree | 280c134a454632423392a8c55567718ee5f7144e /dumpstate | |
| parent | a50315414e1fc92159e819210cd78488cb5aa246 (diff) | |
dumptstate: fix partition number for metadata encryption
Bug: 77335096
Change-Id: Ifd5d49c7843adf3763724a3a8f07cc1375fce0a3
Signed-off-by: Jaegeuk Kim <jaegeuk@google.com>
Diffstat (limited to 'dumpstate')
| -rwxr-xr-x | dumpstate/DumpstateDevice.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dumpstate/DumpstateDevice.cpp b/dumpstate/DumpstateDevice.cpp index fbd2ae6..4ff0428 100755 --- a/dumpstate/DumpstateDevice.cpp +++ b/dumpstate/DumpstateDevice.cpp @@ -261,7 +261,7 @@ Return<void> DumpstateDevice::dumpstateBoard(const hidl_handle& handle) { RunCommandToFd(fd, "UFS health", {"/vendor/bin/sh", "-c", ufs_health.c_str()}); } DumpFileToFd(fd, "F2FS", "/sys/kernel/debug/f2fs/status"); - DumpFileToFd(fd, "F2FS - fragmentation", "/proc/fs/f2fs/sda21/segment_info"); + DumpFileToFd(fd, "F2FS - fragmentation", "/proc/fs/f2fs/dm-3/segment_info"); DumpFileToFd(fd, "INTERRUPTS", "/proc/interrupts"); DumpFileToFd(fd, "Sleep Stats", "/sys/power/system_sleep/stats"); DumpFileToFd(fd, "Power Management Stats", "/sys/power/rpmh_stats/master_stats"); |
