summaryrefslogtreecommitdiffstats
path: root/include/linux/migrate.h
diff options
context:
space:
mode:
authorAnshuman Khandual2018-04-06 01:22:08 +0200
committerLinus Torvalds2018-04-06 06:36:24 +0200
commit310253514bbf179c5f82e20a7a4bbf07abc7f5ad (patch)
tree191cc11fdd6ffd830965186d1c634c4c7c81b517 /include/linux/migrate.h
parentmm: always print RLIMIT_DATA warning (diff)
downloadkernel-qcow2-linux-310253514bbf179c5f82e20a7a4bbf07abc7f5ad.tar.gz
kernel-qcow2-linux-310253514bbf179c5f82e20a7a4bbf07abc7f5ad.tar.xz
kernel-qcow2-linux-310253514bbf179c5f82e20a7a4bbf07abc7f5ad.zip
mm/migrate: rename migration reason MR_CMA to MR_CONTIG_RANGE
alloc_contig_range() initiates compaction and eventual migration for the purpose of either CMA or HugeTLB allocations. At present, the reason code remains the same MR_CMA for either of these cases. Let's make it MR_CONTIG_RANGE which will appropriately reflect the reason code in both these cases. Link: http://lkml.kernel.org/r/20180202091518.18798-1-khandual@linux.vnet.ibm.com Signed-off-by: Anshuman Khandual <khandual@linux.vnet.ibm.com> Acked-by: Michal Hocko <mhocko@suse.com> Reviewed-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/migrate.h')
-rw-r--r--include/linux/migrate.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/migrate.h b/include/linux/migrate.h
index a2246cf670ba..ab45f8a0d288 100644
--- a/include/linux/migrate.h
+++ b/include/linux/migrate.h
@@ -25,7 +25,7 @@ enum migrate_reason {
MR_SYSCALL, /* also applies to cpusets */
MR_MEMPOLICY_MBIND,
MR_NUMA_MISPLACED,
- MR_CMA,
+ MR_CONTIG_RANGE,
MR_TYPES
};