Skip to content

Commit

Permalink
ext4: quiet sparse noise about plain integer as NULL pointer
Browse files Browse the repository at this point in the history
The third parameter to ext4_free_blocks is a struct buffer_head *.  This
parameter should be NULL not 0.

This quiets the sparse noise:

warning: Using plain integer as NULL pointer

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
  • Loading branch information
H Hartley Sweeten authored and Theodore Ts'o committed Oct 18, 2011
1 parent e6705f7 commit ee90d57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/ext4/extents.c
Original file line number Diff line number Diff line change
Expand Up @@ -2291,7 +2291,7 @@ static int ext4_remove_blocks(handle_t *handle, struct inode *inode,
start = ext4_ext_pblock(ex);

ext_debug("free first %u blocks starting %llu\n", num, start);
ext4_free_blocks(handle, inode, 0, start, num, flags);
ext4_free_blocks(handle, inode, NULL, start, num, flags);

} else {
printk(KERN_INFO "strange request: removal(2) "
Expand Down

0 comments on commit ee90d57

Please sign in to comment.