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

Commit d5d19d1e authored by Yi-Yo Chiang's avatar Yi-Yo Chiang Committed by Automerger Merge Worker
Browse files

fs_mgr_vendor_overlay: Mount vendor overlay with noatime am: 1d56fe65

Original change: https://googleplex-android-review.googlesource.com/c/platform/system/core/+/14660510

Change-Id: I4618ea10c9e9b5881cde55164ca9b1a5d1004442
parents da15e529 1d56fe65
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -92,7 +92,7 @@ bool fs_mgr_vendor_overlay_mount(const std::pair<std::string, std::string>& moun
    }
    auto report = "__mount(source=overlay,target="s + vendor_mount_point + ",type=overlay," +
                  options + ")=";
    auto ret = mount("overlay", vendor_mount_point.c_str(), "overlay", MS_RDONLY | MS_RELATIME,
    auto ret = mount("overlay", vendor_mount_point.c_str(), "overlay", MS_RDONLY | MS_NOATIME,
                     options.c_str());
    if (ret) {
        PERROR << report << ret;