1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/init.h>
3 #include <linux/bootmem.h>
5 #include <linux/sysfs.h>
6 #include <linux/kobject.h>
8 #include <linux/mmzone.h>
9 #include <linux/pagemap.h>
10 #include <linux/rmap.h>
11 #include <linux/mmu_notifier.h>
12 #include <linux/page_ext.h>
13 #include <linux/page_idle.h>
15 #define BITMAP_CHUNK_SIZE sizeof(u64)
16 #define BITMAP_CHUNK_BITS (BITMAP_CHUNK_SIZE * BITS_PER_BYTE)
19 * Idle page tracking only considers user memory pages, for other types of
20 * pages the idle flag is always unset and an attempt to set it is silently
23 * We treat a page as a user memory page if it is on an LRU list, because it is
24 * always safe to pass such a page to rmap_walk(), which is essential for idle
25 * page tracking. With such an indicator of user pages we can skip isolated
26 * pages, but since there are not usually many of them, it will hardly affect
29 * This function tries to get a user memory page by pfn as described above.
31 static struct page
*page_idle_get_page(unsigned long pfn
)
39 page
= pfn_to_page(pfn
);
40 if (!page
|| !PageLRU(page
) ||
41 !get_page_unless_zero(page
))
44 zone
= page_zone(page
);
45 spin_lock_irq(zone_lru_lock(zone
));
46 if (unlikely(!PageLRU(page
))) {
50 spin_unlock_irq(zone_lru_lock(zone
));
54 static bool page_idle_clear_pte_refs_one(struct page
*page
,
55 struct vm_area_struct
*vma
,
56 unsigned long addr
, void *arg
)
58 struct page_vma_mapped_walk pvmw
= {
63 bool referenced
= false;
65 while (page_vma_mapped_walk(&pvmw
)) {
68 referenced
= ptep_clear_young_notify(vma
, addr
,
70 } else if (IS_ENABLED(CONFIG_TRANSPARENT_HUGEPAGE
)) {
71 referenced
= pmdp_clear_young_notify(vma
, addr
,
74 /* unexpected pmd-mapped page? */
80 clear_page_idle(page
);
82 * We cleared the referenced bit in a mapping to this page. To
83 * avoid interference with page reclaim, mark it young so that
84 * page_referenced() will return > 0.
91 static void page_idle_clear_pte_refs(struct page
*page
)
94 * Since rwc.arg is unused, rwc is effectively immutable, so we
95 * can make it static const to save some cycles and stack.
97 static const struct rmap_walk_control rwc
= {
98 .rmap_one
= page_idle_clear_pte_refs_one
,
99 .anon_lock
= page_lock_anon_vma_read
,
103 if (!page_mapped(page
) ||
104 !page_rmapping(page
))
107 need_lock
= !PageAnon(page
) || PageKsm(page
);
108 if (need_lock
&& !trylock_page(page
))
111 rmap_walk(page
, (struct rmap_walk_control
*)&rwc
);
117 static ssize_t
page_idle_bitmap_read(struct file
*file
, struct kobject
*kobj
,
118 struct bin_attribute
*attr
, char *buf
,
119 loff_t pos
, size_t count
)
121 u64
*out
= (u64
*)buf
;
123 unsigned long pfn
, end_pfn
;
126 if (pos
% BITMAP_CHUNK_SIZE
|| count
% BITMAP_CHUNK_SIZE
)
129 pfn
= pos
* BITS_PER_BYTE
;
133 end_pfn
= pfn
+ count
* BITS_PER_BYTE
;
134 if (end_pfn
> max_pfn
)
135 end_pfn
= ALIGN(max_pfn
, BITMAP_CHUNK_BITS
);
137 for (; pfn
< end_pfn
; pfn
++) {
138 bit
= pfn
% BITMAP_CHUNK_BITS
;
141 page
= page_idle_get_page(pfn
);
143 if (page_is_idle(page
)) {
145 * The page might have been referenced via a
146 * pte, in which case it is not idle. Clear
149 page_idle_clear_pte_refs(page
);
150 if (page_is_idle(page
))
155 if (bit
== BITMAP_CHUNK_BITS
- 1)
159 return (char *)out
- buf
;
162 static ssize_t
page_idle_bitmap_write(struct file
*file
, struct kobject
*kobj
,
163 struct bin_attribute
*attr
, char *buf
,
164 loff_t pos
, size_t count
)
166 const u64
*in
= (u64
*)buf
;
168 unsigned long pfn
, end_pfn
;
171 if (pos
% BITMAP_CHUNK_SIZE
|| count
% BITMAP_CHUNK_SIZE
)
174 pfn
= pos
* BITS_PER_BYTE
;
178 end_pfn
= pfn
+ count
* BITS_PER_BYTE
;
179 if (end_pfn
> max_pfn
)
180 end_pfn
= ALIGN(max_pfn
, BITMAP_CHUNK_BITS
);
182 for (; pfn
< end_pfn
; pfn
++) {
183 bit
= pfn
% BITMAP_CHUNK_BITS
;
184 if ((*in
>> bit
) & 1) {
185 page
= page_idle_get_page(pfn
);
187 page_idle_clear_pte_refs(page
);
192 if (bit
== BITMAP_CHUNK_BITS
- 1)
196 return (char *)in
- buf
;
199 static struct bin_attribute page_idle_bitmap_attr
=
200 __BIN_ATTR(bitmap
, S_IRUSR
| S_IWUSR
,
201 page_idle_bitmap_read
, page_idle_bitmap_write
, 0);
203 static struct bin_attribute
*page_idle_bin_attrs
[] = {
204 &page_idle_bitmap_attr
,
208 static const struct attribute_group page_idle_attr_group
= {
209 .bin_attrs
= page_idle_bin_attrs
,
214 static bool need_page_idle(void)
218 struct page_ext_operations page_idle_ops
= {
219 .need
= need_page_idle
,
223 static int __init
page_idle_init(void)
227 err
= sysfs_create_group(mm_kobj
, &page_idle_attr_group
);
229 pr_err("page_idle: register sysfs failed\n");
234 subsys_initcall(page_idle_init
);