Merge "fs_mgr: overlayfs: erofs is in staging" am: 932e77137c

am: 7859d9c581

Change-Id: I01b8848db10d40e531b6fc771d55f4b0c8d06088
This commit is contained in:
Mark Salyzyn 2019-01-22 17:35:40 -08:00 committed by android-build-merger
commit 91f70ccecd

View file

@ -137,9 +137,9 @@ bool fs_mgr_filesystem_has_space(const std::string& mount_point) {
bool fs_mgr_overlayfs_enabled(FstabEntry* entry) {
// readonly filesystem, can not be mount -o remount,rw
// if squashfs or if free space is (near) zero making such a remount
// for squashfs, erofs or if free space is (near) zero making such a remount
// virtually useless, or if there are shared blocks that prevent remount,rw
if ("squashfs" == entry->fs_type || !fs_mgr_filesystem_has_space(entry->mount_point)) {
if (!fs_mgr_filesystem_has_space(entry->mount_point)) {
return true;
}
if (entry->fs_mgr_flags.logical) {