ima: Switch to ima_hash_algo for boot aggregate
[linux/fpc-iii.git] / mm / shuffle.h
blob4d79f03b6658ff29799a0b3f47c9a5de2d593475
1 // SPDX-License-Identifier: GPL-2.0
2 // Copyright(c) 2018 Intel Corporation. All rights reserved.
3 #ifndef _MM_SHUFFLE_H
4 #define _MM_SHUFFLE_H
5 #include <linux/jump_label.h>
7 /*
8 * SHUFFLE_ENABLE is called from the command line enabling path, or by
9 * platform-firmware enabling that indicates the presence of a
10 * direct-mapped memory-side-cache. SHUFFLE_FORCE_DISABLE is called from
11 * the command line path and overrides any previous or future
12 * SHUFFLE_ENABLE.
14 enum mm_shuffle_ctl {
15 SHUFFLE_ENABLE,
16 SHUFFLE_FORCE_DISABLE,
19 #define SHUFFLE_ORDER (MAX_ORDER-1)
21 #ifdef CONFIG_SHUFFLE_PAGE_ALLOCATOR
22 DECLARE_STATIC_KEY_FALSE(page_alloc_shuffle_key);
23 extern void page_alloc_shuffle(enum mm_shuffle_ctl ctl);
24 extern void __shuffle_free_memory(pg_data_t *pgdat);
25 extern bool shuffle_pick_tail(void);
26 static inline void shuffle_free_memory(pg_data_t *pgdat)
28 if (!static_branch_unlikely(&page_alloc_shuffle_key))
29 return;
30 __shuffle_free_memory(pgdat);
33 extern void __shuffle_zone(struct zone *z);
34 static inline void shuffle_zone(struct zone *z)
36 if (!static_branch_unlikely(&page_alloc_shuffle_key))
37 return;
38 __shuffle_zone(z);
41 static inline bool is_shuffle_order(int order)
43 if (!static_branch_unlikely(&page_alloc_shuffle_key))
44 return false;
45 return order >= SHUFFLE_ORDER;
47 #else
48 static inline bool shuffle_pick_tail(void)
50 return false;
53 static inline void shuffle_free_memory(pg_data_t *pgdat)
57 static inline void shuffle_zone(struct zone *z)
61 static inline void page_alloc_shuffle(enum mm_shuffle_ctl ctl)
65 static inline bool is_shuffle_order(int order)
67 return false;
69 #endif
70 #endif /* _MM_SHUFFLE_H */