diff options
author | 2024-08-16 16:43:16 +0900 | |
---|---|---|
committer | 2024-09-01 20:43:36 -0700 | |
commit | 0e13ddee285ffa0815fa66e1eac4bf0fafd06ce4 (patch) | |
tree | 17ab334c53ff748aa89ed5967fb974b0ec922cab | |
parent | nilfs2: fix incorrect kernel-doc declaration of nilfs_palloc_req structure (diff) | |
download | wireguard-linux-0e13ddee285ffa0815fa66e1eac4bf0fafd06ce4.tar.xz wireguard-linux-0e13ddee285ffa0815fa66e1eac4bf0fafd06ce4.zip |
nilfs2: add missing description of nilfs_btree_path structure
Add missing kernel-doc comment for the 'bp_ctxt' member variable of the
nilfs_btree_path structure, and eliminate the following warning output by
the kenrel-doc script:
fs/nilfs2/btree.h:39: warning: Function parameter or struct member
'bp_ctxt' not described in 'nilfs_btree_path'
Link: https://lkml.kernel.org/r/20240816074319.3253-6-konishi.ryusuke@gmail.com
Signed-off-by: Ryusuke Konishi <konishi.ryusuke@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to '')
-rw-r--r-- | fs/nilfs2/btree.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/nilfs2/btree.h b/fs/nilfs2/btree.h index 92868e1a48ca..2a220f716c91 100644 --- a/fs/nilfs2/btree.h +++ b/fs/nilfs2/btree.h @@ -24,6 +24,7 @@ * @bp_index: index of child node * @bp_oldreq: ptr end request for old ptr * @bp_newreq: ptr alloc request for new ptr + * @bp_ctxt: context information for changing the key of a b-tree node block * @bp_op: rebalance operation */ struct nilfs_btree_path { |