commit | ee0e72bad7db53beed97faf630fb28432581cda7 | [log] [tgz] |
---|---|---|
author | Daniel Rosenberg <drosen@google.com> | Mon Sep 20 22:56:22 2021 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Mon Sep 20 22:56:22 2021 +0000 |
tree | 1a4d0f045ad4cfdd9dd5e1b4335f160e6a9ad7dc | |
parent | 0c9fbcbf2cb1b57d26bfb5f2a3c3d0289907262e [diff] | |
parent | bf19f0a80ba100a7cfad6339adda703b0fe58ac4 [diff] |
Merge "Fix the incorrect parameter quota when userdata is formatted with EXT4" am: 8bd25f8e74 am: 9788b022dd am: b476bc2041 am: a911c46678 am: bf19f0a80b Original change: https://android-review.googlesource.com/c/platform/system/vold/+/1825558 Change-Id: Ia4001ae753f5f84aaadbb6b2390e24049d0d1b11
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); }