mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
mm/page_isolation: do some cleanup in "undo_isolate_page_range"
Use "IS_ALIGNED" to judge the alignment, rather than directly judging. Signed-off-by: Wang Xiaoqiang <wang_xiaoq@126.com> Cc: Naoya Horiguchi <n-horiguchi@ah.jp.nec.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
036fbb21de
commit
6f8d2b8a26
@ -196,8 +196,10 @@ int undo_isolate_page_range(unsigned long start_pfn, unsigned long end_pfn,
|
||||
{
|
||||
unsigned long pfn;
|
||||
struct page *page;
|
||||
BUG_ON((start_pfn) & (pageblock_nr_pages - 1));
|
||||
BUG_ON((end_pfn) & (pageblock_nr_pages - 1));
|
||||
|
||||
BUG_ON(!IS_ALIGNED(start_pfn, pageblock_nr_pages));
|
||||
BUG_ON(!IS_ALIGNED(end_pfn, pageblock_nr_pages));
|
||||
|
||||
for (pfn = start_pfn;
|
||||
pfn < end_pfn;
|
||||
pfn += pageblock_nr_pages) {
|
||||
|
Loading…
Reference in New Issue
Block a user