diff options
-rw-r--r-- | mm/page_alloc.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/mm/page_alloc.c b/mm/page_alloc.c index fd11b913779e..181dc593962b 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c | |||
@@ -6397,13 +6397,12 @@ int alloc_contig_range(unsigned long start, unsigned long end, | |||
6397 | 6397 | ||
6398 | /* Make sure the range is really isolated. */ | 6398 | /* Make sure the range is really isolated. */ |
6399 | if (test_pages_isolated(outer_start, end, false)) { | 6399 | if (test_pages_isolated(outer_start, end, false)) { |
6400 | pr_warn("alloc_contig_range test_pages_isolated(%lx, %lx) failed\n", | 6400 | pr_info("%s: [%lx, %lx) PFNs busy\n", |
6401 | outer_start, end); | 6401 | __func__, outer_start, end); |
6402 | ret = -EBUSY; | 6402 | ret = -EBUSY; |
6403 | goto done; | 6403 | goto done; |
6404 | } | 6404 | } |
6405 | 6405 | ||
6406 | |||
6407 | /* Grab isolated pages from freelists. */ | 6406 | /* Grab isolated pages from freelists. */ |
6408 | outer_end = isolate_freepages_range(&cc, outer_start, end); | 6407 | outer_end = isolate_freepages_range(&cc, outer_start, end); |
6409 | if (!outer_end) { | 6408 | if (!outer_end) { |