diff options
author | Matthew Wilcox (Oracle) <willy@infradead.org> | 2023-08-18 23:08:24 +0300 |
---|---|---|
committer | Christian Brauner <brauner@kernel.org> | 2023-08-19 13:12:12 +0300 |
commit | 35931eb3945b8d38c31f8e956aee3cf31c52121b (patch) | |
tree | b63a6f1a4750f4542363699ba9d3e71ce22bc9f7 /fs/kernel_read_file.c | |
parent | ec05b12634ad007f7a37161ecb7cd243c3b1970c (diff) | |
download | linux-35931eb3945b8d38c31f8e956aee3cf31c52121b.tar.xz |
fs: Fix kernel-doc warnings
These have a variety of causes and a corresponding variety of solutions.
Signed-off-by: "Matthew Wilcox (Oracle)" <willy@infradead.org>
Message-Id: <20230818200824.2720007-1-willy@infradead.org>
Signed-off-by: Christian Brauner <brauner@kernel.org>
Diffstat (limited to 'fs/kernel_read_file.c')
-rw-r--r-- | fs/kernel_read_file.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/fs/kernel_read_file.c b/fs/kernel_read_file.c index 5d826274570c..c429c42a6867 100644 --- a/fs/kernel_read_file.c +++ b/fs/kernel_read_file.c @@ -8,16 +8,16 @@ /** * kernel_read_file() - read file contents into a kernel buffer * - * @file file to read from - * @offset where to start reading from (see below). - * @buf pointer to a "void *" buffer for reading into (if + * @file: file to read from + * @offset: where to start reading from (see below). + * @buf: pointer to a "void *" buffer for reading into (if * *@buf is NULL, a buffer will be allocated, and * @buf_size will be ignored) - * @buf_size size of buf, if already allocated. If @buf not + * @buf_size: size of buf, if already allocated. If @buf not * allocated, this is the largest size to allocate. - * @file_size if non-NULL, the full size of @file will be + * @file_size: if non-NULL, the full size of @file will be * written here. - * @id the kernel_read_file_id identifying the type of + * @id: the kernel_read_file_id identifying the type of * file contents being read (for LSMs to examine) * * @offset must be 0 unless both @buf and @file_size are non-NULL |