Merge "Fix the incorrect parameter quota when userdata is formatted with EXT4" am: 8bd25f8e74
am: 9788b022dd
Original change: https://android-review.googlesource.com/c/platform/system/vold/+/1825558 Change-Id: I1429919b9b952488484e51e88a5ff8a5c5ad24d0
This commit is contained in:
commit
b476bc2041
1 changed files with 1 additions and 1 deletions
|
@ -198,7 +198,7 @@ status_t Format(const std::string& source, unsigned long numSectors, const std::
|
||||||
cmd.push_back("-E");
|
cmd.push_back("-E");
|
||||||
std::string extopts = "";
|
std::string extopts = "";
|
||||||
if (needs_casefold) extopts += "encoding=utf8,";
|
if (needs_casefold) extopts += "encoding=utf8,";
|
||||||
if (needs_projid) extopts += "quotatype=prjquota,";
|
if (needs_projid) extopts += "quotatype=usrquota:grpquota:prjquota,";
|
||||||
cmd.push_back(extopts);
|
cmd.push_back(extopts);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue