diff options
author | Naoya Horiguchi <n-horiguchi@ah.jp.nec.com> | 2014-06-04 19:10:56 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-06-04 19:54:12 -0400 |
commit | 100873d7a777b67ad35197c5a998b5e778f8bf3f (patch) | |
tree | edc34a8ef9239f5ee4bdae43526b282c23d55a20 /mm/hugetlb.c | |
parent | 1fdb412bd825998efbced3a16f6ce7e0329728cf (diff) |
hugetlb: rename hugepage_migration_support() to ..._supported()
We already have a function named hugepages_supported(), and the similar
name hugepage_migration_support() is a bit unconfortable, so let's rename
it hugepage_migration_supported().
Signed-off-by: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
Acked-by: Hugh Dickins <hughd@google.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/hugetlb.c')
-rw-r--r-- | mm/hugetlb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/hugetlb.c b/mm/hugetlb.c index 244194217e39..226910cb7c9b 100644 --- a/mm/hugetlb.c +++ b/mm/hugetlb.c | |||
@@ -544,7 +544,7 @@ static struct page *dequeue_huge_page_node(struct hstate *h, int nid) | |||
544 | /* Movability of hugepages depends on migration support. */ | 544 | /* Movability of hugepages depends on migration support. */ |
545 | static inline gfp_t htlb_alloc_mask(struct hstate *h) | 545 | static inline gfp_t htlb_alloc_mask(struct hstate *h) |
546 | { | 546 | { |
547 | if (hugepages_treat_as_movable || hugepage_migration_support(h)) | 547 | if (hugepages_treat_as_movable || hugepage_migration_supported(h)) |
548 | return GFP_HIGHUSER_MOVABLE; | 548 | return GFP_HIGHUSER_MOVABLE; |
549 | else | 549 | else |
550 | return GFP_HIGHUSER; | 550 | return GFP_HIGHUSER; |