commit | 8bd25f8e74e68983a8dc0ecd2fb105d4057d0cde | [log] [tgz] |
---|---|---|
author | Daniel Rosenberg <drosen@google.com> | Mon Sep 20 21:44:44 2021 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Mon Sep 20 21:44:44 2021 +0000 |
tree | ec03d8dc0a5cfc0ddacb59254d1dd366a53cc285 | |
parent | 530329222f6dbba08e5ba7e7fada272912113227 [diff] | |
parent | 3101ac01aca11ab057875d47d87081c4de42c6b6 [diff] |
Merge "Fix the incorrect parameter quota when userdata is formatted with EXT4"
diff --git a/fs/Ext4.cpp b/fs/Ext4.cpp index 6bc7ad2..7a5f5da 100644 --- a/fs/Ext4.cpp +++ b/fs/Ext4.cpp
@@ -198,7 +198,7 @@ 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); }