]>
Commit | Line | Data |
---|---|---|
f41f2ed4 MS |
1 | // SPDX-License-Identifier: GPL-2.0 |
2 | /* | |
dff03381 | 3 | * HugeTLB Vmemmap Optimization (HVO) |
f41f2ed4 | 4 | * |
dff03381 | 5 | * Copyright (c) 2020, ByteDance. All rights reserved. |
f41f2ed4 MS |
6 | * |
7 | * Author: Muchun Song <[email protected]> | |
8 | */ | |
9 | #ifndef _LINUX_HUGETLB_VMEMMAP_H | |
10 | #define _LINUX_HUGETLB_VMEMMAP_H | |
11 | #include <linux/hugetlb.h> | |
12 | ||
b65d4adb | 13 | /* |
6213834c | 14 | * Reserve one vmemmap page, all vmemmap addresses are mapped to it. See |
e5b16c86 | 15 | * Documentation/mm/vmemmap_dedup.rst. |
b65d4adb | 16 | */ |
6213834c | 17 | #define HUGETLB_VMEMMAP_RESERVE_SIZE PAGE_SIZE |
fde1c4ec UA |
18 | #define HUGETLB_VMEMMAP_RESERVE_PAGES (HUGETLB_VMEMMAP_RESERVE_SIZE / sizeof(struct page)) |
19 | ||
20 | #ifdef CONFIG_HUGETLB_PAGE_OPTIMIZE_VMEMMAP | |
c5ad3233 | 21 | int hugetlb_vmemmap_restore_folio(const struct hstate *h, struct folio *folio); |
cfb8c750 MK |
22 | long hugetlb_vmemmap_restore_folios(const struct hstate *h, |
23 | struct list_head *folio_list, | |
24 | struct list_head *non_hvo_folios); | |
c5ad3233 | 25 | void hugetlb_vmemmap_optimize_folio(const struct hstate *h, struct folio *folio); |
79359d6d | 26 | void hugetlb_vmemmap_optimize_folios(struct hstate *h, struct list_head *folio_list); |
6213834c MS |
27 | |
28 | static inline unsigned int hugetlb_vmemmap_size(const struct hstate *h) | |
b65d4adb | 29 | { |
6213834c MS |
30 | return pages_per_huge_page(h) * sizeof(struct page); |
31 | } | |
32 | ||
33 | /* | |
34 | * Return how many vmemmap size associated with a HugeTLB page that can be | |
35 | * optimized and can be freed to the buddy allocator. | |
36 | */ | |
37 | static inline unsigned int hugetlb_vmemmap_optimizable_size(const struct hstate *h) | |
38 | { | |
39 | int size = hugetlb_vmemmap_size(h) - HUGETLB_VMEMMAP_RESERVE_SIZE; | |
40 | ||
41 | if (!is_power_of_2(sizeof(struct page))) | |
42 | return 0; | |
43 | return size > 0 ? size : 0; | |
b65d4adb | 44 | } |
f41f2ed4 | 45 | #else |
c5ad3233 | 46 | static inline int hugetlb_vmemmap_restore_folio(const struct hstate *h, struct folio *folio) |
ad2fa371 MS |
47 | { |
48 | return 0; | |
49 | } | |
50 | ||
cfb8c750 MK |
51 | static long hugetlb_vmemmap_restore_folios(const struct hstate *h, |
52 | struct list_head *folio_list, | |
53 | struct list_head *non_hvo_folios) | |
54 | { | |
55 | list_splice_init(folio_list, non_hvo_folios); | |
56 | return 0; | |
57 | } | |
58 | ||
c5ad3233 | 59 | static inline void hugetlb_vmemmap_optimize_folio(const struct hstate *h, struct folio *folio) |
f41f2ed4 MS |
60 | { |
61 | } | |
b65d4adb | 62 | |
79359d6d MK |
63 | static inline void hugetlb_vmemmap_optimize_folios(struct hstate *h, struct list_head *folio_list) |
64 | { | |
65 | } | |
66 | ||
6213834c | 67 | static inline unsigned int hugetlb_vmemmap_optimizable_size(const struct hstate *h) |
77490587 | 68 | { |
6213834c | 69 | return 0; |
77490587 | 70 | } |
6213834c | 71 | #endif /* CONFIG_HUGETLB_PAGE_OPTIMIZE_VMEMMAP */ |
77490587 | 72 | |
6213834c | 73 | static inline bool hugetlb_vmemmap_optimizable(const struct hstate *h) |
b65d4adb | 74 | { |
6213834c | 75 | return hugetlb_vmemmap_optimizable_size(h) != 0; |
b65d4adb | 76 | } |
f41f2ed4 | 77 | #endif /* _LINUX_HUGETLB_VMEMMAP_H */ |