mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
fs/proc/kcore.c: use PAGE_ALIGN instead of ALIGN(PAGE_SIZE)
Use mm.h definition. Signed-off-by: Fabian Frederick <fabf@skynet.be> Cc: Xishi Qiu <qiuxishi@huawei.com> 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:
parent
a0be55dee7
commit
108a8a11cb
@ -172,7 +172,7 @@ get_sparsemem_vmemmap_info(struct kcore_list *ent, struct list_head *head)
|
||||
|
||||
start = ((unsigned long)pfn_to_page(pfn)) & PAGE_MASK;
|
||||
end = ((unsigned long)pfn_to_page(pfn + nr_pages)) - 1;
|
||||
end = ALIGN(end, PAGE_SIZE);
|
||||
end = PAGE_ALIGN(end);
|
||||
/* overlap check (because we have to align page */
|
||||
list_for_each_entry(tmp, head, list) {
|
||||
if (tmp->type != KCORE_VMEMMAP)
|
||||
|
Loading…
Reference in New Issue
Block a user