Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 92487860 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "fs_mgr: Support nosymfollow mount option" into main

parents 326534aa 589afaa8
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -75,6 +75,7 @@ FlagList kMountFlagsList[] = {
        {"slave", MS_SLAVE},
        {"shared", MS_SHARED},
        {"lazytime", MS_LAZYTIME},
        {"nosymfollow", MS_NOSYMFOLLOW},
        {"defaults", 0},
};

+1 −0
Original line number Diff line number Diff line
@@ -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},
        };
+1 −0
Original line number Diff line number Diff line
@@ -471,6 +471,7 @@ static struct {
    { "private",    MS_PRIVATE },
    { "slave",      MS_SLAVE },
    { "shared",     MS_SHARED },
    { "nosymfollow", MS_NOSYMFOLLOW },
    { "defaults",   0 },
    { 0,            0 },
};