diff options
| author | Alyssa Ross <hi@alyssa.is> | 2025-12-19 00:05:17 +0100 |
|---|---|---|
| committer | Alejandro Colomar <alx@kernel.org> | 2025-12-23 22:31:48 +0100 |
| commit | 5f2a6c51cbf8cd62c89991f93215b4c00a32052d (patch) | |
| tree | 0ed73050e3de20fdf827b33b8282877079774be0 | |
| parent | 8a63cba9874196f5b81d2a2bc9e9c4afd3c7d381 (diff) | |
| download | man-pages-5f2a6c51cbf8cd62c89991f93215b4c00a32052d.tar.gz | |
man/man2/statmount.2: Document that flags must be 0
Reading the man page for the first time, I assumed the lack of
mentioned flags meant that there weren't any, but I had to check the
kernel source to be sure. Sure enough:
if (flags)
return -EINVAL;
Signed-off-by: Alyssa Ross <hi@alyssa.is>
Message-ID: <20251218230517.244704-1-hi@alyssa.is>
Signed-off-by: Alejandro Colomar <alx@kernel.org>
| -rw-r--r-- | man/man2/statmount.2 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/man/man2/statmount.2 b/man/man2/statmount.2 index 8a83d5e348..cdc96da923 100644 --- a/man/man2/statmount.2 +++ b/man/man2/statmount.2 @@ -68,6 +68,8 @@ The returned buffer is a which is of size .I bufsize with the fields filled in as described below. +.I flags +must be 0. .P (Note that reserved space and padding is omitted.) .SS The mnt_id_req structure |
