mirror of
https://github.com/systemd/systemd-stable.git
synced 2025-01-12 09:17:44 +03:00
umount: MS_MGC_VAL is so 90s
This commit is contained in:
parent
5a7e959984
commit
8caf9d6836
@ -440,7 +440,7 @@ static int mount_points_list_remount_read_only(MountPoint **head, bool *changed)
|
||||
LIST_FOREACH_SAFE(mount_point, m, n, *head) {
|
||||
|
||||
/* Trying to remount read-only */
|
||||
if (mount(NULL, m->path, NULL, MS_MGC_VAL|MS_REMOUNT|MS_RDONLY, NULL) == 0) {
|
||||
if (mount(NULL, m->path, NULL, MS_REMOUNT|MS_RDONLY, NULL) == 0) {
|
||||
if (changed)
|
||||
*changed = true;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user