Merge "fs_mgr: Support nosymfollow mount option" into main am: 92487860cf am: 0b0b273f42
Original change: https://android-review.googlesource.com/c/platform/system/core/+/3368571 Change-Id: I50211159a8c118c43bb94a1662d5e2e0ac64bf05 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
commit
fd1e8b2f10
3 changed files with 3 additions and 0 deletions
|
|
@ -75,6 +75,7 @@ FlagList kMountFlagsList[] = {
|
|||
{"slave", MS_SLAVE},
|
||||
{"shared", MS_SHARED},
|
||||
{"lazytime", MS_LAZYTIME},
|
||||
{"nosymfollow", MS_NOSYMFOLLOW},
|
||||
{"defaults", 0},
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -330,6 +330,7 @@ TEST(fs_mgr, fs_mgr_read_fstab_file_proc_mounts) {
|
|||
{"slave", MS_SLAVE},
|
||||
{"shared", MS_SHARED},
|
||||
{"lazytime", MS_LAZYTIME},
|
||||
{"nosymfollow", MS_NOSYMFOLLOW},
|
||||
{"defaults", 0},
|
||||
{0, 0},
|
||||
};
|
||||
|
|
|
|||
|
|
@ -471,6 +471,7 @@ static struct {
|
|||
{ "private", MS_PRIVATE },
|
||||
{ "slave", MS_SLAVE },
|
||||
{ "shared", MS_SHARED },
|
||||
{ "nosymfollow", MS_NOSYMFOLLOW },
|
||||
{ "defaults", 0 },
|
||||
{ 0, 0 },
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue