Received: by 2002:a05:6a10:c604:0:0:0:0 with SMTP id y4csp3712962pxt; Tue, 10 Aug 2021 09:36:48 -0700 (PDT) X-Google-Smtp-Source: ABdhPJw/j2LoGKO2ywoU7HPLiFowqrK6JyRuKzWeiyINwJMJAxJ/rR/3x5lpxa/nR1o8lkRI09/o X-Received: by 2002:a05:6402:95c:: with SMTP id h28mr6144092edz.199.1628613408191; Tue, 10 Aug 2021 09:36:48 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1628613408; cv=none; d=google.com; s=arc-20160816; b=QrkU1fFzT3pvbpGNMHHlv0OR1qGsIREGxgJK7x4iGgmbePY75W1h8dqy0g1sqwB/wf LBGV6IZUt8JuBMI4CQontTihzrmdUArsyLnYKvrFsb1DptZchRa5R12jDUWVpotI9HYf twH1okvwQMnQebKm37DmOtXCADe+Rm0YlyABzpP56ZRzX8ury9tfZbff/XZY5O68z7S6 nyZnPna0P5cZ6rlGuafoC1C/WeyPL1kPtigS99Wo5PwRwR4DHwUlk1+70gcSPaHrxgqf 8HoE2pywj9WyJ8z1fXiVvBVjHVbxVpSJoXEXUWTibQqPO2Nq36xYOIReyd13qduUTjcr kfgA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:in-reply-to:content-disposition:mime-version :references:message-id:subject:cc:to:from:date; bh=YRgaw7xvz09U91vmgVKSk+4sDx0oyDRK6b6Wr8xiVYA=; b=rJfh+O6EdqNHLb+AcnbEK1SF6i7GfAeEMg7fwQehT+loXOUUHNys7DPxczCUtuWxFQ 19o26Ko//te5e9SZaD3RoAlqlreAkjNt2LVLXnza8AYcNHMe6V6PYXXK3YvIfqQtskhU TzmhNjw0o5HlzeFXScnqdQIfuTX0eG9MT1TMe5vWSUZU7QQ0M6ZYdzTwf3yKUO78a4Su mBzApXoXKXi/RX6YAi/PIa/2soRhzpoAcL1u4tz2UuUqPrdAoP5IrVKWucIdrvrzh6on 2fYS0jDOiq50lLvfIAnyd8pA6se/q5MjI4jPS1O7PwJjcNUi0TzL38GfpQcpXwooDRhE wXUw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id r14si9657632ejc.394.2021.08.10.09.36.23; Tue, 10 Aug 2021 09:36:48 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S242073AbhHJOL6 (ORCPT + 99 others); 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