Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8f72fbdf authored by Alexander Beregalov's avatar Alexander Beregalov Committed by Theodore Ts'o
Browse files

ext4: fix printk format warning



fs/ext4/balloc.c:607: warning: format '%lld' expects type 'long long int', but argument 2 has type 's64'
fs/ext4/inode.c:1822: warning: format '%lld' expects type 'long long int', but argument 2 has type 's64'
fs/ext4/inode.c:1824: warning: format '%lld' expects type 'long long int', but argument 2 has type 's64'

Signed-off-by: default avatarAlexander Beregalov <a.beregalov@gmail.com>
Signed-off-by: default avatarTheodore Ts'o <tytso@mit.edu>
parent fe0bdec6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -614,7 +614,7 @@ int ext4_has_free_blocks(struct ext4_sb_info *sbi, s64 nblocks)
		if (dirty_blocks < 0) {
			printk(KERN_CRIT "Dirty block accounting "
					"went wrong %lld\n",
					dirty_blocks);
					(long long)dirty_blocks);
		}
	}
	/* Check whether we have space after
+2 −2
Original line number Diff line number Diff line
@@ -1831,9 +1831,9 @@ static void ext4_print_free_blocks(struct inode *inode)
			ext4_count_free_blocks(inode->i_sb));
	printk(KERN_EMERG "Free/Dirty block details\n");
	printk(KERN_EMERG "free_blocks=%lld\n",
			percpu_counter_sum(&sbi->s_freeblocks_counter));
			(long long)percpu_counter_sum(&sbi->s_freeblocks_counter));
	printk(KERN_EMERG "dirty_blocks=%lld\n",
			percpu_counter_sum(&sbi->s_dirtyblocks_counter));
			(long long)percpu_counter_sum(&sbi->s_dirtyblocks_counter));
	printk(KERN_EMERG "Block reservation details\n");
	printk(KERN_EMERG "i_reserved_data_blocks=%lu\n",
			EXT4_I(inode)->i_reserved_data_blocks);