summaryrefslogtreecommitdiffstats
path: root/mm/internal.h
diff options
context:
space:
mode:
authorFabian Frederick2014-08-07 01:05:17 +0200
committerLinus Torvalds2014-08-07 03:01:16 +0200
commitbc7f84c0e67c0ca90b6d0e95cc293ed5d8ad30c4 (patch)
tree874a4f48212e909c1f031ef292f0606883f0eff6 /mm/internal.h
parentmm: page_alloc: simplify drain_zone_pages by using min() (diff)
downloadkernel-qcow2-linux-bc7f84c0e67c0ca90b6d0e95cc293ed5d8ad30c4.tar.gz
kernel-qcow2-linux-bc7f84c0e67c0ca90b6d0e95cc293ed5d8ad30c4.tar.xz
kernel-qcow2-linux-bc7f84c0e67c0ca90b6d0e95cc293ed5d8ad30c4.zip
mm/internal.h: use nth_page
Use nth_page instead of pfn_to_page(page_to_pfn Signed-off-by: Fabian Frederick <fabf@skynet.be> Cc: Rik van Riel <riel@redhat.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/internal.h')
-rw-r--r--mm/internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/internal.h b/mm/internal.h
index 7f22a11fcc66..a1b651b11c5f 100644
--- a/mm/internal.h
+++ b/mm/internal.h
@@ -247,7 +247,7 @@ static inline void mlock_migrate_page(struct page *new, struct page *old) { }
static inline struct page *mem_map_offset(struct page *base, int offset)
{
if (unlikely(offset >= MAX_ORDER_NR_PAGES))
- return pfn_to_page(page_to_pfn(base) + offset);
+ return nth_page(base, offset);
return base + offset;
}