summaryrefslogtreecommitdiff
path: root/Documentation/filesystems
diff options
context:
space:
mode:
authorRandy Dunlap <rdunlap@infradead.org>2024-11-25 13:50:21 -0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2024-12-09 10:32:31 +0100
commit7ea2a3d4014275450a0e87c359e2ebb5da54a859 (patch)
tree82a1399142edb1e1273d32d32937910475059044 /Documentation/filesystems
parent06f2fcf49854ad05a09d09e0dbee6544fff04695 (diff)
downloadlinux-7ea2a3d4014275450a0e87c359e2ebb5da54a859.tar.gz
linux-7ea2a3d4014275450a0e87c359e2ebb5da54a859.tar.bz2
linux-7ea2a3d4014275450a0e87c359e2ebb5da54a859.zip
fs_parser: update mount_api doc to match function signature
[ Upstream commit c66f759832a83cb273ba5a55c66dcc99384efa74 ] Add the missing 'name' parameter to the mount_api documentation for fs_validate_description(). Fixes: 96cafb9ccb15 ("fs_parser: remove fs_parameter_description name field") Signed-off-by: Randy Dunlap <rdunlap@infradead.org> Link: https://lore.kernel.org/r/20241125215021.231758-1-rdunlap@infradead.org Cc: Eric Sandeen <sandeen@redhat.com> Cc: David Howells <dhowells@redhat.com> Cc: Al Viro <viro@zeniv.linux.org.uk> Cc: Christian Brauner <brauner@kernel.org> Cc: Jan Kara <jack@suse.cz> Cc: Jonathan Corbet <corbet@lwn.net> Cc: linux-doc@vger.kernel.org Signed-off-by: Christian Brauner <brauner@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'Documentation/filesystems')
-rw-r--r--Documentation/filesystems/mount_api.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/Documentation/filesystems/mount_api.rst b/Documentation/filesystems/mount_api.rst
index 9aaf6ef75eb5..0c69aa574ab9 100644
--- a/Documentation/filesystems/mount_api.rst
+++ b/Documentation/filesystems/mount_api.rst
@@ -766,7 +766,8 @@ process the parameters it is given.
* ::
- bool fs_validate_description(const struct fs_parameter_description *desc);
+ bool fs_validate_description(const char *name,
+ const struct fs_parameter_description *desc);
This performs some validation checks on a parameter description. It
returns true if the description is good and false if it is not. It will