blob: 6248d1030a9b2f75b9a472afc36d56a2c7eae340 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Tim Chen67afa382017-02-22 15:45:39 -08002/*
3 * Manage cache of swap slots to be used for and returned from
4 * swap.
5 *
6 * Copyright(c) 2016 Intel Corporation.
7 *
8 * Author: Tim Chen <tim.c.chen@linux.intel.com>
9 *
10 * We allocate the swap slots from the global pool and put
11 * it into local per cpu caches. This has the advantage
12 * of no needing to acquire the swap_info lock every time
13 * we need a new slot.
14 *
15 * There is also opportunity to simply return the slot
16 * to local caches without needing to acquire swap_info
17 * lock. We do not reuse the returned slots directly but
18 * move them back to the global pool in a batch. This
Ingo Molnarf0953a12021-05-06 18:06:47 -070019 * allows the slots to coalesce and reduce fragmentation.
Tim Chen67afa382017-02-22 15:45:39 -080020 *
21 * The swap entry allocated is marked with SWAP_HAS_CACHE
22 * flag in map_count that prevents it from being allocated
23 * again from the global pool.
24 *
25 * The swap slots cache is protected by a mutex instead of
26 * a spin lock as when we search for slots with scan_swap_map,
27 * we can possibly sleep.
28 */
29
30#include <linux/swap_slots.h>
31#include <linux/cpu.h>
32#include <linux/cpumask.h>
33#include <linux/vmalloc.h>
34#include <linux/mutex.h>
Huang Ying54f180d2017-05-08 15:57:40 -070035#include <linux/mm.h>
Tim Chen67afa382017-02-22 15:45:39 -080036
Tim Chen67afa382017-02-22 15:45:39 -080037static DEFINE_PER_CPU(struct swap_slots_cache, swp_slots);
38static bool swap_slot_cache_active;
Huang Yingba81f832017-02-22 15:45:46 -080039bool swap_slot_cache_enabled;
Tim Chen67afa382017-02-22 15:45:39 -080040static bool swap_slot_cache_initialized;
Colin Ian King31f21da2018-08-17 15:46:54 -070041static DEFINE_MUTEX(swap_slots_cache_mutex);
Tim Chen67afa382017-02-22 15:45:39 -080042/* Serialize swap slots cache enable/disable operations */
Colin Ian King31f21da2018-08-17 15:46:54 -070043static DEFINE_MUTEX(swap_slots_cache_enable_mutex);
Tim Chen67afa382017-02-22 15:45:39 -080044
45static void __drain_swap_slots_cache(unsigned int type);
46static void deactivate_swap_slots_cache(void);
47static void reactivate_swap_slots_cache(void);
48
Zhen Leie0f3ebb2020-08-06 23:20:11 -070049#define use_swap_slot_cache (swap_slot_cache_active && swap_slot_cache_enabled)
Tim Chen67afa382017-02-22 15:45:39 -080050#define SLOTS_CACHE 0x1
51#define SLOTS_CACHE_RET 0x2
52
53static void deactivate_swap_slots_cache(void)
54{
55 mutex_lock(&swap_slots_cache_mutex);
56 swap_slot_cache_active = false;
57 __drain_swap_slots_cache(SLOTS_CACHE|SLOTS_CACHE_RET);
58 mutex_unlock(&swap_slots_cache_mutex);
59}
60
61static void reactivate_swap_slots_cache(void)
62{
63 mutex_lock(&swap_slots_cache_mutex);
64 swap_slot_cache_active = true;
65 mutex_unlock(&swap_slots_cache_mutex);
66}
67
68/* Must not be called with cpu hot plug lock */
69void disable_swap_slots_cache_lock(void)
70{
71 mutex_lock(&swap_slots_cache_enable_mutex);
72 swap_slot_cache_enabled = false;
73 if (swap_slot_cache_initialized) {
74 /* serialize with cpu hotplug operations */
75 get_online_cpus();
76 __drain_swap_slots_cache(SLOTS_CACHE|SLOTS_CACHE_RET);
77 put_online_cpus();
78 }
79}
80
81static void __reenable_swap_slots_cache(void)
82{
83 swap_slot_cache_enabled = has_usable_swap();
84}
85
86void reenable_swap_slots_cache_unlock(void)
87{
88 __reenable_swap_slots_cache();
89 mutex_unlock(&swap_slots_cache_enable_mutex);
90}
91
92static bool check_cache_active(void)
93{
94 long pages;
95
Zhen Leie0f3ebb2020-08-06 23:20:11 -070096 if (!swap_slot_cache_enabled)
Tim Chen67afa382017-02-22 15:45:39 -080097 return false;
98
99 pages = get_nr_swap_pages();
100 if (!swap_slot_cache_active) {
101 if (pages > num_online_cpus() *
102 THRESHOLD_ACTIVATE_SWAP_SLOTS_CACHE)
103 reactivate_swap_slots_cache();
104 goto out;
105 }
106
107 /* if global pool of slot caches too low, deactivate cache */
108 if (pages < num_online_cpus() * THRESHOLD_DEACTIVATE_SWAP_SLOTS_CACHE)
109 deactivate_swap_slots_cache();
110out:
111 return swap_slot_cache_active;
112}
113
114static int alloc_swap_slot_cache(unsigned int cpu)
115{
116 struct swap_slots_cache *cache;
117 swp_entry_t *slots, *slots_ret;
118
119 /*
120 * Do allocation outside swap_slots_cache_mutex
Huang Ying54f180d2017-05-08 15:57:40 -0700121 * as kvzalloc could trigger reclaim and get_swap_page,
Tim Chen67afa382017-02-22 15:45:39 -0800122 * which can lock swap_slots_cache_mutex.
123 */
Kees Cook778e1cd2018-06-12 14:04:48 -0700124 slots = kvcalloc(SWAP_SLOTS_CACHE_SIZE, sizeof(swp_entry_t),
Huang Ying54f180d2017-05-08 15:57:40 -0700125 GFP_KERNEL);
Tim Chen67afa382017-02-22 15:45:39 -0800126 if (!slots)
127 return -ENOMEM;
128
Kees Cook778e1cd2018-06-12 14:04:48 -0700129 slots_ret = kvcalloc(SWAP_SLOTS_CACHE_SIZE, sizeof(swp_entry_t),
Huang Ying54f180d2017-05-08 15:57:40 -0700130 GFP_KERNEL);
Tim Chen67afa382017-02-22 15:45:39 -0800131 if (!slots_ret) {
Huang Ying54f180d2017-05-08 15:57:40 -0700132 kvfree(slots);
Tim Chen67afa382017-02-22 15:45:39 -0800133 return -ENOMEM;
134 }
135
136 mutex_lock(&swap_slots_cache_mutex);
137 cache = &per_cpu(swp_slots, cpu);
Zhen Leif90eae22020-08-06 23:20:05 -0700138 if (cache->slots || cache->slots_ret) {
Tim Chen67afa382017-02-22 15:45:39 -0800139 /* cache already allocated */
Zhen Leif90eae22020-08-06 23:20:05 -0700140 mutex_unlock(&swap_slots_cache_mutex);
141
142 kvfree(slots);
143 kvfree(slots_ret);
144
145 return 0;
146 }
147
Tim Chen67afa382017-02-22 15:45:39 -0800148 if (!cache->lock_initialized) {
149 mutex_init(&cache->alloc_lock);
150 spin_lock_init(&cache->free_lock);
151 cache->lock_initialized = true;
152 }
153 cache->nr = 0;
154 cache->cur = 0;
155 cache->n_ret = 0;
Tim Chena2e16732017-11-15 17:34:18 -0800156 /*
157 * We initialized alloc_lock and free_lock earlier. We use
158 * !cache->slots or !cache->slots_ret to know if it is safe to acquire
159 * the corresponding lock and use the cache. Memory barrier below
160 * ensures the assumption.
161 */
162 mb();
Tim Chen67afa382017-02-22 15:45:39 -0800163 cache->slots = slots;
Tim Chen67afa382017-02-22 15:45:39 -0800164 cache->slots_ret = slots_ret;
Tim Chen67afa382017-02-22 15:45:39 -0800165 mutex_unlock(&swap_slots_cache_mutex);
Tim Chen67afa382017-02-22 15:45:39 -0800166 return 0;
167}
168
169static void drain_slots_cache_cpu(unsigned int cpu, unsigned int type,
170 bool free_slots)
171{
172 struct swap_slots_cache *cache;
173 swp_entry_t *slots = NULL;
174
175 cache = &per_cpu(swp_slots, cpu);
176 if ((type & SLOTS_CACHE) && cache->slots) {
177 mutex_lock(&cache->alloc_lock);
178 swapcache_free_entries(cache->slots + cache->cur, cache->nr);
179 cache->cur = 0;
180 cache->nr = 0;
181 if (free_slots && cache->slots) {
Huang Ying54f180d2017-05-08 15:57:40 -0700182 kvfree(cache->slots);
Tim Chen67afa382017-02-22 15:45:39 -0800183 cache->slots = NULL;
184 }
185 mutex_unlock(&cache->alloc_lock);
186 }
187 if ((type & SLOTS_CACHE_RET) && cache->slots_ret) {
188 spin_lock_irq(&cache->free_lock);
189 swapcache_free_entries(cache->slots_ret, cache->n_ret);
190 cache->n_ret = 0;
191 if (free_slots && cache->slots_ret) {
192 slots = cache->slots_ret;
193 cache->slots_ret = NULL;
194 }
195 spin_unlock_irq(&cache->free_lock);
Yang Li191a7222021-02-24 12:02:55 -0800196 kvfree(slots);
Tim Chen67afa382017-02-22 15:45:39 -0800197 }
198}
199
200static void __drain_swap_slots_cache(unsigned int type)
201{
202 unsigned int cpu;
203
204 /*
205 * This function is called during
206 * 1) swapoff, when we have to make sure no
207 * left over slots are in cache when we remove
208 * a swap device;
209 * 2) disabling of swap slot cache, when we run low
210 * on swap slots when allocating memory and need
211 * to return swap slots to global pool.
212 *
213 * We cannot acquire cpu hot plug lock here as
214 * this function can be invoked in the cpu
215 * hot plug path:
216 * cpu_up -> lock cpu_hotplug -> cpu hotplug state callback
217 * -> memory allocation -> direct reclaim -> get_swap_page
218 * -> drain_swap_slots_cache
219 *
220 * Hence the loop over current online cpu below could miss cpu that
221 * is being brought online but not yet marked as online.
222 * That is okay as we do not schedule and run anything on a
223 * cpu before it has been marked online. Hence, we will not
224 * fill any swap slots in slots cache of such cpu.
225 * There are no slots on such cpu that need to be drained.
226 */
227 for_each_online_cpu(cpu)
228 drain_slots_cache_cpu(cpu, type, false);
229}
230
231static int free_slot_cache(unsigned int cpu)
232{
233 mutex_lock(&swap_slots_cache_mutex);
234 drain_slots_cache_cpu(cpu, SLOTS_CACHE | SLOTS_CACHE_RET, true);
235 mutex_unlock(&swap_slots_cache_mutex);
236 return 0;
237}
238
Miaohe Linf3bc52c2020-10-13 16:52:18 -0700239void enable_swap_slots_cache(void)
Tim Chen67afa382017-02-22 15:45:39 -0800240{
Tim Chen67afa382017-02-22 15:45:39 -0800241 mutex_lock(&swap_slots_cache_enable_mutex);
Zhen Leid69a9572020-08-06 23:20:08 -0700242 if (!swap_slot_cache_initialized) {
243 int ret;
244
245 ret = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "swap_slots_cache",
246 alloc_swap_slot_cache, free_slot_cache);
247 if (WARN_ONCE(ret < 0, "Cache allocation failed (%s), operating "
248 "without swap slots cache.\n", __func__))
249 goto out_unlock;
250
251 swap_slot_cache_initialized = true;
Tim Chen67afa382017-02-22 15:45:39 -0800252 }
253
Tim Chen67afa382017-02-22 15:45:39 -0800254 __reenable_swap_slots_cache();
255out_unlock:
256 mutex_unlock(&swap_slots_cache_enable_mutex);
Tim Chen67afa382017-02-22 15:45:39 -0800257}
258
259/* called with swap slot cache's alloc lock held */
260static int refill_swap_slots_cache(struct swap_slots_cache *cache)
261{
262 if (!use_swap_slot_cache || cache->nr)
263 return 0;
264
265 cache->cur = 0;
266 if (swap_slot_cache_active)
Huang Ying5d5e8f12018-08-21 21:52:20 -0700267 cache->nr = get_swap_pages(SWAP_SLOTS_CACHE_SIZE,
268 cache->slots, 1);
Tim Chen67afa382017-02-22 15:45:39 -0800269
270 return cache->nr;
271}
272
273int free_swap_slot(swp_entry_t entry)
274{
275 struct swap_slots_cache *cache;
276
Sebastian Andrzej Siewiorf07e0f842017-07-10 15:49:29 -0700277 cache = raw_cpu_ptr(&swp_slots);
Tim Chena2e16732017-11-15 17:34:18 -0800278 if (likely(use_swap_slot_cache && cache->slots_ret)) {
Tim Chen67afa382017-02-22 15:45:39 -0800279 spin_lock_irq(&cache->free_lock);
280 /* Swap slots cache may be deactivated before acquiring lock */
Sebastian Andrzej Siewiorf07e0f842017-07-10 15:49:29 -0700281 if (!use_swap_slot_cache || !cache->slots_ret) {
Tim Chen67afa382017-02-22 15:45:39 -0800282 spin_unlock_irq(&cache->free_lock);
283 goto direct_free;
284 }
285 if (cache->n_ret >= SWAP_SLOTS_CACHE_SIZE) {
286 /*
287 * Return slots to global pool.
288 * The current swap_map value is SWAP_HAS_CACHE.
289 * Set it to 0 to indicate it is available for
290 * allocation in global pool
291 */
292 swapcache_free_entries(cache->slots_ret, cache->n_ret);
293 cache->n_ret = 0;
294 }
295 cache->slots_ret[cache->n_ret++] = entry;
296 spin_unlock_irq(&cache->free_lock);
297 } else {
298direct_free:
299 swapcache_free_entries(&entry, 1);
300 }
Tim Chen67afa382017-02-22 15:45:39 -0800301
302 return 0;
303}
304
Huang Ying38d8b4e2017-07-06 15:37:18 -0700305swp_entry_t get_swap_page(struct page *page)
Tim Chen67afa382017-02-22 15:45:39 -0800306{
Wei Yang2406b762020-04-01 21:06:16 -0700307 swp_entry_t entry;
Tim Chen67afa382017-02-22 15:45:39 -0800308 struct swap_slots_cache *cache;
309
Huang Ying38d8b4e2017-07-06 15:37:18 -0700310 entry.val = 0;
311
312 if (PageTransHuge(page)) {
313 if (IS_ENABLED(CONFIG_THP_SWAP))
Huang Ying5d5e8f12018-08-21 21:52:20 -0700314 get_swap_pages(1, &entry, HPAGE_PMD_NR);
Tejun Heobb98f2c2018-06-07 17:05:31 -0700315 goto out;
Huang Ying38d8b4e2017-07-06 15:37:18 -0700316 }
317
Tim Chen67afa382017-02-22 15:45:39 -0800318 /*
319 * Preemption is allowed here, because we may sleep
320 * in refill_swap_slots_cache(). But it is safe, because
321 * accesses to the per-CPU data structure are protected by the
322 * mutex cache->alloc_lock.
323 *
324 * The alloc path here does not touch cache->slots_ret
325 * so cache->free_lock is not taken.
326 */
327 cache = raw_cpu_ptr(&swp_slots);
328
Tim Chena2e16732017-11-15 17:34:18 -0800329 if (likely(check_cache_active() && cache->slots)) {
Tim Chen67afa382017-02-22 15:45:39 -0800330 mutex_lock(&cache->alloc_lock);
331 if (cache->slots) {
332repeat:
333 if (cache->nr) {
Wei Yang2406b762020-04-01 21:06:16 -0700334 entry = cache->slots[cache->cur];
335 cache->slots[cache->cur++].val = 0;
Tim Chen67afa382017-02-22 15:45:39 -0800336 cache->nr--;
Wei Yang2406b762020-04-01 21:06:16 -0700337 } else if (refill_swap_slots_cache(cache)) {
338 goto repeat;
Tim Chen67afa382017-02-22 15:45:39 -0800339 }
340 }
341 mutex_unlock(&cache->alloc_lock);
342 if (entry.val)
Tejun Heobb98f2c2018-06-07 17:05:31 -0700343 goto out;
Tim Chen67afa382017-02-22 15:45:39 -0800344 }
345
Huang Ying5d5e8f12018-08-21 21:52:20 -0700346 get_swap_pages(1, &entry, 1);
Tejun Heobb98f2c2018-06-07 17:05:31 -0700347out:
348 if (mem_cgroup_try_charge_swap(page, entry)) {
349 put_swap_page(page, entry);
350 entry.val = 0;
351 }
Tim Chen67afa382017-02-22 15:45:39 -0800352 return entry;
353}