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

Commit c333e073 authored by Roel Kluin's avatar Roel Kluin Committed by Theodore Ts'o
Browse files

ext4: remove redundant test on unsigned



unsigned i_block cannot be less than 0.

Signed-off-by: default avatarRoel Kluin <roel.kluin@gmail.com>
Signed-off-by: default avatar"Theodore Ts'o" <tytso@mit.edu>
parent 785b4b3a
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -341,9 +341,7 @@ static int ext4_block_to_path(struct inode *inode,
	int n = 0;
	int final = 0;

	if (i_block < 0) {
		ext4_warning(inode->i_sb, "ext4_block_to_path", "block < 0");
	} else if (i_block < direct_blocks) {
	if (i_block < direct_blocks) {
		offsets[n++] = i_block;
		final = direct_blocks;
	} else if ((i_block -= direct_blocks) < indirect_blocks) {