From 7596581e9ff12d1bfda2a0cdc3184cfa234dcfcd Mon Sep 17 00:00:00 2001 From: Nikita Ioffe Date: Mon, 2 Dec 2019 11:48:06 +0000 Subject: [PATCH] Add '/system/bin/vdc volume reset' command It will be used during the userspace reboot to unmount all emulated storages, which is a prerequisite to unmount+remount ext4 userdata into checkpoint mode. Test: adb shell /system/bin/vdc checkpoint startCheckpoint 1 Test: adb reboot userspace Bug: 143970043 Bug: 135984674 Change-Id: I07491bc4be2f30debe21b764766c9def68548e16 --- vdc.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vdc.cpp b/vdc.cpp index c1b7781..a6a3fb0 100644 --- a/vdc.cpp +++ b/vdc.cpp @@ -101,6 +101,8 @@ int main(int argc, char** argv) { checkStatus(args, vold->mountDefaultEncrypted()); } else if (args[0] == "volume" && args[1] == "shutdown") { checkStatus(args, vold->shutdown()); + } else if (args[0] == "volume" && args[1] == "reset") { + checkStatus(args, vold->reset()); } else if (args[0] == "cryptfs" && args[1] == "checkEncryption" && args.size() == 3) { checkStatus(args, vold->checkEncryption(args[2])); } else if (args[0] == "cryptfs" && args[1] == "mountFstab" && args.size() == 4) { @@ -111,7 +113,8 @@ int main(int argc, char** argv) { bool supported = false; checkStatus(args, vold->supportsCheckpoint(&supported)); return supported ? 1 : 0; - } else if (args[0] == "checkpoint" && args[1] == "supportsBlockCheckpoint" && args.size() == 2) { + } else if (args[0] == "checkpoint" && args[1] == "supportsBlockCheckpoint" && + args.size() == 2) { bool supported = false; checkStatus(args, vold->supportsBlockCheckpoint(&supported)); return supported ? 1 : 0;