aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJiapeng Zhong <[email protected]>2021-02-24 12:07:09 -0800
committerLinus Torvalds <[email protected]>2021-02-24 13:38:32 -0800
commitc93b0a99260741a4fe39c0a8b73f45f34a5b7868 (patch)
treef4f658b751d1aebc7b586a8821b9c74163081d3d
parent1d88433bb00853bed0c776b6ad9156855c127da0 (diff)
mm/hugetlb: simplify the calculation of variables
Fix the following coccicheck warnings: mm/hugetlb.c:3372:20-22: WARNING !A || A && B is equivalent to !A || B. Link: https://lkml.kernel.org/r/[email protected] Signed-off-by: Jiapeng Zhong <[email protected]> Reported-by: Abaci Robot <[email protected]> Reviewed-by: Miaohe Lin <[email protected]> Reviewed-by: Mike Kravetz <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r--mm/hugetlb.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/mm/hugetlb.c b/mm/hugetlb.c
index e8d39b0fe4bd..6920c71d7e0d 100644
--- a/mm/hugetlb.c
+++ b/mm/hugetlb.c
@@ -3420,8 +3420,7 @@ static unsigned int allowed_mems_nr(struct hstate *h)
mpol_allowed = policy_nodemask_current(gfp_mask);
for_each_node_mask(node, cpuset_current_mems_allowed) {
- if (!mpol_allowed ||
- (mpol_allowed && node_isset(node, *mpol_allowed)))
+ if (!mpol_allowed || node_isset(node, *mpol_allowed))
nr += array[node];
}