Skip to content

Commit 88635ca

Browse files
gnehzuiltytso
authored andcommitted
ext4: add missing spaces to debugging printk's
Fix ext4_debug format in ext4_ext_handle_uninitialized_extents() and ext4_end_io_dio(). Signed-off-by: Zheng Liu <[email protected]> Signed-off-by: "Theodore Ts'o" <[email protected]>
1 parent 1ba3726 commit 88635ca

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

fs/ext4/extents.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3456,8 +3456,8 @@ ext4_ext_handle_uninitialized_extents(handle_t *handle, struct inode *inode,
34563456
int err = 0;
34573457
ext4_io_end_t *io = EXT4_I(inode)->cur_aio_dio;
34583458

3459-
ext_debug("ext4_ext_handle_uninitialized_extents: inode %lu, logical"
3460-
"block %llu, max_blocks %u, flags %d, allocated %u",
3459+
ext_debug("ext4_ext_handle_uninitialized_extents: inode %lu, logical "
3460+
"block %llu, max_blocks %u, flags %x, allocated %u\n",
34613461
inode->i_ino, (unsigned long long)map->m_lblk, map->m_len,
34623462
flags, allocated);
34633463
ext4_ext_show_leaf(inode, path);

fs/ext4/inode.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2760,7 +2760,7 @@ static void ext4_end_io_dio(struct kiocb *iocb, loff_t offset,
27602760
if (!io_end || !size)
27612761
goto out;
27622762

2763-
ext_debug("ext4_end_io_dio(): io_end 0x%p"
2763+
ext_debug("ext4_end_io_dio(): io_end 0x%p "
27642764
"for inode %lu, iocb 0x%p, offset %llu, size %llu\n",
27652765
iocb->private, io_end->inode->i_ino, iocb, offset,
27662766
size);

0 commit comments

Comments
 (0)