mm/mempolicy.c: mpol_equal(): use bool
mpol_equal() logically returns a boolean. Use a bool type to slightly improve readability. Signed-off-by: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com> Cc: Stephen Wilson <wilsons@start.ca> Acked-by: David Rientjes <rientjes@google.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:

committed by
Linus Torvalds

szülő
0c176d52b0
commit
fcfb4dcc96
@@ -1983,28 +1983,28 @@ struct mempolicy *__mpol_cond_copy(struct mempolicy *tompol,
|
||||
}
|
||||
|
||||
/* Slow path of a mempolicy comparison */
|
||||
int __mpol_equal(struct mempolicy *a, struct mempolicy *b)
|
||||
bool __mpol_equal(struct mempolicy *a, struct mempolicy *b)
|
||||
{
|
||||
if (!a || !b)
|
||||
return 0;
|
||||
return false;
|
||||
if (a->mode != b->mode)
|
||||
return 0;
|
||||
return false;
|
||||
if (a->flags != b->flags)
|
||||
return 0;
|
||||
return false;
|
||||
if (mpol_store_user_nodemask(a))
|
||||
if (!nodes_equal(a->w.user_nodemask, b->w.user_nodemask))
|
||||
return 0;
|
||||
return false;
|
||||
|
||||
switch (a->mode) {
|
||||
case MPOL_BIND:
|
||||
/* Fall through */
|
||||
case MPOL_INTERLEAVE:
|
||||
return nodes_equal(a->v.nodes, b->v.nodes);
|
||||
return !!nodes_equal(a->v.nodes, b->v.nodes);
|
||||
case MPOL_PREFERRED:
|
||||
return a->v.preferred_node == b->v.preferred_node;
|
||||
default:
|
||||
BUG();
|
||||
return 0;
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user