mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-28 14:44:10 +08:00
mm/gup: return an error on migration failure
When migration failure occurs, we still pin pages, which means that we may pin CMA movable pages which should never be the case. Instead return an error without pinning pages when migration failure happens. No need to retry migrating, because migrate_pages() already retries 10 times. Link: https://lkml.kernel.org/r/20210215161349.246722-4-pasha.tatashin@soleen.com Signed-off-by: Pavel Tatashin <pasha.tatashin@soleen.com> Reviewed-by: Jason Gunthorpe <jgg@nvidia.com> Cc: Dan Williams <dan.j.williams@intel.com> Cc: David Hildenbrand <david@redhat.com> Cc: David Rientjes <rientjes@google.com> Cc: Ingo Molnar <mingo@redhat.com> Cc: Ira Weiny <ira.weiny@intel.com> Cc: James Morris <jmorris@namei.org> Cc: Jason Gunthorpe <jgg@ziepe.ca> Cc: John Hubbard <jhubbard@nvidia.com> Cc: Joonsoo Kim <iamjoonsoo.kim@lge.com> Cc: Matthew Wilcox <willy@infradead.org> Cc: Mel Gorman <mgorman@suse.de> Cc: Michal Hocko <mhocko@kernel.org> Cc: Michal Hocko <mhocko@suse.com> Cc: Mike Kravetz <mike.kravetz@oracle.com> Cc: Oscar Salvador <osalvador@suse.de> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Sasha Levin <sashal@kernel.org> Cc: Steven Rostedt (VMware) <rostedt@goodmis.org> Cc: Tyler Hicks <tyhicks@linux.microsoft.com> Cc: Vlastimil Babka <vbabka@suse.cz> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
83c02c23d0
commit
f0f4463837
17
mm/gup.c
17
mm/gup.c
@ -1610,7 +1610,6 @@ static long check_and_migrate_cma_pages(struct mm_struct *mm,
|
||||
{
|
||||
unsigned long i;
|
||||
bool drain_allow = true;
|
||||
bool migrate_allow = true;
|
||||
LIST_HEAD(cma_page_list);
|
||||
long ret = nr_pages;
|
||||
struct page *prev_head, *head;
|
||||
@ -1661,17 +1660,15 @@ check_again:
|
||||
for (i = 0; i < nr_pages; i++)
|
||||
put_page(pages[i]);
|
||||
|
||||
if (migrate_pages(&cma_page_list, alloc_migration_target, NULL,
|
||||
(unsigned long)&mtc, MIGRATE_SYNC, MR_CONTIG_RANGE)) {
|
||||
/*
|
||||
* some of the pages failed migration. Do get_user_pages
|
||||
* without migration.
|
||||
*/
|
||||
migrate_allow = false;
|
||||
|
||||
ret = migrate_pages(&cma_page_list, alloc_migration_target,
|
||||
NULL, (unsigned long)&mtc, MIGRATE_SYNC,
|
||||
MR_CONTIG_RANGE);
|
||||
if (ret) {
|
||||
if (!list_empty(&cma_page_list))
|
||||
putback_movable_pages(&cma_page_list);
|
||||
return ret > 0 ? -ENOMEM : ret;
|
||||
}
|
||||
|
||||
/*
|
||||
* We did migrate all the pages, Try to get the page references
|
||||
* again migrating any new CMA pages which we failed to isolate
|
||||
@ -1681,7 +1678,7 @@ check_again:
|
||||
pages, vmas, NULL,
|
||||
gup_flags);
|
||||
|
||||
if ((ret > 0) && migrate_allow) {
|
||||
if (ret > 0) {
|
||||
nr_pages = ret;
|
||||
drain_allow = true;
|
||||
goto check_again;
|
||||
|
Loading…
Reference in New Issue
Block a user