Merge "Always unmount data and obb directory that mounted" am: ae11ab712f
Original change: https://android-review.googlesource.com/c/platform/system/vold/+/1697365 Change-Id: I44aaffd7ecd95ec60af7559592d684460b32c5da
This commit is contained in:
commit
270b1dabbc
1 changed files with 21 additions and 20 deletions
|
@ -194,27 +194,28 @@ status_t EmulatedVolume::unmountFuseBindMounts() {
|
|||
// Here we assume obb/data dirs is mounted as tmpfs, then it must be caused by
|
||||
// app data isolation.
|
||||
KillProcessesWithTmpfsMountPrefix(appObbDir);
|
||||
} else {
|
||||
std::string androidDataTarget(
|
||||
StringPrintf("/mnt/user/%d/%s/%d/Android/data", userId, label.c_str(), userId));
|
||||
|
||||
LOG(INFO) << "Unmounting " << androidDataTarget;
|
||||
auto status = UnmountTree(androidDataTarget);
|
||||
if (status != OK) {
|
||||
return status;
|
||||
}
|
||||
LOG(INFO) << "Unmounted " << androidDataTarget;
|
||||
|
||||
std::string androidObbTarget(
|
||||
StringPrintf("/mnt/user/%d/%s/%d/Android/obb", userId, label.c_str(), userId));
|
||||
|
||||
LOG(INFO) << "Unmounting " << androidObbTarget;
|
||||
status = UnmountTree(androidObbTarget);
|
||||
if (status != OK) {
|
||||
return status;
|
||||
}
|
||||
LOG(INFO) << "Unmounted " << androidObbTarget;
|
||||
}
|
||||
|
||||
// Always unmount data and obb dirs as they are mounted to lowerfs for speeding up access.
|
||||
std::string androidDataTarget(
|
||||
StringPrintf("/mnt/user/%d/%s/%d/Android/data", userId, label.c_str(), userId));
|
||||
|
||||
LOG(INFO) << "Unmounting " << androidDataTarget;
|
||||
auto status = UnmountTree(androidDataTarget);
|
||||
if (status != OK) {
|
||||
return status;
|
||||
}
|
||||
LOG(INFO) << "Unmounted " << androidDataTarget;
|
||||
|
||||
std::string androidObbTarget(
|
||||
StringPrintf("/mnt/user/%d/%s/%d/Android/obb", userId, label.c_str(), userId));
|
||||
|
||||
LOG(INFO) << "Unmounting " << androidObbTarget;
|
||||
status = UnmountTree(androidObbTarget);
|
||||
if (status != OK) {
|
||||
return status;
|
||||
}
|
||||
LOG(INFO) << "Unmounted " << androidObbTarget;
|
||||
return OK;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue