diff options
author | Mateusz Nosek <mateusznosek0@gmail.com> | 2020-10-14 02:57:01 +0300 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2020-10-14 04:38:34 +0300 |
commit | 74c9da4e1dc0ecf70e7fa78568821e3ed8f77938 (patch) | |
tree | cfa77830aa01305767cd55e71986e3453415ecb8 /include/linux/compaction.h | |
parent | 62b35fe0eba21b09b015cdb43cddf51073e4b18c (diff) | |
download | linux-74c9da4e1dc0ecf70e7fa78568821e3ed8f77938.tar.xz |
include/linux/compaction.h: clean code by removing unused enum value
The enum value 'COMPACT_INACTIVE' is never used so can be removed.
Signed-off-by: Mateusz Nosek <mateusznosek0@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Link: https://lkml.kernel.org/r/20200917110750.12015-1-mateusznosek0@gmail.com
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/compaction.h')
-rw-r--r-- | include/linux/compaction.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/linux/compaction.h b/include/linux/compaction.h index 25a521d299c1..1de5a1151ee7 100644 --- a/include/linux/compaction.h +++ b/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 */ |