diff options
author | Josh Triplett <josh@joshtriplett.org> | 2020-03-29 22:21:41 +0200 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2020-04-16 05:58:48 +0200 |
commit | 9033783c8cfda0834cf384940162e2bf1e9a6db7 (patch) | |
tree | 44bad83fc593e635bb021b7d32921f9e0ae1d808 /fs/ext4/ialloc.c | |
parent | ext4: use non-movable memory for superblock readahead (diff) | |
download | linux-9033783c8cfda0834cf384940162e2bf1e9a6db7.tar.xz linux-9033783c8cfda0834cf384940162e2bf1e9a6db7.zip |
ext4: fix return-value types in several function comments
The documentation comments for ext4_read_block_bitmap_nowait and
ext4_read_inode_bitmap describe them as returning NULL on error, but
they return an ERR_PTR on error; update the documentation to match.
The documentation comment for ext4_wait_block_bitmap describes it as
returning 1 on error, but it returns -errno on error; update the
documentation to match.
Signed-off-by: Josh Triplett <josh@joshtriplett.org>
Reviewed-by: Ritesh Harani <riteshh@linux.ibm.com>
Link: https://lore.kernel.org/r/60a3f4996f4932c45515aaa6b75ca42f2a78ec9b.1585512514.git.josh@joshtriplett.org
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/ialloc.c')
-rw-r--r-- | fs/ext4/ialloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/ialloc.c b/fs/ext4/ialloc.c index b420c9dc444d..9faaf32be5cc 100644 --- a/fs/ext4/ialloc.c +++ b/fs/ext4/ialloc.c @@ -113,7 +113,7 @@ verified: * Read the inode allocation bitmap for a given block_group, reading * into the specified slot in the superblock's bitmap cache. * - * Return buffer_head of bitmap on success or NULL. + * Return buffer_head of bitmap on success, or an ERR_PTR on error. */ static struct buffer_head * ext4_read_inode_bitmap(struct super_block *sb, ext4_group_t block_group) |