Merge "Fix the incorrect parameter quota when userdata is formatted with EXT4" am: 8bd25f8e74

Original change: https://android-review.googlesource.com/c/platform/system/vold/+/1825558

Change-Id: I258381abf0a516987abad5357165f8cc6daec4fd
This commit is contained in:
Daniel Rosenberg 2021-09-20 22:02:27 +00:00 committed by Automerger Merge Worker
commit 9788b022dd

View file

@ -198,7 +198,7 @@ status_t Format(const std::string& source, unsigned long numSectors, const std::
cmd.push_back("-E");
std::string extopts = "";
if (needs_casefold) extopts += "encoding=utf8,";
if (needs_projid) extopts += "quotatype=prjquota,";
if (needs_projid) extopts += "quotatype=usrquota:grpquota:prjquota,";
cmd.push_back(extopts);
}