swap.h 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587
  1. #ifndef _LINUX_SWAP_H
  2. #define _LINUX_SWAP_H
  3. #include <linux/spinlock.h>
  4. #include <linux/linkage.h>
  5. #include <linux/mmzone.h>
  6. #include <linux/list.h>
  7. #include <linux/memcontrol.h>
  8. #include <linux/sched.h>
  9. #include <linux/node.h>
  10. #include <linux/fs.h>
  11. #include <linux/atomic.h>
  12. #include <linux/page-flags.h>
  13. #include <asm/page.h>
  14. struct notifier_block;
  15. struct bio;
  16. #define SWAP_FLAG_PREFER 0x8000 /* set if swap priority specified */
  17. #define SWAP_FLAG_PRIO_MASK 0x7fff
  18. #define SWAP_FLAG_PRIO_SHIFT 0
  19. #define SWAP_FLAG_DISCARD 0x10000 /* enable discard for swap */
  20. #define SWAP_FLAG_DISCARD_ONCE 0x20000 /* discard swap area at swapon-time */
  21. #define SWAP_FLAG_DISCARD_PAGES 0x40000 /* discard page-clusters after use */
  22. #define SWAP_FLAGS_VALID (SWAP_FLAG_PRIO_MASK | SWAP_FLAG_PREFER | \
  23. SWAP_FLAG_DISCARD | SWAP_FLAG_DISCARD_ONCE | \
  24. SWAP_FLAG_DISCARD_PAGES)
  25. static inline int current_is_kswapd(void)
  26. {
  27. return current->flags & PF_KSWAPD;
  28. }
  29. /*
  30. * MAX_SWAPFILES defines the maximum number of swaptypes: things which can
  31. * be swapped to. The swap type and the offset into that swap type are
  32. * encoded into pte's and into pgoff_t's in the swapcache. Using five bits
  33. * for the type means that the maximum number of swapcache pages is 27 bits
  34. * on 32-bit-pgoff_t architectures. And that assumes that the architecture packs
  35. * the type/offset into the pte as 5/27 as well.
  36. */
  37. #define MAX_SWAPFILES_SHIFT 5
  38. /*
  39. * Use some of the swap files numbers for other purposes. This
  40. * is a convenient way to hook into the VM to trigger special
  41. * actions on faults.
  42. */
  43. /*
  44. * NUMA node memory migration support
  45. */
  46. #ifdef CONFIG_MIGRATION
  47. #define SWP_MIGRATION_NUM 2
  48. #define SWP_MIGRATION_READ (MAX_SWAPFILES + SWP_HWPOISON_NUM)
  49. #define SWP_MIGRATION_WRITE (MAX_SWAPFILES + SWP_HWPOISON_NUM + 1)
  50. #else
  51. #define SWP_MIGRATION_NUM 0
  52. #endif
  53. /*
  54. * Handling of hardware poisoned pages with memory corruption.
  55. */
  56. #ifdef CONFIG_MEMORY_FAILURE
  57. #define SWP_HWPOISON_NUM 1
  58. #define SWP_HWPOISON MAX_SWAPFILES
  59. #else
  60. #define SWP_HWPOISON_NUM 0
  61. #endif
  62. #define MAX_SWAPFILES \
  63. ((1 << MAX_SWAPFILES_SHIFT) - SWP_MIGRATION_NUM - SWP_HWPOISON_NUM)
  64. /*
  65. * Magic header for a swap area. The first part of the union is
  66. * what the swap magic looks like for the old (limited to 128MB)
  67. * swap area format, the second part of the union adds - in the
  68. * old reserved area - some extra information. Note that the first
  69. * kilobyte is reserved for boot loader or disk label stuff...
  70. *
  71. * Having the magic at the end of the PAGE_SIZE makes detecting swap
  72. * areas somewhat tricky on machines that support multiple page sizes.
  73. * For 2.5 we'll probably want to move the magic to just beyond the
  74. * bootbits...
  75. */
  76. union swap_header {
  77. struct {
  78. char reserved[PAGE_SIZE - 10];
  79. char magic[10]; /* SWAP-SPACE or SWAPSPACE2 */
  80. } magic;
  81. struct {
  82. char bootbits[1024]; /* Space for disklabel etc. */
  83. __u32 version;
  84. __u32 last_page;
  85. __u32 nr_badpages;
  86. unsigned char sws_uuid[16];
  87. unsigned char sws_volume[16];
  88. __u32 padding[117];
  89. __u32 badpages[1];
  90. } info;
  91. };
  92. /*
  93. * current->reclaim_state points to one of these when a task is running
  94. * memory reclaim
  95. */
  96. struct reclaim_state {
  97. unsigned long reclaimed_slab;
  98. };
  99. #ifdef __KERNEL__
  100. struct address_space;
  101. struct sysinfo;
  102. struct writeback_control;
  103. struct zone;
  104. /*
  105. * A swap extent maps a range of a swapfile's PAGE_SIZE pages onto a range of
  106. * disk blocks. A list of swap extents maps the entire swapfile. (Where the
  107. * term `swapfile' refers to either a blockdevice or an IS_REG file. Apart
  108. * from setup, they're handled identically.
  109. *
  110. * We always assume that blocks are of size PAGE_SIZE.
  111. */
  112. struct swap_extent {
  113. struct list_head list;
  114. pgoff_t start_page;
  115. pgoff_t nr_pages;
  116. sector_t start_block;
  117. };
  118. /*
  119. * Max bad pages in the new format..
  120. */
  121. #define __swapoffset(x) ((unsigned long)&((union swap_header *)0)->x)
  122. #define MAX_SWAP_BADPAGES \
  123. ((__swapoffset(magic.magic) - __swapoffset(info.badpages)) / sizeof(int))
  124. enum {
  125. SWP_USED = (1 << 0), /* is slot in swap_info[] used? */
  126. SWP_WRITEOK = (1 << 1), /* ok to write to this swap? */
  127. SWP_DISCARDABLE = (1 << 2), /* blkdev support discard */
  128. SWP_DISCARDING = (1 << 3), /* now discarding a free cluster */
  129. SWP_SOLIDSTATE = (1 << 4), /* blkdev seeks are cheap */
  130. SWP_CONTINUED = (1 << 5), /* swap_map has count continuation */
  131. SWP_BLKDEV = (1 << 6), /* its a block device */
  132. SWP_FILE = (1 << 7), /* set after swap_activate success */
  133. SWP_AREA_DISCARD = (1 << 8), /* single-time swap area discards */
  134. SWP_PAGE_DISCARD = (1 << 9), /* freed swap page-cluster discards */
  135. SWP_STABLE_WRITES = (1 << 10), /* no overwrite PG_writeback pages */
  136. /* add others here before... */
  137. SWP_SCANNING = (1 << 11), /* refcount in scan_swap_map */
  138. };
  139. #define SWAP_CLUSTER_MAX 32UL
  140. #define COMPACT_CLUSTER_MAX SWAP_CLUSTER_MAX
  141. #define SWAP_MAP_MAX 0x3e /* Max duplication count, in first swap_map */
  142. #define SWAP_MAP_BAD 0x3f /* Note pageblock is bad, in first swap_map */
  143. #define SWAP_HAS_CACHE 0x40 /* Flag page is cached, in first swap_map */
  144. #define SWAP_CONT_MAX 0x7f /* Max count, in each swap_map continuation */
  145. #define COUNT_CONTINUED 0x80 /* See swap_map continuation for full count */
  146. #define SWAP_MAP_SHMEM 0xbf /* Owned by shmem/tmpfs, in first swap_map */
  147. /*
  148. * We use this to track usage of a cluster. A cluster is a block of swap disk
  149. * space with SWAPFILE_CLUSTER pages long and naturally aligns in disk. All
  150. * free clusters are organized into a list. We fetch an entry from the list to
  151. * get a free cluster.
  152. *
  153. * The data field stores next cluster if the cluster is free or cluster usage
  154. * counter otherwise. The flags field determines if a cluster is free. This is
  155. * protected by swap_info_struct.lock.
  156. */
  157. struct swap_cluster_info {
  158. unsigned int data:24;
  159. unsigned int flags:8;
  160. };
  161. #define CLUSTER_FLAG_FREE 1 /* This cluster is free */
  162. #define CLUSTER_FLAG_NEXT_NULL 2 /* This cluster has no next cluster */
  163. /*
  164. * We assign a cluster to each CPU, so each CPU can allocate swap entry from
  165. * its own cluster and swapout sequentially. The purpose is to optimize swapout
  166. * throughput.
  167. */
  168. struct percpu_cluster {
  169. struct swap_cluster_info index; /* Current cluster index */
  170. unsigned int next; /* Likely next allocation offset */
  171. };
  172. struct swap_cluster_list {
  173. struct swap_cluster_info head;
  174. struct swap_cluster_info tail;
  175. };
  176. /*
  177. * The in-memory structure used to track swap areas.
  178. */
  179. struct swap_info_struct {
  180. unsigned long flags; /* SWP_USED etc: see above */
  181. signed short prio; /* swap priority of this type */
  182. struct plist_node list; /* entry in swap_active_head */
  183. struct plist_node avail_list; /* entry in swap_avail_head */
  184. signed char type; /* strange name for an index */
  185. unsigned int max; /* extent of the swap_map */
  186. unsigned char *swap_map; /* vmalloc'ed array of usage counts */
  187. struct swap_cluster_info *cluster_info; /* cluster info. Only for SSD */
  188. struct swap_cluster_list free_clusters; /* free clusters list */
  189. unsigned int lowest_bit; /* index of first free in swap_map */
  190. unsigned int highest_bit; /* index of last free in swap_map */
  191. unsigned int pages; /* total of usable pages of swap */
  192. unsigned int inuse_pages; /* number of those currently in use */
  193. unsigned int cluster_next; /* likely index for next allocation */
  194. unsigned int cluster_nr; /* countdown to next cluster search */
  195. struct percpu_cluster __percpu *percpu_cluster; /* per cpu's swap location */
  196. struct swap_extent *curr_swap_extent;
  197. struct swap_extent first_swap_extent;
  198. struct block_device *bdev; /* swap device or bdev of swap file */
  199. struct file *swap_file; /* seldom referenced */
  200. unsigned int old_block_size; /* seldom referenced */
  201. #ifdef CONFIG_FRONTSWAP
  202. unsigned long *frontswap_map; /* frontswap in-use, one bit per page */
  203. atomic_t frontswap_pages; /* frontswap pages in-use counter */
  204. #endif
  205. spinlock_t lock; /*
  206. * protect map scan related fields like
  207. * swap_map, lowest_bit, highest_bit,
  208. * inuse_pages, cluster_next,
  209. * cluster_nr, lowest_alloc,
  210. * highest_alloc, free/discard cluster
  211. * list. other fields are only changed
  212. * at swapon/swapoff, so are protected
  213. * by swap_lock. changing flags need
  214. * hold this lock and swap_lock. If
  215. * both locks need hold, hold swap_lock
  216. * first.
  217. */
  218. struct work_struct discard_work; /* discard worker */
  219. struct swap_cluster_list discard_clusters; /* discard clusters list */
  220. };
  221. /* linux/mm/workingset.c */
  222. void *workingset_eviction(struct address_space *mapping, struct page *page);
  223. bool workingset_refault(void *shadow);
  224. void workingset_activation(struct page *page);
  225. extern struct list_lru workingset_shadow_nodes;
  226. static inline unsigned int workingset_node_pages(struct radix_tree_node *node)
  227. {
  228. return node->count & RADIX_TREE_COUNT_MASK;
  229. }
  230. static inline void workingset_node_pages_inc(struct radix_tree_node *node)
  231. {
  232. node->count++;
  233. }
  234. static inline void workingset_node_pages_dec(struct radix_tree_node *node)
  235. {
  236. VM_WARN_ON_ONCE(!workingset_node_pages(node));
  237. node->count--;
  238. }
  239. static inline unsigned int workingset_node_shadows(struct radix_tree_node *node)
  240. {
  241. return node->count >> RADIX_TREE_COUNT_SHIFT;
  242. }
  243. static inline void workingset_node_shadows_inc(struct radix_tree_node *node)
  244. {
  245. node->count += 1U << RADIX_TREE_COUNT_SHIFT;
  246. }
  247. static inline void workingset_node_shadows_dec(struct radix_tree_node *node)
  248. {
  249. VM_WARN_ON_ONCE(!workingset_node_shadows(node));
  250. node->count -= 1U << RADIX_TREE_COUNT_SHIFT;
  251. }
  252. /* linux/mm/page_alloc.c */
  253. extern unsigned long totalram_pages;
  254. extern unsigned long totalreserve_pages;
  255. extern unsigned long nr_free_buffer_pages(void);
  256. extern unsigned long nr_free_pagecache_pages(void);
  257. /* Definition of global_page_state not available yet */
  258. #define nr_free_pages() global_page_state(NR_FREE_PAGES)
  259. /* linux/mm/swap.c */
  260. extern void lru_cache_add(struct page *);
  261. extern void lru_cache_add_anon(struct page *page);
  262. extern void lru_cache_add_file(struct page *page);
  263. extern void lru_add_page_tail(struct page *page, struct page *page_tail,
  264. struct lruvec *lruvec, struct list_head *head);
  265. extern void activate_page(struct page *);
  266. extern void mark_page_accessed(struct page *);
  267. extern void lru_add_drain(void);
  268. extern void lru_add_drain_cpu(int cpu);
  269. extern void lru_add_drain_all(void);
  270. extern void rotate_reclaimable_page(struct page *page);
  271. extern void deactivate_file_page(struct page *page);
  272. extern void deactivate_page(struct page *page);
  273. extern void swap_setup(void);
  274. extern void add_page_to_unevictable_list(struct page *page);
  275. extern void lru_cache_add_active_or_unevictable(struct page *page,
  276. struct vm_area_struct *vma);
  277. /* linux/mm/vmscan.c */
  278. extern unsigned long zone_reclaimable_pages(struct zone *zone);
  279. extern unsigned long pgdat_reclaimable_pages(struct pglist_data *pgdat);
  280. extern unsigned long try_to_free_pages(struct zonelist *zonelist, int order,
  281. gfp_t gfp_mask, nodemask_t *mask);
  282. extern int __isolate_lru_page(struct page *page, isolate_mode_t mode);
  283. extern unsigned long try_to_free_mem_cgroup_pages(struct mem_cgroup *memcg,
  284. unsigned long nr_pages,
  285. gfp_t gfp_mask,
  286. bool may_swap);
  287. extern unsigned long mem_cgroup_shrink_node(struct mem_cgroup *mem,
  288. gfp_t gfp_mask, bool noswap,
  289. pg_data_t *pgdat,
  290. unsigned long *nr_scanned);
  291. extern unsigned long shrink_all_memory(unsigned long nr_pages);
  292. extern int vm_swappiness;
  293. extern int remove_mapping(struct address_space *mapping, struct page *page);
  294. extern unsigned long vm_total_pages;
  295. #ifdef CONFIG_NUMA
  296. extern int node_reclaim_mode;
  297. extern int sysctl_min_unmapped_ratio;
  298. extern int sysctl_min_slab_ratio;
  299. extern int node_reclaim(struct pglist_data *, gfp_t, unsigned int);
  300. #else
  301. #define node_reclaim_mode 0
  302. static inline int node_reclaim(struct pglist_data *pgdat, gfp_t mask,
  303. unsigned int order)
  304. {
  305. return 0;
  306. }
  307. #endif
  308. extern int page_evictable(struct page *page);
  309. extern void check_move_unevictable_pages(struct page **, int nr_pages);
  310. extern int kswapd_run(int nid);
  311. extern void kswapd_stop(int nid);
  312. #ifdef CONFIG_SWAP
  313. /* linux/mm/page_io.c */
  314. extern int swap_readpage(struct page *);
  315. extern int swap_writepage(struct page *page, struct writeback_control *wbc);
  316. extern void end_swap_bio_write(struct bio *bio);
  317. extern int __swap_writepage(struct page *page, struct writeback_control *wbc,
  318. bio_end_io_t end_write_func);
  319. extern int swap_set_page_dirty(struct page *page);
  320. int add_swap_extent(struct swap_info_struct *sis, unsigned long start_page,
  321. unsigned long nr_pages, sector_t start_block);
  322. int generic_swapfile_activate(struct swap_info_struct *, struct file *,
  323. sector_t *);
  324. /* linux/mm/swap_state.c */
  325. extern struct address_space swapper_spaces[];
  326. #define swap_address_space(entry) (&swapper_spaces[swp_type(entry)])
  327. extern unsigned long total_swapcache_pages(void);
  328. extern void show_swap_cache_info(void);
  329. extern int add_to_swap(struct page *, struct list_head *list);
  330. extern int add_to_swap_cache(struct page *, swp_entry_t, gfp_t);
  331. extern int __add_to_swap_cache(struct page *page, swp_entry_t entry);
  332. extern void __delete_from_swap_cache(struct page *);
  333. extern void delete_from_swap_cache(struct page *);
  334. extern void free_page_and_swap_cache(struct page *);
  335. extern void free_pages_and_swap_cache(struct page **, int);
  336. extern struct page *lookup_swap_cache(swp_entry_t);
  337. extern struct page *read_swap_cache_async(swp_entry_t, gfp_t,
  338. struct vm_area_struct *vma, unsigned long addr);
  339. extern struct page *__read_swap_cache_async(swp_entry_t, gfp_t,
  340. struct vm_area_struct *vma, unsigned long addr,
  341. bool *new_page_allocated);
  342. extern struct page *swapin_readahead(swp_entry_t, gfp_t,
  343. struct vm_area_struct *vma, unsigned long addr);
  344. /* linux/mm/swapfile.c */
  345. extern atomic_long_t nr_swap_pages;
  346. extern long total_swap_pages;
  347. /* Swap 50% full? Release swapcache more aggressively.. */
  348. static inline bool vm_swap_full(void)
  349. {
  350. return atomic_long_read(&nr_swap_pages) * 2 < total_swap_pages;
  351. }
  352. static inline long get_nr_swap_pages(void)
  353. {
  354. return atomic_long_read(&nr_swap_pages);
  355. }
  356. extern void si_swapinfo(struct sysinfo *);
  357. extern swp_entry_t get_swap_page(void);
  358. extern swp_entry_t get_swap_page_of_type(int);
  359. extern int add_swap_count_continuation(swp_entry_t, gfp_t);
  360. extern void swap_shmem_alloc(swp_entry_t);
  361. extern int swap_duplicate(swp_entry_t);
  362. extern int swapcache_prepare(swp_entry_t);
  363. extern void swap_free(swp_entry_t);
  364. extern void swapcache_free(swp_entry_t);
  365. extern int free_swap_and_cache(swp_entry_t);
  366. extern int swap_type_of(dev_t, sector_t, struct block_device **);
  367. extern unsigned int count_swap_pages(int, int);
  368. extern sector_t map_swap_page(struct page *, struct block_device **);
  369. extern sector_t swapdev_block(int, pgoff_t);
  370. extern int page_swapcount(struct page *);
  371. extern int swp_swapcount(swp_entry_t entry);
  372. extern struct swap_info_struct *page_swap_info(struct page *);
  373. extern bool reuse_swap_page(struct page *, int *);
  374. extern int try_to_free_swap(struct page *);
  375. struct backing_dev_info;
  376. #else /* CONFIG_SWAP */
  377. #define swap_address_space(entry) (NULL)
  378. #define get_nr_swap_pages() 0L
  379. #define total_swap_pages 0L
  380. #define total_swapcache_pages() 0UL
  381. #define vm_swap_full() 0
  382. #define si_swapinfo(val) \
  383. do { (val)->freeswap = (val)->totalswap = 0; } while (0)
  384. /* only sparc can not include linux/pagemap.h in this file
  385. * so leave put_page and release_pages undeclared... */
  386. #define free_page_and_swap_cache(page) \
  387. put_page(page)
  388. #define free_pages_and_swap_cache(pages, nr) \
  389. release_pages((pages), (nr), false);
  390. static inline void show_swap_cache_info(void)
  391. {
  392. }
  393. #define free_swap_and_cache(swp) is_migration_entry(swp)
  394. #define swapcache_prepare(swp) is_migration_entry(swp)
  395. static inline int add_swap_count_continuation(swp_entry_t swp, gfp_t gfp_mask)
  396. {
  397. return 0;
  398. }
  399. static inline void swap_shmem_alloc(swp_entry_t swp)
  400. {
  401. }
  402. static inline int swap_duplicate(swp_entry_t swp)
  403. {
  404. return 0;
  405. }
  406. static inline void swap_free(swp_entry_t swp)
  407. {
  408. }
  409. static inline void swapcache_free(swp_entry_t swp)
  410. {
  411. }
  412. static inline struct page *swapin_readahead(swp_entry_t swp, gfp_t gfp_mask,
  413. struct vm_area_struct *vma, unsigned long addr)
  414. {
  415. return NULL;
  416. }
  417. static inline int swap_writepage(struct page *p, struct writeback_control *wbc)
  418. {
  419. return 0;
  420. }
  421. static inline struct page *lookup_swap_cache(swp_entry_t swp)
  422. {
  423. return NULL;
  424. }
  425. static inline int add_to_swap(struct page *page, struct list_head *list)
  426. {
  427. return 0;
  428. }
  429. static inline int add_to_swap_cache(struct page *page, swp_entry_t entry,
  430. gfp_t gfp_mask)
  431. {
  432. return -1;
  433. }
  434. static inline void __delete_from_swap_cache(struct page *page)
  435. {
  436. }
  437. static inline void delete_from_swap_cache(struct page *page)
  438. {
  439. }
  440. static inline int page_swapcount(struct page *page)
  441. {
  442. return 0;
  443. }
  444. static inline int swp_swapcount(swp_entry_t entry)
  445. {
  446. return 0;
  447. }
  448. #define reuse_swap_page(page, total_mapcount) \
  449. (page_trans_huge_mapcount(page, total_mapcount) == 1)
  450. static inline int try_to_free_swap(struct page *page)
  451. {
  452. return 0;
  453. }
  454. static inline swp_entry_t get_swap_page(void)
  455. {
  456. swp_entry_t entry;
  457. entry.val = 0;
  458. return entry;
  459. }
  460. #endif /* CONFIG_SWAP */
  461. #ifdef CONFIG_MEMCG
  462. static inline int mem_cgroup_swappiness(struct mem_cgroup *memcg)
  463. {
  464. /* Cgroup2 doesn't have per-cgroup swappiness */
  465. if (cgroup_subsys_on_dfl(memory_cgrp_subsys))
  466. return vm_swappiness;
  467. /* root ? */
  468. if (mem_cgroup_disabled() || !memcg->css.parent)
  469. return vm_swappiness;
  470. return memcg->swappiness;
  471. }
  472. #else
  473. static inline int mem_cgroup_swappiness(struct mem_cgroup *mem)
  474. {
  475. return vm_swappiness;
  476. }
  477. #endif
  478. #ifdef CONFIG_MEMCG_SWAP
  479. extern void mem_cgroup_swapout(struct page *page, swp_entry_t entry);
  480. extern int mem_cgroup_try_charge_swap(struct page *page, swp_entry_t entry);
  481. extern void mem_cgroup_uncharge_swap(swp_entry_t entry);
  482. extern long mem_cgroup_get_nr_swap_pages(struct mem_cgroup *memcg);
  483. extern bool mem_cgroup_swap_full(struct page *page);
  484. #else
  485. static inline void mem_cgroup_swapout(struct page *page, swp_entry_t entry)
  486. {
  487. }
  488. static inline int mem_cgroup_try_charge_swap(struct page *page,
  489. swp_entry_t entry)
  490. {
  491. return 0;
  492. }
  493. static inline void mem_cgroup_uncharge_swap(swp_entry_t entry)
  494. {
  495. }
  496. static inline long mem_cgroup_get_nr_swap_pages(struct mem_cgroup *memcg)
  497. {
  498. return get_nr_swap_pages();
  499. }
  500. static inline bool mem_cgroup_swap_full(struct page *page)
  501. {
  502. return vm_swap_full();
  503. }
  504. #endif
  505. #endif /* __KERNEL__*/
  506. #endif /* _LINUX_SWAP_H */