2017-07-17 06:11:22

by Maninder Singh

[permalink] [raw]
Subject: [PATCH 1/1] ext4: correcting copy paste error.

Error reported by static tool for copy paste
issue, fixing the same.

Signed-off-by: Maninder Singh <[email protected]>
Signed-off-by: Vaneet Narang <[email protected]>
---
fs/ext4/extents.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/ext4/extents.c b/fs/ext4/extents.c
index 2a97dff..5d337ca 100644
--- a/fs/ext4/extents.c
+++ b/fs/ext4/extents.c
@@ -5837,7 +5837,7 @@ int ext4_insert_range(struct inode *inode, loff_t offset, loff_t len)
if (e1_blk > lblk1)
next1 = e1_blk;
if (e2_blk > lblk2)
- next2 = e1_blk;
+ next2 = e2_blk;
/* Do we have something to swap */
if (next1 == EXT_MAX_BLOCKS || next2 == EXT_MAX_BLOCKS)
goto finish;
--
1.9.1


2017-08-06 05:33:31

by Theodore Ts'o

[permalink] [raw]
Subject: Re: [PATCH 1/1] ext4: correcting copy paste error.

On Mon, Jul 17, 2017 at 11:37:44AM +0530, Maninder Singh wrote:
> Error reported by static tool for copy paste
> issue, fixing the same.
>
> Signed-off-by: Maninder Singh <[email protected]>
> Signed-off-by: Vaneet Narang <[email protected]>

Thanks, applied.

- Ted