From: Alejandro Colomar <alx@kernel.org>
To: Bhavik Sachdev <b.sachdev1904@gmail.com>
Cc: linux-man@vger.kernel.org, criu@lists.linux.dev,
Andrei Vagin <avagin@gmail.com>,
Pavel Tikhomirov <ptikhomirov@virtuozzo.com>,
Jeff Layton <jlayton@kernel.org>,
Miklos Szeredi <miklos@szeredi.hu>,
Josef Bacik <josef@toxicpanda.com>,
Christian Brauner <brauner@kernel.org>
Subject: Re: [PATCH v1 09/10] man/man2/statmount.2: Document req.mnt_ns_fd
Date: Wed, 11 Feb 2026 15:01:10 +0100 [thread overview]
Message-ID: <aYyLe7m6A47F0cc2@devuan> (raw)
In-Reply-To: <43470f57e3a7ffdb7646e32a66b458e104b391f4.1770671863.git.b.sachdev1904@gmail.com>
[-- Attachment #1: Type: text/plain, Size: 2465 bytes --]
On 2026-02-10T02:47:42+0530, Bhavik Sachdev wrote:
> Document the new mnt_ns_fd parameter to struct mnt_id_req.
>
> req.mnt_ns_fd can be used to query for a mount in a foreign mount
> namespace.
>
> The mnt_ns_fd parameter description is based on this commit message [1].
>
> Link [1]:
> <https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=9020d0d844ad58a051f90b1e5b82ba34123925b9>
>
> Signed-off-by: Bhavik Sachdev <b.sachdev1904@gmail.com>
> ---
> man/man2/statmount.2 | 21 ++++++++++++++++++++-
> 1 file changed, 20 insertions(+), 1 deletion(-)
>
> diff --git a/man/man2/statmount.2 b/man/man2/statmount.2
> index 0b906a334..e835eb0f6 100644
> --- a/man/man2/statmount.2
> +++ b/man/man2/statmount.2
> @@ -24,6 +24,7 @@ .SH SYNOPSIS
> .EX
> .B struct mnt_id_req {
> .BR " __u32 size;" " /* sizeof(struct mnt_id_req) */"
> +.BR " __u32 mnt_ns_fd;" " /* fd of mnt_ns to query the mnt_id in */"
> .BR " __u64 mnt_id;" " /* The mnt_id being queried */"
> .BR " __u64 param;" " /* An ORed combination of the STATMOUNT_ constants */"
> .BR " __u32 mnt_ns_id;" " /* The id of mnt_ns to query the mnt_id in */"
> @@ -74,7 +75,9 @@ .SH DESCRIPTION
> To access a mount's status,
> the caller must have CAP_SYS_ADMIN in the user namespace.
> In case of accessing a mount in a foreign mount namespace (specified via
> -.IR req.mnt_ns_id ),
> +.I req.mnt_ns_id
> +or
> +.IR req.mnt_ns_fd ),
> the foreign mount namespace should be child of the current namespace.
> .P
> This function returns information about a mount,
> @@ -97,6 +100,15 @@ .SS The mnt_id_req structure
> it should always be set to
> .IR sizeof(struct\~mnt_id_req) .
> .P
> +.I req.mnt_ns_fd
> +can be obtained from
> +.B PIDFD_GET_MNT_NAMESPACE
> +.BR ioctl (2)
> +operation or by opening a file descriptor to
> +.IR /proc/[pid]/ns/mnt
Reformat:
.IR /proc/ pid /ns/mnt
Cheers,
Alex
> +and is used to specify a foreign mount namespace in which to query
> +.IR req.mnt_id .
> +.P
> .I req.mnt_id
> can be obtained from either
> .BR statx (2)
> @@ -365,6 +377,13 @@ .SH ERRORS
> .I req
> is of insufficient size to be utilized.
> .TP
> +.B EINVAL
> +Both
> +.I req.mnt_ns_id
> +and
> +.I req.mnt_ns_fd
> +were set.
> +.TP
> .B E2BIG
> .I req
> is too large.
> --
> 2.53.0
>
>
--
<https://www.alejandro-colomar.es>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
next prev parent reply other threads:[~2026-02-11 14:01 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-09 21:17 [PATCH v1 00/10] man/man2/statmount.2: Document New Features Bhavik Sachdev
2026-02-09 21:17 ` [PATCH v1 01/10] man/man2/statmount.2: Document req.mnt_ns_id and STATMOUNT_MNT_NS_ID Bhavik Sachdev
2026-02-11 13:39 ` Alejandro Colomar
2026-02-09 21:17 ` [PATCH v1 02/10] man/man2/statmount.2: Document STATMOUNT_MNT_OPTS Bhavik Sachdev
2026-02-11 13:43 ` Alejandro Colomar
2026-02-09 21:17 ` [PATCH v1 03/10] man/man2/statmount.2: Document STATMOUNT_FS_SUBTYPE Bhavik Sachdev
2026-02-09 21:17 ` [PATCH v1 04/10] man/man2/statmount.2: Document STATMOUNT_SB_SOURCE Bhavik Sachdev
2026-02-09 21:17 ` [PATCH v1 05/10] man/man2/statmount.2: Document STATMOUNT_OPT_ARRAY Bhavik Sachdev
2026-02-11 13:45 ` Alejandro Colomar
2026-02-09 21:17 ` [PATCH v1 06/10] man/man2/statmount.2: Document STATMOUNT_OPT_SEC_ARRAY Bhavik Sachdev
2026-02-11 13:49 ` Alejandro Colomar
2026-02-09 21:17 ` [PATCH v1 07/10] man/man2/statmount.2: Document STATMOUNT_{UIDMAP,GIDMAP} Bhavik Sachdev
2026-02-11 13:59 ` Alejandro Colomar
2026-02-13 10:05 ` Bhavik Sachdev
2026-02-13 13:31 ` Alejandro Colomar
2026-02-09 21:17 ` [PATCH v1 08/10] man/man2/statmount.2: Document STATMOUNT_SUPPORTED_MASK Bhavik Sachdev
2026-02-09 21:17 ` [PATCH v1 09/10] man/man2/statmount.2: Document req.mnt_ns_fd Bhavik Sachdev
2026-02-11 14:01 ` Alejandro Colomar [this message]
2026-02-09 21:17 ` [PATCH v1 10/10] man/man2/statmount.2: Document STATMOUNT_BY_FD Bhavik Sachdev
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=aYyLe7m6A47F0cc2@devuan \
--to=alx@kernel.org \
--cc=avagin@gmail.com \
--cc=b.sachdev1904@gmail.com \
--cc=brauner@kernel.org \
--cc=criu@lists.linux.dev \
--cc=jlayton@kernel.org \
--cc=josef@toxicpanda.com \
--cc=linux-man@vger.kernel.org \
--cc=miklos@szeredi.hu \
--cc=ptikhomirov@virtuozzo.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.