blob: 9aadcc7818575236c7d457ff9c664993801a4ff9 [file] [log] [blame]
Rik van Rielb2e18532008-10-18 20:26:30 -07001#ifndef LINUX_MM_INLINE_H
2#define LINUX_MM_INLINE_H
3
Rik van Riel2c888cf2011-01-13 15:47:13 -08004#include <linux/huge_mm.h>
Lisa Du6e543d52013-09-11 14:22:36 -07005#include <linux/swap.h>
Rik van Riel2c888cf2011-01-13 15:47:13 -08006
Rik van Rielb2e18532008-10-18 20:26:30 -07007/**
8 * page_is_file_cache - should the page be on a file LRU or anon LRU?
9 * @page: the page to test
10 *
Johannes Weiner6c0b1352009-09-21 17:02:59 -070011 * Returns 1 if @page is page cache page backed by a regular filesystem,
Rik van Rielb2e18532008-10-18 20:26:30 -070012 * or 0 if @page is anonymous, tmpfs or otherwise ram or swap backed.
13 * Used by functions that manipulate the LRU lists, to sort a page
14 * onto the right LRU list.
15 *
16 * We would like to get this info without a page flag, but the state
17 * needs to survive until the page is last deleted from the LRU, which
18 * could be as far down as __page_cache_release.
19 */
20static inline int page_is_file_cache(struct page *page)
21{
Johannes Weiner6c0b1352009-09-21 17:02:59 -070022 return !PageSwapBacked(page);
Rik van Rielb2e18532008-10-18 20:26:30 -070023}
24
Hugh Dickins9d5e6a92016-05-19 17:12:38 -070025static __always_inline void __update_lru_size(struct lruvec *lruvec,
Mel Gorman599d0c92016-07-28 15:45:31 -070026 enum lru_list lru, enum zone_type zid,
27 int nr_pages)
Hugh Dickins9d5e6a92016-05-19 17:12:38 -070028{
Mel Gorman599d0c92016-07-28 15:45:31 -070029 struct pglist_data *pgdat = lruvec_pgdat(lruvec);
30
31 __mod_node_page_state(pgdat, NR_LRU_BASE + lru, nr_pages);
32 __mod_zone_page_state(&pgdat->node_zones[zid],
33 NR_ZONE_LRU_BASE + !!is_file_lru(lru),
34 nr_pages);
Hugh Dickins9d5e6a92016-05-19 17:12:38 -070035}
36
37static __always_inline void update_lru_size(struct lruvec *lruvec,
Mel Gorman599d0c92016-07-28 15:45:31 -070038 enum lru_list lru, enum zone_type zid,
39 int nr_pages)
Hugh Dickins9d5e6a92016-05-19 17:12:38 -070040{
41#ifdef CONFIG_MEMCG
Mel Gorman599d0c92016-07-28 15:45:31 -070042 mem_cgroup_update_lru_size(lruvec, lru, zid, nr_pages);
Hugh Dickins9d5e6a92016-05-19 17:12:38 -070043#else
Mel Gorman599d0c92016-07-28 15:45:31 -070044 __update_lru_size(lruvec, lru, zid, nr_pages);
Hugh Dickins9d5e6a92016-05-19 17:12:38 -070045#endif
46}
47
Hugh Dickinsfa9add62012-05-29 15:07:09 -070048static __always_inline void add_page_to_lru_list(struct page *page,
49 struct lruvec *lruvec, enum lru_list lru)
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -080050{
Mel Gorman599d0c92016-07-28 15:45:31 -070051 update_lru_size(lruvec, lru, page_zonenum(page), hpage_nr_pages(page));
Hugh Dickins41113042012-01-12 17:20:01 -080052 list_add(&page->lru, &lruvec->lists[lru]);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -080053}
54
Hugh Dickinsfa9add62012-05-29 15:07:09 -070055static __always_inline void del_page_from_lru_list(struct page *page,
56 struct lruvec *lruvec, enum lru_list lru)
Christoph Lameterb69408e2008-10-18 20:26:14 -070057{
58 list_del(&page->lru);
Mel Gorman599d0c92016-07-28 15:45:31 -070059 update_lru_size(lruvec, lru, page_zonenum(page), -hpage_nr_pages(page));
Christoph Lameterb69408e2008-10-18 20:26:14 -070060}
61
Johannes Weiner401a8e12009-09-21 17:02:58 -070062/**
63 * page_lru_base_type - which LRU list type should a page be on?
64 * @page: the page to test
65 *
66 * Used for LRU list index arithmetic.
67 *
68 * Returns the base LRU type - file or anon - @page should be on.
69 */
70static inline enum lru_list page_lru_base_type(struct page *page)
71{
72 if (page_is_file_cache(page))
73 return LRU_INACTIVE_FILE;
74 return LRU_INACTIVE_ANON;
75}
76
Hugh Dickins1c1c53d2012-01-12 17:20:04 -080077/**
78 * page_off_lru - which LRU list was page on? clearing its lru flags.
79 * @page: the page to test
80 *
81 * Returns the LRU list a page was on, as an index into the array of LRU
82 * lists; and clears its Unevictable or Active flags, ready for freeing.
83 */
Konstantin Khlebnikov014483b2012-05-29 15:06:53 -070084static __always_inline enum lru_list page_off_lru(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
Hugh Dickins41113042012-01-12 17:20:01 -080086 enum lru_list lru;
Christoph Lameterb69408e2008-10-18 20:26:14 -070087
Lee Schermerhorn894bc312008-10-18 20:26:39 -070088 if (PageUnevictable(page)) {
89 __ClearPageUnevictable(page);
Hugh Dickins41113042012-01-12 17:20:01 -080090 lru = LRU_UNEVICTABLE;
Lee Schermerhorn894bc312008-10-18 20:26:39 -070091 } else {
Hugh Dickins41113042012-01-12 17:20:01 -080092 lru = page_lru_base_type(page);
Lee Schermerhorn894bc312008-10-18 20:26:39 -070093 if (PageActive(page)) {
94 __ClearPageActive(page);
Hugh Dickins41113042012-01-12 17:20:01 -080095 lru += LRU_ACTIVE;
Lee Schermerhorn894bc312008-10-18 20:26:39 -070096 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 }
Hugh Dickins1c1c53d2012-01-12 17:20:04 -080098 return lru;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099}
Christoph Lameter21eac812006-01-08 01:00:45 -0800100
Christoph Lameterb69408e2008-10-18 20:26:14 -0700101/**
102 * page_lru - which LRU list should a page be on?
103 * @page: the page to test
104 *
105 * Returns the LRU list a page should be on, as an index
106 * into the array of LRU lists.
107 */
Konstantin Khlebnikov014483b2012-05-29 15:06:53 -0700108static __always_inline enum lru_list page_lru(struct page *page)
Christoph Lameterb69408e2008-10-18 20:26:14 -0700109{
Johannes Weiner401a8e12009-09-21 17:02:58 -0700110 enum lru_list lru;
Christoph Lameterb69408e2008-10-18 20:26:14 -0700111
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700112 if (PageUnevictable(page))
113 lru = LRU_UNEVICTABLE;
114 else {
Johannes Weiner401a8e12009-09-21 17:02:58 -0700115 lru = page_lru_base_type(page);
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700116 if (PageActive(page))
117 lru += LRU_ACTIVE;
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700118 }
Christoph Lameterb69408e2008-10-18 20:26:14 -0700119 return lru;
120}
Rik van Rielb2e18532008-10-18 20:26:30 -0700121
Geliang Tangd72ee912016-01-14 15:22:01 -0800122#define lru_to_page(head) (list_entry((head)->prev, struct page, lru))
123
Rik van Rielb2e18532008-10-18 20:26:30 -0700124#endif