mount.2: MS_SILENT is ignored when changing propagation type

MS_SILENT can be specified when changing propagation type,
but is ignored, as far as I can see from reading the code.
(The flags are passed to do_change_type(), which, as well
as the propagation flags, allows MS_REC and MS_SILENT
(in flags_to_propagation_type()), but does noting with
MS_SILENT. (Linux 4.17 source)

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2018-08-20 15:58:55 +02:00
parent 158c5bc0f0
commit 182c1e839c
1 changed files with 2 additions and 1 deletions

View File

@ -454,7 +454,8 @@ The only other flags that can be specified while changing
the propagation type are
.BR MS_REC
and
.BR MS_SILENT .
.BR MS_SILENT
(which is ignored).
.PP
The
.IR source ,