diff options
author | Peng Zhang <[email protected]> | 2023-11-20 15:09:36 +0800 |
---|---|---|
committer | Andrew Morton <[email protected]> | 2023-12-12 10:57:00 -0800 |
commit | 026b935cd929c18d496fbf9432e8174ec40cdbc8 (patch) | |
tree | 2355d8a7cb947c76e622808ca7bb974711e90adc | |
parent | c5e941213826d68b0d938dae540d9d6c143560ec (diff) |
maple_tree: delete one of the two identical checks
There are two identical checks, delete one of them.
Link: https://lkml.kernel.org/r/[email protected]
Signed-off-by: Peng Zhang <[email protected]>
Reviewed-by: Liam R. Howlett <[email protected]>
Cc: Dan Carpenter <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
-rw-r--r-- | lib/maple_tree.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/maple_tree.c b/lib/maple_tree.c index 65c25e88c47e..ca37cdf4b82e 100644 --- a/lib/maple_tree.c +++ b/lib/maple_tree.c @@ -4117,9 +4117,6 @@ static inline bool mas_wr_append(struct ma_wr_state *wr_mas, if (mt_in_rcu(mas->tree)) return false; - if (mas->offset != mas->end) - return false; - end = mas->end; if (mas->offset != end) return false; |