Skip to content

Commit b79bdfd

Browse files
konisakpm00
authored andcommitted
nilfs2: add missing argument description for __nilfs_error()
Patch series "This series fixes a number of formatting issues in kernel doc comments" This series fixes a number of formatting issues in kernel doc comments that were detected as warnings by the kernel-doc script, making violations more noticeable when adding or modifying kernel doc. There are still warnings output by "kernel-doc -Wall", but they are widespread, so I plan to fix them at another time while considering priorities. This patch (of 8): Add missing argument description to __nilfs_error function and remove the following warnings from kernel-doc script output: fs/nilfs2/super.c:121: warning: Function parameter or struct member 'sb' not described in '__nilfs_error' fs/nilfs2/super.c:121: warning: Function parameter or struct member 'function' not described in '__nilfs_error' fs/nilfs2/super.c:121: warning: Function parameter or struct member 'fmt' not described in '__nilfs_error' Link: https://lkml.kernel.org/r/20240816074319.3253-1-konishi.ryusuke@gmail.com Link: https://lkml.kernel.org/r/20240816074319.3253-2-konishi.ryusuke@gmail.com Signed-off-by: Ryusuke Konishi <konishi.ryusuke@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
1 parent 299910d commit b79bdfd

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

fs/nilfs2/super.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,10 @@ static void nilfs_set_error(struct super_block *sb)
105105

106106
/**
107107
* __nilfs_error() - report failure condition on a filesystem
108+
* @sb: super block instance
109+
* @function: name of calling function
110+
* @fmt: format string for message to be output
111+
* @...: optional arguments to @fmt
108112
*
109113
* __nilfs_error() sets an ERROR_FS flag on the superblock as well as
110114
* reporting an error message. This function should be called when

0 commit comments

Comments
 (0)