aboutsummaryrefslogtreecommitdiff
path: root/mm/page_alloc.c
diff options
context:
space:
mode:
authorAmit Pundir <amit.pundir@linaro.org>2017-08-17 14:18:51 +0530
committerAmit Pundir <amit.pundir@linaro.org>2017-08-17 14:18:51 +0530
commitdb5bc601e46abbb8fc4c17a6bc848c560e80fe57 (patch)
treeb1eb723eb8acd5261336cef1b968311e6332a7b6 /mm/page_alloc.c
parentd98f3af5986fae62bacbe7e83026660d61621a3a (diff)
parent21b5f5d91a589931a22009d918fd319f481e8eee (diff)
Merge branch 'linux-linaro-lsk-v4.4' into linux-linaro-lsk-v4.4-android
Conflicts: fs/f2fs/super.c Pick changes from LTS commit 76517ed2a7fe ("f2fs: sanity check checkpoint segno and blkoff"), over changes from AOSP commit 0f127e451bc7 ("FROMLIST: f2fs: sanity check checkpoint segno and blkoff") Signed-off-by: Amit Pundir <amit.pundir@linaro.org>
Diffstat (limited to 'mm/page_alloc.c')
-rw-r--r--mm/page_alloc.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index 9f143d9b0f20..a7680c2219d2 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -1532,14 +1532,14 @@ int move_freepages(struct zone *zone,
#endif
for (page = start_page; page <= end_page;) {
- /* Make sure we are not inadvertently changing nodes */
- VM_BUG_ON_PAGE(page_to_nid(page) != zone_to_nid(zone), page);
-
if (!pfn_valid_within(page_to_pfn(page))) {
page++;
continue;
}
+ /* Make sure we are not inadvertently changing nodes */
+ VM_BUG_ON_PAGE(page_to_nid(page) != zone_to_nid(zone), page);
+
if (!PageBuddy(page)) {
page++;
continue;
@@ -5852,8 +5852,8 @@ unsigned long free_reserved_area(void *start, void *end, int poison, char *s)
}
if (pages && s)
- pr_info("Freeing %s memory: %ldK (%p - %p)\n",
- s, pages << (PAGE_SHIFT - 10), start, end);
+ pr_info("Freeing %s memory: %ldK\n",
+ s, pages << (PAGE_SHIFT - 10));
return pages;
}