ANDROID: fix a warning due to type mismatch in pr_warn
For pr_warn format string to correctly reflect the types of the arguments.
Fixes: 0249af9c0e
("ANDROID: mm: page_alloc: skip dump pages for freeable page")
Bug: 188908895
Signed-off-by: Suren Baghdasaryan <surenb@google.com>
Change-Id: Id218aafa9fa4148f036f35ca190cf65bfee2160e
This commit is contained in:
@@ -8559,7 +8559,7 @@ static void alloc_contig_dump_pages(struct list_head *page_list)
|
||||
}
|
||||
dump_page(page, "migration failure");
|
||||
}
|
||||
pr_warn("total dump_pages %u skipping %u\n", nr_pages, nr_skip);
|
||||
pr_warn("total dump_pages %lu skipping %lu\n", nr_pages, nr_skip);
|
||||
}
|
||||
}
|
||||
#else
|
||||
|
Reference in New Issue
Block a user