Commit aaa31e05 authored by ze zuo's avatar ze zuo Committed by Andrew Morton

mm/mempolicy: use PAGE_ALIGN instead of open-coding it

Replace the simple calculation with PAGE_ALIGN.

Link: https://lkml.kernel.org/r/20220913015505.1998958-1-zuoze1@huawei.comSigned-off-by: default avatarze zuo <zuoze1@huawei.com>
Reviewed-by: default avatarMuchun Song <songmuchun@bytedance.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
parent d452289f
...@@ -1270,7 +1270,7 @@ static long do_mbind(unsigned long start, unsigned long len, ...@@ -1270,7 +1270,7 @@ static long do_mbind(unsigned long start, unsigned long len,
if (mode == MPOL_DEFAULT) if (mode == MPOL_DEFAULT)
flags &= ~MPOL_MF_STRICT; flags &= ~MPOL_MF_STRICT;
len = (len + PAGE_SIZE - 1) & PAGE_MASK; len = PAGE_ALIGN(len);
end = start + len; end = start + len;
if (end < start) if (end < start)
...@@ -1507,7 +1507,7 @@ SYSCALL_DEFINE4(set_mempolicy_home_node, unsigned long, start, unsigned long, le ...@@ -1507,7 +1507,7 @@ SYSCALL_DEFINE4(set_mempolicy_home_node, unsigned long, start, unsigned long, le
if (home_node >= MAX_NUMNODES || !node_online(home_node)) if (home_node >= MAX_NUMNODES || !node_online(home_node))
return -EINVAL; return -EINVAL;
len = (len + PAGE_SIZE - 1) & PAGE_MASK; len = PAGE_ALIGN(len);
end = start + len; end = start + len;
if (end < start) if (end < start)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment