swap.h 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581
  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. /* A swap entry has to fit into a "unsigned long", as
  93. * the entry is hidden in the "index" field of the
  94. * swapper address space.
  95. */
  96. typedef struct {
  97. unsigned long val;
  98. } swp_entry_t;
  99. /*
  100. * current->reclaim_state points to one of these when a task is running
  101. * memory reclaim
  102. */
  103. struct reclaim_state {
  104. unsigned long reclaimed_slab;
  105. };
  106. #ifdef __KERNEL__
  107. struct address_space;
  108. struct sysinfo;
  109. struct writeback_control;
  110. struct zone;
  111. /*
  112. * A swap extent maps a range of a swapfile's PAGE_SIZE pages onto a range of
  113. * disk blocks. A list of swap extents maps the entire swapfile. (Where the
  114. * term `swapfile' refers to either a blockdevice or an IS_REG file. Apart
  115. * from setup, they're handled identically.
  116. *
  117. * We always assume that blocks are of size PAGE_SIZE.
  118. */
  119. struct swap_extent {
  120. struct list_head list;
  121. pgoff_t start_page;
  122. pgoff_t nr_pages;
  123. sector_t start_block;
  124. };
  125. /*
  126. * Max bad pages in the new format..
  127. */
  128. #define __swapoffset(x) ((unsigned long)&((union swap_header *)0)->x)
  129. #define MAX_SWAP_BADPAGES \
  130. ((__swapoffset(magic.magic) - __swapoffset(info.badpages)) / sizeof(int))
  131. enum {
  132. SWP_USED = (1 << 0), /* is slot in swap_info[] used? */
  133. SWP_WRITEOK = (1 << 1), /* ok to write to this swap? */
  134. SWP_DISCARDABLE = (1 << 2), /* blkdev support discard */
  135. SWP_DISCARDING = (1 << 3), /* now discarding a free cluster */
  136. SWP_SOLIDSTATE = (1 << 4), /* blkdev seeks are cheap */
  137. SWP_CONTINUED = (1 << 5), /* swap_map has count continuation */
  138. SWP_BLKDEV = (1 << 6), /* its a block device */
  139. SWP_FILE = (1 << 7), /* set after swap_activate success */
  140. SWP_AREA_DISCARD = (1 << 8), /* single-time swap area discards */
  141. SWP_PAGE_DISCARD = (1 << 9), /* freed swap page-cluster discards */
  142. /* add others here before... */
  143. SWP_SCANNING = (1 << 10), /* refcount in scan_swap_map */
  144. };
  145. #define SWAP_CLUSTER_MAX 32UL
  146. #define COMPACT_CLUSTER_MAX SWAP_CLUSTER_MAX
  147. /*
  148. * Ratio between zone->managed_pages and the "gap" that above the per-zone
  149. * "high_wmark". While balancing nodes, We allow kswapd to shrink zones that
  150. * do not meet the (high_wmark + gap) watermark, even which already met the
  151. * high_wmark, in order to provide better per-zone lru behavior. We are ok to
  152. * spend not more than 1% of the memory for this zone balancing "gap".
  153. */
  154. #define KSWAPD_ZONE_BALANCE_GAP_RATIO 100
  155. #define SWAP_MAP_MAX 0x3e /* Max duplication count, in first swap_map */
  156. #define SWAP_MAP_BAD 0x3f /* Note pageblock is bad, in first swap_map */
  157. #define SWAP_HAS_CACHE 0x40 /* Flag page is cached, in first swap_map */
  158. #define SWAP_CONT_MAX 0x7f /* Max count, in each swap_map continuation */
  159. #define COUNT_CONTINUED 0x80 /* See swap_map continuation for full count */
  160. #define SWAP_MAP_SHMEM 0xbf /* Owned by shmem/tmpfs, in first swap_map */
  161. /*
  162. * We use this to track usage of a cluster. A cluster is a block of swap disk
  163. * space with SWAPFILE_CLUSTER pages long and naturally aligns in disk. All
  164. * free clusters are organized into a list. We fetch an entry from the list to
  165. * get a free cluster.
  166. *
  167. * The data field stores next cluster if the cluster is free or cluster usage
  168. * counter otherwise. The flags field determines if a cluster is free. This is
  169. * protected by swap_info_struct.lock.
  170. */
  171. struct swap_cluster_info {
  172. unsigned int data:24;
  173. unsigned int flags:8;
  174. };
  175. #define CLUSTER_FLAG_FREE 1 /* This cluster is free */
  176. #define CLUSTER_FLAG_NEXT_NULL 2 /* This cluster has no next cluster */
  177. /*
  178. * We assign a cluster to each CPU, so each CPU can allocate swap entry from
  179. * its own cluster and swapout sequentially. The purpose is to optimize swapout
  180. * throughput.
  181. */
  182. struct percpu_cluster {
  183. struct swap_cluster_info index; /* Current cluster index */
  184. unsigned int next; /* Likely next allocation offset */
  185. };
  186. /*
  187. * The in-memory structure used to track swap areas.
  188. */
  189. struct swap_info_struct {
  190. unsigned long flags; /* SWP_USED etc: see above */
  191. signed short prio; /* swap priority of this type */
  192. struct plist_node list; /* entry in swap_active_head */
  193. struct plist_node avail_list; /* entry in swap_avail_head */
  194. signed char type; /* strange name for an index */
  195. unsigned int max; /* extent of the swap_map */
  196. unsigned char *swap_map; /* vmalloc'ed array of usage counts */
  197. struct swap_cluster_info *cluster_info; /* cluster info. Only for SSD */
  198. struct swap_cluster_info free_cluster_head; /* free cluster list head */
  199. struct swap_cluster_info free_cluster_tail; /* free cluster list tail */
  200. unsigned int lowest_bit; /* index of first free in swap_map */
  201. unsigned int highest_bit; /* index of last free in swap_map */
  202. unsigned int pages; /* total of usable pages of swap */
  203. unsigned int inuse_pages; /* number of those currently in use */
  204. unsigned int cluster_next; /* likely index for next allocation */
  205. unsigned int cluster_nr; /* countdown to next cluster search */
  206. struct percpu_cluster __percpu *percpu_cluster; /* per cpu's swap location */
  207. struct swap_extent *curr_swap_extent;
  208. struct swap_extent first_swap_extent;
  209. struct block_device *bdev; /* swap device or bdev of swap file */
  210. struct file *swap_file; /* seldom referenced */
  211. unsigned int old_block_size; /* seldom referenced */
  212. #ifdef CONFIG_FRONTSWAP
  213. unsigned long *frontswap_map; /* frontswap in-use, one bit per page */
  214. atomic_t frontswap_pages; /* frontswap pages in-use counter */
  215. #endif
  216. spinlock_t lock; /*
  217. * protect map scan related fields like
  218. * swap_map, lowest_bit, highest_bit,
  219. * inuse_pages, cluster_next,
  220. * cluster_nr, lowest_alloc,
  221. * highest_alloc, free/discard cluster
  222. * list. other fields are only changed
  223. * at swapon/swapoff, so are protected
  224. * by swap_lock. changing flags need
  225. * hold this lock and swap_lock. If
  226. * both locks need hold, hold swap_lock
  227. * first.
  228. */
  229. struct work_struct discard_work; /* discard worker */
  230. struct swap_cluster_info discard_cluster_head; /* list head of discard clusters */
  231. struct swap_cluster_info discard_cluster_tail; /* list tail of discard clusters */
  232. };
  233. /* linux/mm/workingset.c */
  234. void *workingset_eviction(struct address_space *mapping, struct page *page);
  235. bool workingset_refault(void *shadow);
  236. void workingset_activation(struct page *page);
  237. extern struct list_lru workingset_shadow_nodes;
  238. static inline unsigned int workingset_node_pages(struct radix_tree_node *node)
  239. {
  240. return node->count & RADIX_TREE_COUNT_MASK;
  241. }
  242. static inline void workingset_node_pages_inc(struct radix_tree_node *node)
  243. {
  244. node->count++;
  245. }
  246. static inline void workingset_node_pages_dec(struct radix_tree_node *node)
  247. {
  248. node->count--;
  249. }
  250. static inline unsigned int workingset_node_shadows(struct radix_tree_node *node)
  251. {
  252. return node->count >> RADIX_TREE_COUNT_SHIFT;
  253. }
  254. static inline void workingset_node_shadows_inc(struct radix_tree_node *node)
  255. {
  256. node->count += 1U << RADIX_TREE_COUNT_SHIFT;
  257. }
  258. static inline void workingset_node_shadows_dec(struct radix_tree_node *node)
  259. {
  260. node->count -= 1U << RADIX_TREE_COUNT_SHIFT;
  261. }
  262. /* linux/mm/page_alloc.c */
  263. extern unsigned long totalram_pages;
  264. extern unsigned long totalreserve_pages;
  265. extern unsigned long dirty_balance_reserve;
  266. extern unsigned long nr_free_buffer_pages(void);
  267. extern unsigned long nr_unallocated_buffer_pages(void);
  268. extern unsigned long nr_free_pagecache_pages(void);
  269. /* Definition of global_page_state not available yet */
  270. #define nr_free_pages() global_page_state(NR_FREE_PAGES)
  271. /* linux/mm/swap.c */
  272. extern void lru_cache_add(struct page *);
  273. extern void lru_cache_add_anon(struct page *page);
  274. extern void lru_cache_add_file(struct page *page);
  275. extern void lru_add_page_tail(struct page *page, struct page *page_tail,
  276. struct lruvec *lruvec, struct list_head *head);
  277. extern void activate_page(struct page *);
  278. extern void mark_page_accessed(struct page *);
  279. extern void lru_add_drain(void);
  280. extern void lru_add_drain_cpu(int cpu);
  281. extern void lru_add_drain_all(void);
  282. extern void rotate_reclaimable_page(struct page *page);
  283. extern void deactivate_page(struct page *page);
  284. extern void swap_setup(void);
  285. extern void add_page_to_unevictable_list(struct page *page);
  286. extern void lru_cache_add_active_or_unevictable(struct page *page,
  287. struct vm_area_struct *vma);
  288. #ifdef CONFIG_ZNDSWAP
  289. extern int dt_swapcache;
  290. extern int dt_writeback;
  291. extern int dt_filecache;
  292. extern int dt_watermark;
  293. #endif
  294. /* linux/mm/vmscan.c */
  295. extern unsigned long try_to_free_pages(struct zonelist *zonelist, int order,
  296. gfp_t gfp_mask, nodemask_t *mask);
  297. extern int __isolate_lru_page(struct page *page, isolate_mode_t mode);
  298. extern unsigned long try_to_free_mem_cgroup_pages(struct mem_cgroup *memcg,
  299. unsigned long nr_pages,
  300. gfp_t gfp_mask,
  301. bool may_swap);
  302. extern unsigned long mem_cgroup_shrink_node_zone(struct mem_cgroup *mem,
  303. gfp_t gfp_mask, bool noswap,
  304. struct zone *zone,
  305. unsigned long *nr_scanned);
  306. extern unsigned long shrink_all_memory(unsigned long nr_pages);
  307. extern unsigned long shrink_memory_mask(unsigned long nr_to_reclaim,
  308. gfp_t mask);
  309. extern int vm_swappiness;
  310. extern int remove_mapping(struct address_space *mapping, struct page *page);
  311. extern unsigned long vm_total_pages;
  312. #ifdef CONFIG_NUMA
  313. extern int zone_reclaim_mode;
  314. extern int sysctl_min_unmapped_ratio;
  315. extern int sysctl_min_slab_ratio;
  316. extern int zone_reclaim(struct zone *, gfp_t, unsigned int);
  317. #else
  318. #define zone_reclaim_mode 0
  319. static inline int zone_reclaim(struct zone *z, gfp_t mask, unsigned int order)
  320. {
  321. return 0;
  322. }
  323. #endif
  324. extern int page_evictable(struct page *page);
  325. extern void check_move_unevictable_pages(struct page **, int nr_pages);
  326. extern int kswapd_run(int nid);
  327. extern void kswapd_stop(int nid);
  328. #ifdef CONFIG_MEMCG
  329. extern int mem_cgroup_swappiness(struct mem_cgroup *mem);
  330. #else
  331. static inline int mem_cgroup_swappiness(struct mem_cgroup *mem)
  332. {
  333. return vm_swappiness;
  334. }
  335. #endif
  336. #ifdef CONFIG_MEMCG_SWAP
  337. extern void mem_cgroup_swapout(struct page *page, swp_entry_t entry);
  338. extern void mem_cgroup_uncharge_swap(swp_entry_t entry);
  339. #else
  340. static inline void mem_cgroup_swapout(struct page *page, swp_entry_t entry)
  341. {
  342. }
  343. static inline void mem_cgroup_uncharge_swap(swp_entry_t entry)
  344. {
  345. }
  346. #endif
  347. #ifdef CONFIG_SWAP
  348. /* linux/mm/page_io.c */
  349. extern int swap_readpage(struct page *);
  350. extern int swap_writepage(struct page *page, struct writeback_control *wbc);
  351. extern void end_swap_bio_write(struct bio *bio, int err);
  352. extern int __swap_writepage(struct page *page, struct writeback_control *wbc,
  353. void (*end_write_func)(struct bio *, int));
  354. extern int swap_set_page_dirty(struct page *page);
  355. extern void end_swap_bio_read(struct bio *bio, int err);
  356. int add_swap_extent(struct swap_info_struct *sis, unsigned long start_page,
  357. unsigned long nr_pages, sector_t start_block);
  358. int generic_swapfile_activate(struct swap_info_struct *, struct file *,
  359. sector_t *);
  360. /* linux/mm/swap_state.c */
  361. extern struct address_space swapper_spaces[];
  362. #define swap_address_space(entry) (&swapper_spaces[swp_type(entry)])
  363. extern unsigned long total_swapcache_pages(void);
  364. extern void show_swap_cache_info(void);
  365. extern int add_to_swap(struct page *, struct list_head *list);
  366. extern int add_to_swap_cache(struct page *, swp_entry_t, gfp_t);
  367. extern int __add_to_swap_cache(struct page *page, swp_entry_t entry);
  368. extern void __delete_from_swap_cache(struct page *);
  369. extern void delete_from_swap_cache(struct page *);
  370. extern void free_page_and_swap_cache(struct page *);
  371. extern void free_pages_and_swap_cache(struct page **, int);
  372. extern struct page *lookup_swap_cache(swp_entry_t);
  373. extern struct page *read_swap_cache_async(swp_entry_t, gfp_t,
  374. struct vm_area_struct *vma, unsigned long addr);
  375. extern struct page *swapin_readahead(swp_entry_t, gfp_t,
  376. struct vm_area_struct *vma, unsigned long addr);
  377. /* linux/mm/swapfile.c */
  378. extern atomic_long_t nr_swap_pages;
  379. extern long total_swap_pages;
  380. /* Swap 50% full? Release swapcache more aggressively.. */
  381. static inline bool vm_swap_full(void)
  382. {
  383. return atomic_long_read(&nr_swap_pages) * 2 < total_swap_pages;
  384. }
  385. static inline long get_nr_swap_pages(void)
  386. {
  387. return atomic_long_read(&nr_swap_pages);
  388. }
  389. extern void si_swapinfo(struct sysinfo *);
  390. extern swp_entry_t get_swap_page(void);
  391. extern swp_entry_t get_swap_page_of_type(int);
  392. extern int add_swap_count_continuation(swp_entry_t, gfp_t);
  393. extern void swap_shmem_alloc(swp_entry_t);
  394. extern int swap_duplicate(swp_entry_t);
  395. extern int swapcache_prepare(swp_entry_t);
  396. extern void swap_free(swp_entry_t);
  397. extern void swapcache_free(swp_entry_t);
  398. extern int free_swap_and_cache(swp_entry_t);
  399. extern int swap_type_of(dev_t, sector_t, struct block_device **);
  400. extern unsigned int count_swap_pages(int, int);
  401. extern sector_t map_swap_entry(swp_entry_t entry, struct block_device **);
  402. extern sector_t map_swap_page(struct page *, struct block_device **);
  403. extern sector_t swapdev_block(int, pgoff_t);
  404. extern struct swap_info_struct *get_swap_info_struct(unsigned);
  405. extern int page_swapcount(struct page *);
  406. extern struct swap_info_struct *page_swap_info(struct page *);
  407. extern int reuse_swap_page(struct page *);
  408. extern int try_to_free_swap(struct page *);
  409. struct backing_dev_info;
  410. extern void get_swap_range_of_type(int type, swp_entry_t *start,
  411. swp_entry_t *end, unsigned int limit);
  412. #ifdef CONFIG_MEMCG
  413. extern void
  414. mem_cgroup_uncharge_swapcache(struct page *page, swp_entry_t ent, bool swapout);
  415. #else
  416. static inline void
  417. mem_cgroup_uncharge_swapcache(struct page *page, swp_entry_t ent, bool swapout)
  418. {
  419. }
  420. #endif
  421. /* M for pswap interface */
  422. extern struct swap_info_struct *swap_info_get(swp_entry_t entry);
  423. extern void swap_info_unlock(struct swap_info_struct *si);
  424. #else /* CONFIG_SWAP */
  425. #define swap_address_space(entry) (NULL)
  426. #define get_nr_swap_pages() 0L
  427. #define total_swap_pages 0L
  428. #define total_swapcache_pages() 0UL
  429. #define vm_swap_full() 0
  430. #define si_swapinfo(val) \
  431. do { (val)->freeswap = (val)->totalswap = 0; } while (0)
  432. /* only sparc can not include linux/pagemap.h in this file
  433. * so leave page_cache_release and release_pages undeclared... */
  434. #define free_page_and_swap_cache(page) \
  435. page_cache_release(page)
  436. #define free_pages_and_swap_cache(pages, nr) \
  437. release_pages((pages), (nr), false);
  438. static inline void show_swap_cache_info(void)
  439. {
  440. }
  441. #define free_swap_and_cache(swp) is_migration_entry(swp)
  442. #define swapcache_prepare(swp) is_migration_entry(swp)
  443. static inline int add_swap_count_continuation(swp_entry_t swp, gfp_t gfp_mask)
  444. {
  445. return 0;
  446. }
  447. static inline void swap_shmem_alloc(swp_entry_t swp)
  448. {
  449. }
  450. static inline int swap_duplicate(swp_entry_t swp)
  451. {
  452. return 0;
  453. }
  454. static inline void swap_free(swp_entry_t swp)
  455. {
  456. }
  457. static inline void swapcache_free(swp_entry_t swp)
  458. {
  459. }
  460. static inline struct page *swapin_readahead(swp_entry_t swp, gfp_t gfp_mask,
  461. struct vm_area_struct *vma, unsigned long addr)
  462. {
  463. return NULL;
  464. }
  465. static inline int swap_writepage(struct page *p, struct writeback_control *wbc)
  466. {
  467. return 0;
  468. }
  469. static inline struct page *lookup_swap_cache(swp_entry_t swp)
  470. {
  471. return NULL;
  472. }
  473. static inline int add_to_swap(struct page *page, struct list_head *list)
  474. {
  475. return 0;
  476. }
  477. static inline int add_to_swap_cache(struct page *page, swp_entry_t entry,
  478. gfp_t gfp_mask)
  479. {
  480. return -1;
  481. }
  482. static inline void __delete_from_swap_cache(struct page *page)
  483. {
  484. }
  485. static inline void delete_from_swap_cache(struct page *page)
  486. {
  487. }
  488. static inline int page_swapcount(struct page *page)
  489. {
  490. return 0;
  491. }
  492. #define reuse_swap_page(page) (page_mapcount(page) == 1)
  493. static inline int try_to_free_swap(struct page *page)
  494. {
  495. return 0;
  496. }
  497. static inline swp_entry_t get_swap_page(void)
  498. {
  499. swp_entry_t entry;
  500. entry.val = 0;
  501. return entry;
  502. }
  503. static inline void
  504. mem_cgroup_uncharge_swapcache(struct page *page, swp_entry_t ent)
  505. {
  506. }
  507. #endif /* CONFIG_SWAP */
  508. #endif /* __KERNEL__*/
  509. #endif /* _LINUX_SWAP_H */