2014-04-13 12:52:58

by Fabian Frédérick

[permalink] [raw]
Subject: [PATCH 1/1] fs/ext4/extents.c: fix bool assignments

Fixing coccinelle warnings.

Cc: "Theodore Ts'o" <[email protected]>
Cc: Andrew Morton <[email protected]>
Signed-off-by: Fabian Frederick <[email protected]>
---
fs/ext4/extents.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/fs/ext4/extents.c b/fs/ext4/extents.c
index 82df3ce..c44f42c 100644
--- a/fs/ext4/extents.c
+++ b/fs/ext4/extents.c
@@ -5209,7 +5209,7 @@ ext4_ext_shift_path_extents(struct ext4_ext_path *path, ext4_lblk_t shift,
{
int depth, err = 0;
struct ext4_extent *ex_start, *ex_last;
- bool update = 0;
+ bool update = false;
depth = path->p_depth;

while (depth >= 0) {
@@ -5227,7 +5227,7 @@ ext4_ext_shift_path_extents(struct ext4_ext_path *path, ext4_lblk_t shift,
goto out;

if (ex_start == EXT_FIRST_EXTENT(path[depth].p_hdr))
- update = 1;
+ update = true;

*start = ex_last->ee_block +
ext4_ext_get_actual_len(ex_last);
--
1.8.3.2