diff options
author | Matthew Wilcox (Oracle) <willy@infradead.org> | 2023-08-18 22:11:21 +0200 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2023-08-21 18:56:50 +0200 |
commit | df1ae36a4a0e92340daea12e88d43eeb2eb013b1 (patch) | |
tree | 97e29fd0cdfad5a2c224b15ceaf488676fac1a62 /fs/ext2/inode.c | |
parent | ext2: improve consistency of ext2_fsblk_t datatype usage (diff) | |
download | linux-df1ae36a4a0e92340daea12e88d43eeb2eb013b1.tar.xz linux-df1ae36a4a0e92340daea12e88d43eeb2eb013b1.zip |
ext2: Fix kernel-doc warnings
Document a few parameters of ext2_alloc_blocks(). Redo the
alloc_new_reservation() and find_next_reservable_window() kernel-doc
entirely.
Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Signed-off-by: Jan Kara <jack@suse.cz>
Message-Id: <20230818201121.2720451-1-willy@infradead.org>
Diffstat (limited to 'fs/ext2/inode.c')
-rw-r--r-- | fs/ext2/inode.c | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/fs/ext2/inode.c b/fs/ext2/inode.c index 8ba631154243..c7b04c15dd5b 100644 --- a/fs/ext2/inode.c +++ b/fs/ext2/inode.c @@ -385,12 +385,16 @@ ext2_blks_to_allocate(Indirect * branch, int k, unsigned long blks, } /** - * ext2_alloc_blocks: multiple allocate blocks needed for a branch - * @indirect_blks: the number of blocks need to allocate for indirect - * blocks - * @blks: the number of blocks need to allocate for direct blocks - * @new_blocks: on return it will store the new block numbers for - * the indirect blocks(if needed) and the first direct block, + * ext2_alloc_blocks: Allocate multiple blocks needed for a branch. + * @inode: Owner. + * @goal: Preferred place for allocation. + * @indirect_blks: The number of blocks needed to allocate for indirect blocks. + * @blks: The number of blocks need to allocate for direct blocks. + * @new_blocks: On return it will store the new block numbers for + * the indirect blocks(if needed) and the first direct block. + * @err: Error pointer. + * + * Return: Number of blocks allocated. */ static int ext2_alloc_blocks(struct inode *inode, ext2_fsblk_t goal, int indirect_blks, int blks, |