[PATCH 1/1] mm: vmalloc: Simplify return boolean expression

From: Uladzislau Rezki (Sony)
Date: Thu Oct 20 2022 - 08:53:01 EST


A return expression of the __purge_vmap_area_lazy() function can
be simplified. Basically a boolean expression anyway is converted
to boolean values either to true or false.

Suggested-by: Christoph Hellwig <hch@xxxxxxxxxxxxx>
Signed-off-by: Uladzislau Rezki (Sony) <urezki@xxxxxxxxx>
---
mm/vmalloc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mm/vmalloc.c b/mm/vmalloc.c
index bd56f68bedf0..0685b477c71b 100644
--- a/mm/vmalloc.c
+++ b/mm/vmalloc.c
@@ -1787,7 +1787,7 @@ static bool __purge_vmap_area_lazy(unsigned long start, unsigned long end)

out:
trace_purge_vmap_area_lazy(start, end, num_purged_areas);
- return num_purged_areas > 0 ? true:false;
+ return num_purged_areas > 0;
}

/*
--
2.30.2