The patch titled Subject: mm-use-is_migrate_highatomic-to-simplify-the-code-fix has been removed from the -mm tree. Its filename was mm-use-is_migrate_highatomic-to-simplify-the-code-fix.patch This patch was dropped because it was folded into mm-use-is_migrate_highatomic-to-simplify-the-code.patch ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: mm-use-is_migrate_highatomic-to-simplify-the-code-fix use static inlines rather than macros, per mhocko Cc: Joonsoo Kim <iamjoonsoo.kim@xxxxxxx> Cc: Mel Gorman <mgorman@xxxxxxxxxxxxxxxxxxx> Cc: Michal Hocko <mhocko@xxxxxxxx> Cc: Minchan Kim <minchan@xxxxxxxxxx> Cc: Vlastimil Babka <vbabka@xxxxxxx> Cc: Xishi Qiu <qiuxishi@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/mmzone.h | 7 +------ mm/internal.h | 10 ++++++++++ 2 files changed, 11 insertions(+), 6 deletions(-) diff -puN include/linux/mmzone.h~mm-use-is_migrate_highatomic-to-simplify-the-code-fix include/linux/mmzone.h --- a/include/linux/mmzone.h~mm-use-is_migrate_highatomic-to-simplify-the-code-fix +++ a/include/linux/mmzone.h @@ -35,7 +35,7 @@ */ #define PAGE_ALLOC_COSTLY_ORDER 3 -enum { +enum migratetype { MIGRATE_UNMOVABLE, MIGRATE_MOVABLE, MIGRATE_RECLAIMABLE, @@ -66,11 +66,6 @@ enum { /* In mm/page_alloc.c; keep in sync also with show_migration_types() there */ extern char * const migratetype_names[MIGRATE_TYPES]; -#define is_migrate_highatomic(migratetype) \ - (migratetype == MIGRATE_HIGHATOMIC) -#define is_migrate_highatomic_page(_page) \ - (get_pageblock_migratetype(_page) == MIGRATE_HIGHATOMIC) - #ifdef CONFIG_CMA # define is_migrate_cma(migratetype) unlikely((migratetype) == MIGRATE_CMA) # define is_migrate_cma_page(_page) (get_pageblock_migratetype(_page) == MIGRATE_CMA) diff -puN mm/internal.h~mm-use-is_migrate_highatomic-to-simplify-the-code-fix mm/internal.h --- a/mm/internal.h~mm-use-is_migrate_highatomic-to-simplify-the-code-fix +++ a/mm/internal.h @@ -510,4 +510,14 @@ extern const struct trace_print_flags pa extern const struct trace_print_flags vmaflag_names[]; extern const struct trace_print_flags gfpflag_names[]; +static inline bool is_migrate_highatomic(enum migratetype migratetype) +{ + return migratetype == MIGRATE_HIGHATOMIC; +} + +static inline bool is_migrate_highatomic_page(struct page *page) +{ + return get_pageblock_migratetype(page) == MIGRATE_HIGHATOMIC; +} + #endif /* __MM_INTERNAL_H */ _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are mm-use-is_migrate_highatomic-to-simplify-the-code.patch mm-introduce-memalloc_nofs_saverestore-api-fix.patch jbd2-mark-the-transaction-context-with-the-scope-gfp_nofs-context-fix.patch jbd2-make-the-whole-kjournald2-kthread-nofs-safe-checkpatch-fixes.patch swap-add-warning-if-swap-slots-cache-failed-to-initialize-fix.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html