The patch titled Subject: include/linux/compaction.h: clean code by removing unused enum value has been added to the -mm tree. Its filename is include-linux-compactionh-clean-code-by-removing-unused-enum-value.patch This patch should soon appear at https://ozlabs.org/~akpm/mmots/broken-out/include-linux-compactionh-clean-code-by-removing-unused-enum-value.patch and later at https://ozlabs.org/~akpm/mmotm/broken-out/include-linux-compactionh-clean-code-by-removing-unused-enum-value.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Mateusz Nosek <mateusznosek0@xxxxxxxxx> Subject: include/linux/compaction.h: clean code by removing unused enum value The enum value 'COMPACT_INACTIVE' is never used so can be removed. Link: https://lkml.kernel.org/r/20200917110750.12015-1-mateusznosek0@xxxxxxxxx Signed-off-by: Mateusz Nosek <mateusznosek0@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/compaction.h | 3 --- 1 file changed, 3 deletions(-) --- a/include/linux/compaction.h~include-linux-compactionh-clean-code-by-removing-unused-enum-value +++ a/include/linux/compaction.h @@ -29,9 +29,6 @@ enum compact_result { /* compaction didn't start as it was deferred due to past failures */ COMPACT_DEFERRED, - /* compaction not active last round */ - COMPACT_INACTIVE = COMPACT_DEFERRED, - /* For more detailed tracepoint output - internal to compaction */ COMPACT_NO_SUITABLE_PAGE, /* compaction should continue to another pageblock */ _ Patches currently in -mm which might be from mateusznosek0@xxxxxxxxx are mm-slabc-clean-code-by-removing-redundant-if-condition.patch mm-page_allocc-clean-code-by-removing-unnecessary-initialization.patch mm-page_allocc-micro-optimization-remove-unnecessary-branch.patch mm-page_allocc-fix-early-params-garbage-value-accesses.patch mm-page_allocc-clean-code-by-merging-two-functions.patch mmzone-clean-code-by-removing-unused-macro-parameter.patch mm-compactionc-micro-optimization-remove-unnecessary-branch.patch include-linux-compactionh-clean-code-by-removing-unused-enum-value.patch