]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/swap.h
Linux 4.14-rc6
[mirror_ubuntu-bionic-kernel.git] / include / linux / swap.h
CommitLineData
1da177e4
LT
1#ifndef _LINUX_SWAP_H
2#define _LINUX_SWAP_H
3
1da177e4
LT
4#include <linux/spinlock.h>
5#include <linux/linkage.h>
6#include <linux/mmzone.h>
7#include <linux/list.h>
66e1707b 8#include <linux/memcontrol.h>
1da177e4 9#include <linux/sched.h>
af936a16 10#include <linux/node.h>
33806f06 11#include <linux/fs.h>
60063497 12#include <linux/atomic.h>
c53954a0 13#include <linux/page-flags.h>
1da177e4
LT
14#include <asm/page.h>
15
8bc719d3
MS
16struct notifier_block;
17
ab954160
AM
18struct bio;
19
1da177e4
LT
20#define SWAP_FLAG_PREFER 0x8000 /* set if swap priority specified */
21#define SWAP_FLAG_PRIO_MASK 0x7fff
22#define SWAP_FLAG_PRIO_SHIFT 0
dcf6b7dd
RA
23#define SWAP_FLAG_DISCARD 0x10000 /* enable discard for swap */
24#define SWAP_FLAG_DISCARD_ONCE 0x20000 /* discard swap area at swapon-time */
25#define SWAP_FLAG_DISCARD_PAGES 0x40000 /* discard page-clusters after use */
1da177e4 26
d15cab97 27#define SWAP_FLAGS_VALID (SWAP_FLAG_PRIO_MASK | SWAP_FLAG_PREFER | \
dcf6b7dd
RA
28 SWAP_FLAG_DISCARD | SWAP_FLAG_DISCARD_ONCE | \
29 SWAP_FLAG_DISCARD_PAGES)
36005bae 30#define SWAP_BATCH 64
d15cab97 31
1da177e4
LT
32static inline int current_is_kswapd(void)
33{
34 return current->flags & PF_KSWAPD;
35}
36
37/*
38 * MAX_SWAPFILES defines the maximum number of swaptypes: things which can
39 * be swapped to. The swap type and the offset into that swap type are
40 * encoded into pte's and into pgoff_t's in the swapcache. Using five bits
41 * for the type means that the maximum number of swapcache pages is 27 bits
42 * on 32-bit-pgoff_t architectures. And that assumes that the architecture packs
43 * the type/offset into the pte as 5/27 as well.
44 */
45#define MAX_SWAPFILES_SHIFT 5
a7420aa5
AK
46
47/*
48 * Use some of the swap files numbers for other purposes. This
49 * is a convenient way to hook into the VM to trigger special
50 * actions on faults.
51 */
52
5042db43
JG
53/*
54 * Unaddressable device memory support. See include/linux/hmm.h and
55 * Documentation/vm/hmm.txt. Short description is we need struct pages for
56 * device memory that is unaddressable (inaccessible) by CPU, so that we can
57 * migrate part of a process memory to device memory.
58 *
59 * When a page is migrated from CPU to device, we set the CPU page table entry
60 * to a special SWP_DEVICE_* entry.
61 */
62#ifdef CONFIG_DEVICE_PRIVATE
63#define SWP_DEVICE_NUM 2
64#define SWP_DEVICE_WRITE (MAX_SWAPFILES+SWP_HWPOISON_NUM+SWP_MIGRATION_NUM)
65#define SWP_DEVICE_READ (MAX_SWAPFILES+SWP_HWPOISON_NUM+SWP_MIGRATION_NUM+1)
66#else
67#define SWP_DEVICE_NUM 0
68#endif
69
a7420aa5
AK
70/*
71 * NUMA node memory migration support
72 */
73#ifdef CONFIG_MIGRATION
74#define SWP_MIGRATION_NUM 2
75#define SWP_MIGRATION_READ (MAX_SWAPFILES + SWP_HWPOISON_NUM)
76#define SWP_MIGRATION_WRITE (MAX_SWAPFILES + SWP_HWPOISON_NUM + 1)
0697212a 77#else
a7420aa5 78#define SWP_MIGRATION_NUM 0
0697212a 79#endif
1da177e4 80
a7420aa5
AK
81/*
82 * Handling of hardware poisoned pages with memory corruption.
83 */
84#ifdef CONFIG_MEMORY_FAILURE
85#define SWP_HWPOISON_NUM 1
86#define SWP_HWPOISON MAX_SWAPFILES
87#else
88#define SWP_HWPOISON_NUM 0
89#endif
90
91#define MAX_SWAPFILES \
5042db43
JG
92 ((1 << MAX_SWAPFILES_SHIFT) - SWP_DEVICE_NUM - \
93 SWP_MIGRATION_NUM - SWP_HWPOISON_NUM)
a7420aa5 94
1da177e4
LT
95/*
96 * Magic header for a swap area. The first part of the union is
97 * what the swap magic looks like for the old (limited to 128MB)
98 * swap area format, the second part of the union adds - in the
99 * old reserved area - some extra information. Note that the first
100 * kilobyte is reserved for boot loader or disk label stuff...
101 *
102 * Having the magic at the end of the PAGE_SIZE makes detecting swap
103 * areas somewhat tricky on machines that support multiple page sizes.
104 * For 2.5 we'll probably want to move the magic to just beyond the
105 * bootbits...
106 */
107union swap_header {
108 struct {
109 char reserved[PAGE_SIZE - 10];
110 char magic[10]; /* SWAP-SPACE or SWAPSPACE2 */
111 } magic;
112 struct {
e8f03d02
AD
113 char bootbits[1024]; /* Space for disklabel etc. */
114 __u32 version;
115 __u32 last_page;
116 __u32 nr_badpages;
117 unsigned char sws_uuid[16];
118 unsigned char sws_volume[16];
119 __u32 padding[117];
120 __u32 badpages[1];
1da177e4
LT
121 } info;
122};
123
1da177e4
LT
124/*
125 * current->reclaim_state points to one of these when a task is running
126 * memory reclaim
127 */
128struct reclaim_state {
129 unsigned long reclaimed_slab;
130};
131
132#ifdef __KERNEL__
133
134struct address_space;
135struct sysinfo;
136struct writeback_control;
137struct zone;
138
139/*
140 * A swap extent maps a range of a swapfile's PAGE_SIZE pages onto a range of
141 * disk blocks. A list of swap extents maps the entire swapfile. (Where the
142 * term `swapfile' refers to either a blockdevice or an IS_REG file. Apart
143 * from setup, they're handled identically.
144 *
145 * We always assume that blocks are of size PAGE_SIZE.
146 */
147struct swap_extent {
148 struct list_head list;
149 pgoff_t start_page;
150 pgoff_t nr_pages;
151 sector_t start_block;
152};
153
154/*
155 * Max bad pages in the new format..
156 */
157#define __swapoffset(x) ((unsigned long)&((union swap_header *)0)->x)
158#define MAX_SWAP_BADPAGES \
159 ((__swapoffset(magic.magic) - __swapoffset(info.badpages)) / sizeof(int))
160
161enum {
162 SWP_USED = (1 << 0), /* is slot in swap_info[] used? */
163 SWP_WRITEOK = (1 << 1), /* ok to write to this swap? */
dcf6b7dd 164 SWP_DISCARDABLE = (1 << 2), /* blkdev support discard */
7992fde7 165 SWP_DISCARDING = (1 << 3), /* now discarding a free cluster */
20137a49 166 SWP_SOLIDSTATE = (1 << 4), /* blkdev seeks are cheap */
570a335b 167 SWP_CONTINUED = (1 << 5), /* swap_map has count continuation */
b2725643 168 SWP_BLKDEV = (1 << 6), /* its a block device */
62c230bc 169 SWP_FILE = (1 << 7), /* set after swap_activate success */
dcf6b7dd
RA
170 SWP_AREA_DISCARD = (1 << 8), /* single-time swap area discards */
171 SWP_PAGE_DISCARD = (1 << 9), /* freed swap page-cluster discards */
f0571429 172 SWP_STABLE_WRITES = (1 << 10), /* no overwrite PG_writeback pages */
52b7efdb 173 /* add others here before... */
f0571429 174 SWP_SCANNING = (1 << 11), /* refcount in scan_swap_map */
1da177e4
LT
175};
176
d778df51 177#define SWAP_CLUSTER_MAX 32UL
748446bb 178#define COMPACT_CLUSTER_MAX SWAP_CLUSTER_MAX
1da177e4 179
570a335b
HD
180#define SWAP_MAP_MAX 0x3e /* Max duplication count, in first swap_map */
181#define SWAP_MAP_BAD 0x3f /* Note pageblock is bad, in first swap_map */
182#define SWAP_HAS_CACHE 0x40 /* Flag page is cached, in first swap_map */
183#define SWAP_CONT_MAX 0x7f /* Max count, in each swap_map continuation */
184#define COUNT_CONTINUED 0x80 /* See swap_map continuation for full count */
aaa46865 185#define SWAP_MAP_SHMEM 0xbf /* Owned by shmem/tmpfs, in first swap_map */
253d553b 186
2a8f9449
SL
187/*
188 * We use this to track usage of a cluster. A cluster is a block of swap disk
189 * space with SWAPFILE_CLUSTER pages long and naturally aligns in disk. All
190 * free clusters are organized into a list. We fetch an entry from the list to
191 * get a free cluster.
192 *
193 * The data field stores next cluster if the cluster is free or cluster usage
194 * counter otherwise. The flags field determines if a cluster is free. This is
195 * protected by swap_info_struct.lock.
196 */
197struct swap_cluster_info {
235b6217
HY
198 spinlock_t lock; /*
199 * Protect swap_cluster_info fields
200 * and swap_info_struct->swap_map
201 * elements correspond to the swap
202 * cluster
203 */
2a8f9449
SL
204 unsigned int data:24;
205 unsigned int flags:8;
206};
207#define CLUSTER_FLAG_FREE 1 /* This cluster is free */
208#define CLUSTER_FLAG_NEXT_NULL 2 /* This cluster has no next cluster */
e0709829 209#define CLUSTER_FLAG_HUGE 4 /* This cluster is backing a transparent huge page */
2a8f9449 210
ebc2a1a6
SL
211/*
212 * We assign a cluster to each CPU, so each CPU can allocate swap entry from
213 * its own cluster and swapout sequentially. The purpose is to optimize swapout
214 * throughput.
215 */
216struct percpu_cluster {
217 struct swap_cluster_info index; /* Current cluster index */
218 unsigned int next; /* Likely next allocation offset */
219};
220
6b534915
HY
221struct swap_cluster_list {
222 struct swap_cluster_info head;
223 struct swap_cluster_info tail;
224};
225
1da177e4
LT
226/*
227 * The in-memory structure used to track swap areas.
1da177e4
LT
228 */
229struct swap_info_struct {
efa90a98
HD
230 unsigned long flags; /* SWP_USED etc: see above */
231 signed short prio; /* swap priority of this type */
18ab4d4c 232 struct plist_node list; /* entry in swap_active_head */
a2468cc9 233 struct plist_node avail_lists[MAX_NUMNODES];/* entry in swap_avail_heads */
efa90a98 234 signed char type; /* strange name for an index */
7509765a
HD
235 unsigned int max; /* extent of the swap_map */
236 unsigned char *swap_map; /* vmalloc'ed array of usage counts */
2a8f9449 237 struct swap_cluster_info *cluster_info; /* cluster info. Only for SSD */
6b534915 238 struct swap_cluster_list free_clusters; /* free clusters list */
7509765a
HD
239 unsigned int lowest_bit; /* index of first free in swap_map */
240 unsigned int highest_bit; /* index of last free in swap_map */
241 unsigned int pages; /* total of usable pages of swap */
242 unsigned int inuse_pages; /* number of those currently in use */
243 unsigned int cluster_next; /* likely index for next allocation */
244 unsigned int cluster_nr; /* countdown to next cluster search */
ebc2a1a6 245 struct percpu_cluster __percpu *percpu_cluster; /* per cpu's swap location */
7509765a
HD
246 struct swap_extent *curr_swap_extent;
247 struct swap_extent first_swap_extent;
248 struct block_device *bdev; /* swap device or bdev of swap file */
249 struct file *swap_file; /* seldom referenced */
250 unsigned int old_block_size; /* seldom referenced */
38b5faf4
DM
251#ifdef CONFIG_FRONTSWAP
252 unsigned long *frontswap_map; /* frontswap in-use, one bit per page */
253 atomic_t frontswap_pages; /* frontswap pages in-use counter */
254#endif
ec8acf20
SL
255 spinlock_t lock; /*
256 * protect map scan related fields like
257 * swap_map, lowest_bit, highest_bit,
258 * inuse_pages, cluster_next,
815c2c54
SL
259 * cluster_nr, lowest_alloc,
260 * highest_alloc, free/discard cluster
261 * list. other fields are only changed
262 * at swapon/swapoff, so are protected
263 * by swap_lock. changing flags need
264 * hold this lock and swap_lock. If
265 * both locks need hold, hold swap_lock
266 * first.
ec8acf20 267 */
815c2c54 268 struct work_struct discard_work; /* discard worker */
6b534915 269 struct swap_cluster_list discard_clusters; /* discard clusters list */
1da177e4
LT
270};
271
ec560175
HY
272#ifdef CONFIG_64BIT
273#define SWAP_RA_ORDER_CEILING 5
274#else
275/* Avoid stack overflow, because we need to save part of page table */
276#define SWAP_RA_ORDER_CEILING 3
277#define SWAP_RA_PTE_CACHE_SIZE (1 << SWAP_RA_ORDER_CEILING)
278#endif
279
280struct vma_swap_readahead {
281 unsigned short win;
282 unsigned short offset;
283 unsigned short nr_pte;
284#ifdef CONFIG_64BIT
285 pte_t *ptes;
286#else
287 pte_t ptes[SWAP_RA_PTE_CACHE_SIZE];
288#endif
289};
290
a528910e
JW
291/* linux/mm/workingset.c */
292void *workingset_eviction(struct address_space *mapping, struct page *page);
293bool workingset_refault(void *shadow);
294void workingset_activation(struct page *page);
14b46879 295void workingset_update_node(struct radix_tree_node *node, void *private);
a528910e 296
1da177e4
LT
297/* linux/mm/page_alloc.c */
298extern unsigned long totalram_pages;
cb45b0e9 299extern unsigned long totalreserve_pages;
ebec3862
ZY
300extern unsigned long nr_free_buffer_pages(void);
301extern unsigned long nr_free_pagecache_pages(void);
1da177e4 302
c41f012a
MH
303/* Definition of global_zone_page_state not available yet */
304#define nr_free_pages() global_zone_page_state(NR_FREE_PAGES)
96177299
CL
305
306
1da177e4 307/* linux/mm/swap.c */
c53954a0 308extern void lru_cache_add(struct page *);
2329d375
JZ
309extern void lru_cache_add_anon(struct page *page);
310extern void lru_cache_add_file(struct page *page);
fa9add64 311extern void lru_add_page_tail(struct page *page, struct page *page_tail,
5bc7b8ac 312 struct lruvec *lruvec, struct list_head *head);
b3c97528
HH
313extern void activate_page(struct page *);
314extern void mark_page_accessed(struct page *);
1da177e4 315extern void lru_add_drain(void);
f0cb3c76 316extern void lru_add_drain_cpu(int cpu);
5fbc4616 317extern void lru_add_drain_all(void);
a47fed5b 318extern void lru_add_drain_all_cpuslocked(void);
ac6aadb2 319extern void rotate_reclaimable_page(struct page *page);
cc5993bd 320extern void deactivate_file_page(struct page *page);
f7ad2a6c 321extern void mark_page_lazyfree(struct page *page);
1da177e4
LT
322extern void swap_setup(void);
323
894bc310
LS
324extern void add_page_to_unevictable_list(struct page *page);
325
00501b53
JW
326extern void lru_cache_add_active_or_unevictable(struct page *page,
327 struct vm_area_struct *vma);
328
1da177e4 329/* linux/mm/vmscan.c */
5a1c84b4 330extern unsigned long zone_reclaimable_pages(struct zone *zone);
599d0c95 331extern unsigned long pgdat_reclaimable_pages(struct pglist_data *pgdat);
dac1d27b 332extern unsigned long try_to_free_pages(struct zonelist *zonelist, int order,
327c0e96 333 gfp_t gfp_mask, nodemask_t *mask);
f3fd4a61 334extern int __isolate_lru_page(struct page *page, isolate_mode_t mode);
b70a2a21
JW
335extern unsigned long try_to_free_mem_cgroup_pages(struct mem_cgroup *memcg,
336 unsigned long nr_pages,
337 gfp_t gfp_mask,
338 bool may_swap);
a9dd0a83 339extern unsigned long mem_cgroup_shrink_node(struct mem_cgroup *mem,
185efc0f 340 gfp_t gfp_mask, bool noswap,
ef8f2327 341 pg_data_t *pgdat,
185efc0f 342 unsigned long *nr_scanned);
69e05944 343extern unsigned long shrink_all_memory(unsigned long nr_pages);
1da177e4 344extern int vm_swappiness;
b20a3503 345extern int remove_mapping(struct address_space *mapping, struct page *page);
b21e0b90 346extern unsigned long vm_total_pages;
b20a3503 347
9eeff239 348#ifdef CONFIG_NUMA
a5f5f91d 349extern int node_reclaim_mode;
9614634f 350extern int sysctl_min_unmapped_ratio;
0ff38490 351extern int sysctl_min_slab_ratio;
a5f5f91d 352extern int node_reclaim(struct pglist_data *, gfp_t, unsigned int);
9eeff239 353#else
a5f5f91d
MG
354#define node_reclaim_mode 0
355static inline int node_reclaim(struct pglist_data *pgdat, gfp_t mask,
356 unsigned int order)
9eeff239
CL
357{
358 return 0;
359}
360#endif
361
39b5f29a 362extern int page_evictable(struct page *page);
24513264 363extern void check_move_unevictable_pages(struct page **, int nr_pages);
af936a16 364
3218ae14 365extern int kswapd_run(int nid);
8fe23e05 366extern void kswapd_stop(int nid);
33398cf2 367
1da177e4 368#ifdef CONFIG_SWAP
be297968
CH
369
370#include <linux/blk_types.h> /* for bio_end_io_t */
371
1da177e4 372/* linux/mm/page_io.c */
23955622 373extern int swap_readpage(struct page *page, bool do_poll);
1da177e4 374extern int swap_writepage(struct page *page, struct writeback_control *wbc);
4246a0b6 375extern void end_swap_bio_write(struct bio *bio);
1eec6702 376extern int __swap_writepage(struct page *page, struct writeback_control *wbc,
4246a0b6 377 bio_end_io_t end_write_func);
62c230bc 378extern int swap_set_page_dirty(struct page *page);
1da177e4 379
a509bc1a
MG
380int add_swap_extent(struct swap_info_struct *sis, unsigned long start_page,
381 unsigned long nr_pages, sector_t start_block);
382int generic_swapfile_activate(struct swap_info_struct *, struct file *,
383 sector_t *);
384
1da177e4 385/* linux/mm/swap_state.c */
4b3ef9da
HY
386/* One swap address space for each 64M swap space */
387#define SWAP_ADDRESS_SPACE_SHIFT 14
388#define SWAP_ADDRESS_SPACE_PAGES (1 << SWAP_ADDRESS_SPACE_SHIFT)
389extern struct address_space *swapper_spaces[];
ec560175 390extern bool swap_vma_readahead;
4b3ef9da
HY
391#define swap_address_space(entry) \
392 (&swapper_spaces[swp_type(entry)][swp_offset(entry) \
393 >> SWAP_ADDRESS_SPACE_SHIFT])
33806f06 394extern unsigned long total_swapcache_pages(void);
1da177e4 395extern void show_swap_cache_info(void);
0f074658 396extern int add_to_swap(struct page *page);
73b1262f 397extern int add_to_swap_cache(struct page *, swp_entry_t, gfp_t);
2f772e6c 398extern int __add_to_swap_cache(struct page *page, swp_entry_t entry);
1da177e4
LT
399extern void __delete_from_swap_cache(struct page *);
400extern void delete_from_swap_cache(struct page *);
1da177e4
LT
401extern void free_page_and_swap_cache(struct page *);
402extern void free_pages_and_swap_cache(struct page **, int);
ec560175
HY
403extern struct page *lookup_swap_cache(swp_entry_t entry,
404 struct vm_area_struct *vma,
405 unsigned long addr);
02098fea 406extern struct page *read_swap_cache_async(swp_entry_t, gfp_t,
23955622
SL
407 struct vm_area_struct *vma, unsigned long addr,
408 bool do_poll);
5b999aad
DS
409extern struct page *__read_swap_cache_async(swp_entry_t, gfp_t,
410 struct vm_area_struct *vma, unsigned long addr,
411 bool *new_page_allocated);
02098fea 412extern struct page *swapin_readahead(swp_entry_t, gfp_t,
46017e95
HD
413 struct vm_area_struct *vma, unsigned long addr);
414
ec560175
HY
415extern struct page *swap_readahead_detect(struct vm_fault *vmf,
416 struct vma_swap_readahead *swap_ra);
417extern struct page *do_swap_page_readahead(swp_entry_t fentry, gfp_t gfp_mask,
418 struct vm_fault *vmf,
419 struct vma_swap_readahead *swap_ra);
420
1da177e4 421/* linux/mm/swapfile.c */
ec8acf20 422extern atomic_long_t nr_swap_pages;
1da177e4 423extern long total_swap_pages;
81a0298b 424extern atomic_t nr_rotate_swap;
67afa38e 425extern bool has_usable_swap(void);
ec8acf20 426
81a0298b
HY
427static inline bool swap_use_vma_readahead(void)
428{
429 return READ_ONCE(swap_vma_readahead) && !atomic_read(&nr_rotate_swap);
430}
431
ec8acf20
SL
432/* Swap 50% full? Release swapcache more aggressively.. */
433static inline bool vm_swap_full(void)
434{
435 return atomic_long_read(&nr_swap_pages) * 2 < total_swap_pages;
436}
437
438static inline long get_nr_swap_pages(void)
439{
440 return atomic_long_read(&nr_swap_pages);
441}
442
1da177e4 443extern void si_swapinfo(struct sysinfo *);
38d8b4e6 444extern swp_entry_t get_swap_page(struct page *page);
75f6d6d2 445extern void put_swap_page(struct page *page, swp_entry_t entry);
910321ea 446extern swp_entry_t get_swap_page_of_type(int);
38d8b4e6 447extern int get_swap_pages(int n, bool cluster, swp_entry_t swp_entries[]);
570a335b 448extern int add_swap_count_continuation(swp_entry_t, gfp_t);
aaa46865 449extern void swap_shmem_alloc(swp_entry_t);
570a335b
HD
450extern int swap_duplicate(swp_entry_t);
451extern int swapcache_prepare(swp_entry_t);
1da177e4 452extern void swap_free(swp_entry_t);
7c00bafe 453extern void swapcache_free_entries(swp_entry_t *entries, int n);
2509ef26 454extern int free_swap_and_cache(swp_entry_t);
7bf23687 455extern int swap_type_of(dev_t, sector_t, struct block_device **);
f577eb30 456extern unsigned int count_swap_pages(int, int);
d4906e1a 457extern sector_t map_swap_page(struct page *, struct block_device **);
3aef83e0 458extern sector_t swapdev_block(int, pgoff_t);
bde05d1c 459extern int page_swapcount(struct page *);
e8c26ab6 460extern int __swp_swapcount(swp_entry_t entry);
8334b962 461extern int swp_swapcount(swp_entry_t entry);
f981c595 462extern struct swap_info_struct *page_swap_info(struct page *);
6d0a07ed 463extern bool reuse_swap_page(struct page *, int *);
a2c43eed 464extern int try_to_free_swap(struct page *);
1da177e4 465struct backing_dev_info;
4b3ef9da
HY
466extern int init_swap_address_space(unsigned int type, unsigned long nr_pages);
467extern void exit_swap_address_space(unsigned int type);
1da177e4 468
1da177e4
LT
469#else /* CONFIG_SWAP */
470
d2cf5ad6 471#define swap_address_space(entry) (NULL)
ec8acf20 472#define get_nr_swap_pages() 0L
b962716b 473#define total_swap_pages 0L
33806f06 474#define total_swapcache_pages() 0UL
ec8acf20 475#define vm_swap_full() 0
1da177e4
LT
476
477#define si_swapinfo(val) \
478 do { (val)->freeswap = (val)->totalswap = 0; } while (0)
9ae5b3c7 479/* only sparc can not include linux/pagemap.h in this file
ea1754a0 480 * so leave put_page and release_pages undeclared... */
1da177e4 481#define free_page_and_swap_cache(page) \
09cbfeaf 482 put_page(page)
1da177e4 483#define free_pages_and_swap_cache(pages, nr) \
b745bc85 484 release_pages((pages), (nr), false);
1da177e4 485
bd96b9eb
CK
486static inline void show_swap_cache_info(void)
487{
488}
489
5042db43
JG
490#define free_swap_and_cache(e) ({(is_migration_entry(e) || is_device_private_entry(e));})
491#define swapcache_prepare(e) ({(is_migration_entry(e) || is_device_private_entry(e));})
bd96b9eb 492
570a335b 493static inline int add_swap_count_continuation(swp_entry_t swp, gfp_t gfp_mask)
355cfa73 494{
570a335b
HD
495 return 0;
496}
497
aaa46865
HD
498static inline void swap_shmem_alloc(swp_entry_t swp)
499{
500}
501
570a335b
HD
502static inline int swap_duplicate(swp_entry_t swp)
503{
504 return 0;
355cfa73
KH
505}
506
bd96b9eb
CK
507static inline void swap_free(swp_entry_t swp)
508{
509}
510
75f6d6d2 511static inline void put_swap_page(struct page *page, swp_entry_t swp)
cb4b86ba
KH
512{
513}
514
02098fea 515static inline struct page *swapin_readahead(swp_entry_t swp, gfp_t gfp_mask,
bd96b9eb
CK
516 struct vm_area_struct *vma, unsigned long addr)
517{
518 return NULL;
519}
520
ec560175
HY
521static inline bool swap_use_vma_readahead(void)
522{
523 return false;
524}
525
526static inline struct page *swap_readahead_detect(
527 struct vm_fault *vmf, struct vma_swap_readahead *swap_ra)
528{
529 return NULL;
530}
531
532static inline struct page *do_swap_page_readahead(
533 swp_entry_t fentry, gfp_t gfp_mask,
534 struct vm_fault *vmf, struct vma_swap_readahead *swap_ra)
535{
536 return NULL;
537}
538
9fab5619
HD
539static inline int swap_writepage(struct page *p, struct writeback_control *wbc)
540{
541 return 0;
542}
543
ec560175
HY
544static inline struct page *lookup_swap_cache(swp_entry_t swp,
545 struct vm_area_struct *vma,
546 unsigned long addr)
bd96b9eb
CK
547{
548 return NULL;
549}
550
0f074658 551static inline int add_to_swap(struct page *page)
60371d97
HD
552{
553 return 0;
554}
555
73b1262f
HD
556static inline int add_to_swap_cache(struct page *page, swp_entry_t entry,
557 gfp_t gfp_mask)
bd96b9eb 558{
73b1262f 559 return -1;
bd96b9eb
CK
560}
561
562static inline void __delete_from_swap_cache(struct page *page)
563{
564}
565
566static inline void delete_from_swap_cache(struct page *page)
567{
568}
569
bde05d1c
HD
570static inline int page_swapcount(struct page *page)
571{
572 return 0;
573}
574
e8c26ab6
TC
575static inline int __swp_swapcount(swp_entry_t entry)
576{
577 return 0;
578}
579
8334b962
MK
580static inline int swp_swapcount(swp_entry_t entry)
581{
582 return 0;
583}
584
ba3c4ce6
HY
585#define reuse_swap_page(page, total_map_swapcount) \
586 (page_trans_huge_mapcount(page, total_map_swapcount) == 1)
1da177e4 587
a2c43eed 588static inline int try_to_free_swap(struct page *page)
68a22394
RR
589{
590 return 0;
591}
592
38d8b4e6 593static inline swp_entry_t get_swap_page(struct page *page)
1da177e4
LT
594{
595 swp_entry_t entry;
596 entry.val = 0;
597 return entry;
598}
599
1da177e4 600#endif /* CONFIG_SWAP */
6f2cb2f1 601
59807685
HY
602#ifdef CONFIG_THP_SWAP
603extern int split_swap_cluster(swp_entry_t entry);
604#else
605static inline int split_swap_cluster(swp_entry_t entry)
606{
607 return 0;
608}
609#endif
610
6f2cb2f1
VD
611#ifdef CONFIG_MEMCG
612static inline int mem_cgroup_swappiness(struct mem_cgroup *memcg)
613{
4550c4e1
JW
614 /* Cgroup2 doesn't have per-cgroup swappiness */
615 if (cgroup_subsys_on_dfl(memory_cgrp_subsys))
616 return vm_swappiness;
617
6f2cb2f1
VD
618 /* root ? */
619 if (mem_cgroup_disabled() || !memcg->css.parent)
620 return vm_swappiness;
621
622 return memcg->swappiness;
623}
624
625#else
626static inline int mem_cgroup_swappiness(struct mem_cgroup *mem)
627{
628 return vm_swappiness;
629}
630#endif
631
632#ifdef CONFIG_MEMCG_SWAP
633extern void mem_cgroup_swapout(struct page *page, swp_entry_t entry);
634extern int mem_cgroup_try_charge_swap(struct page *page, swp_entry_t entry);
38d8b4e6 635extern void mem_cgroup_uncharge_swap(swp_entry_t entry, unsigned int nr_pages);
d8b38438 636extern long mem_cgroup_get_nr_swap_pages(struct mem_cgroup *memcg);
5ccc5aba 637extern bool mem_cgroup_swap_full(struct page *page);
6f2cb2f1
VD
638#else
639static inline void mem_cgroup_swapout(struct page *page, swp_entry_t entry)
640{
641}
642
643static inline int mem_cgroup_try_charge_swap(struct page *page,
644 swp_entry_t entry)
645{
646 return 0;
647}
648
38d8b4e6
HY
649static inline void mem_cgroup_uncharge_swap(swp_entry_t entry,
650 unsigned int nr_pages)
6f2cb2f1
VD
651{
652}
d8b38438
VD
653
654static inline long mem_cgroup_get_nr_swap_pages(struct mem_cgroup *memcg)
655{
656 return get_nr_swap_pages();
657}
5ccc5aba
VD
658
659static inline bool mem_cgroup_swap_full(struct page *page)
660{
661 return vm_swap_full();
662}
6f2cb2f1
VD
663#endif
664
1da177e4
LT
665#endif /* __KERNEL__*/
666#endif /* _LINUX_SWAP_H */