mirror of
https://gitee.com/bianbu-linux/linux-6.6
synced 2025-04-24 14:07:52 -04:00
mm: kfence: use PAGE_ALIGNED helper
Use PAGE_ALIGNED macro instead of IS_ALIGNED and passing PAGE_SIZE. Link: https://lkml.kernel.org/r/20220520021833.121405-1-wangkefeng.wang@huawei.com Signed-off-by: Kefeng Wang <wangkefeng.wang@huawei.com> Acked-by: Muchun Song <songmuchun@bytedance.com> Cc: Marco Elver <elver@google.com> Cc: Alexander Potapenko <glider@google.com> Cc: Dmitry Vyukov <dvyukov@google.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
This commit is contained in:
parent
0598739900
commit
f403f22f8c
1 changed files with 2 additions and 3 deletions
|
@ -296,10 +296,9 @@ static void *test_alloc(struct kunit *test, size_t size, gfp_t gfp, enum allocat
|
|||
|
||||
if (policy == ALLOCATE_ANY)
|
||||
return alloc;
|
||||
if (policy == ALLOCATE_LEFT && IS_ALIGNED((unsigned long)alloc, PAGE_SIZE))
|
||||
if (policy == ALLOCATE_LEFT && PAGE_ALIGNED(alloc))
|
||||
return alloc;
|
||||
if (policy == ALLOCATE_RIGHT &&
|
||||
!IS_ALIGNED((unsigned long)alloc, PAGE_SIZE))
|
||||
if (policy == ALLOCATE_RIGHT && !PAGE_ALIGNED(alloc))
|
||||
return alloc;
|
||||
} else if (policy == ALLOCATE_NONE)
|
||||
return alloc;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue