From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-3.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 46006C43214 for ; Tue, 10 Aug 2021 14:11:38 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 285FE60FDA for ; Tue, 10 Aug 2021 14:11:38 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S242132AbhHJOL6 (ORCPT ); Tue, 10 Aug 2021 10:11:58 -0400 Received: from mail.kernel.org ([198.145.29.99]:43290 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S240651AbhHJOL5 (ORCPT ); Tue, 10 Aug 2021 10:11:57 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 8C8FB60EC0; Tue, 10 Aug 2021 14:11:31 +0000 (UTC) Date: Tue, 10 Aug 2021 16:11:25 +0200 From: Christian Brauner To: "Michael Kerrisk (man-pages)" Cc: Alejandro Colomar , linux-fsdevel , lkml , linux-man , Christoph Hellwig Subject: Re: Questions re the new mount_setattr(2) manual page Message-ID: <20210810141125.nxmvnwpyjxajvxl4@wittgenstein> References: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Aug 10, 2021 at 09:12:14AM +0200, Michael Kerrisk (man-pages) wrote: > Hi Christian, > > One more question... > > >> The propagation field is used to specify the propagation typ > >> of the mount or mount tree. Mount propagation options are > >> mutually exclusive; that is, the propagation values behave > >> like an enum. The supported mount propagation types are: > > The manual page text doesn't actually say it, but if the 'propagation' > field is 0, then this means leave the propagation type unchanged, > right? This of course should be mentioned in the manual page. Yes, if none of the documented values is set the propagation is unchanged. Christian