blob: c30b32e3c86248c2f39fa1b926124184fc45b205 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Rik van Rielb2e18532008-10-18 20:26:30 -07002#ifndef LINUX_MM_INLINE_H
3#define LINUX_MM_INLINE_H
4
Rik van Riel2c888cf2011-01-13 15:47:13 -08005#include <linux/huge_mm.h>
Lisa Du6e543d52013-09-11 14:22:36 -07006#include <linux/swap.h>
Rik van Riel2c888cf2011-01-13 15:47:13 -08007
Rik van Rielb2e18532008-10-18 20:26:30 -07008/**
9 * page_is_file_cache - should the page be on a file LRU or anon LRU?
10 * @page: the page to test
11 *
Johannes Weiner6c0b1352009-09-21 17:02:59 -070012 * Returns 1 if @page is page cache page backed by a regular filesystem,
Rik van Rielb2e18532008-10-18 20:26:30 -070013 * or 0 if @page is anonymous, tmpfs or otherwise ram or swap backed.
14 * Used by functions that manipulate the LRU lists, to sort a page
15 * onto the right LRU list.
16 *
17 * We would like to get this info without a page flag, but the state
18 * needs to survive until the page is last deleted from the LRU, which
19 * could be as far down as __page_cache_release.
20 */
21static inline int page_is_file_cache(struct page *page)
22{
Johannes Weiner6c0b1352009-09-21 17:02:59 -070023 return !PageSwapBacked(page);
Rik van Rielb2e18532008-10-18 20:26:30 -070024}
25
Hugh Dickins9d5e6a92016-05-19 17:12:38 -070026static __always_inline void __update_lru_size(struct lruvec *lruvec,
Mel Gorman599d0c92016-07-28 15:45:31 -070027 enum lru_list lru, enum zone_type zid,
28 int nr_pages)
Hugh Dickins9d5e6a92016-05-19 17:12:38 -070029{
Mel Gorman599d0c92016-07-28 15:45:31 -070030 struct pglist_data *pgdat = lruvec_pgdat(lruvec);
31
32 __mod_node_page_state(pgdat, NR_LRU_BASE + lru, nr_pages);
Minchan Kim71c799f2016-07-28 15:47:26 -070033 __mod_zone_page_state(&pgdat->node_zones[zid],
34 NR_ZONE_LRU_BASE + lru, 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{
Mel Gorman599d0c92016-07-28 15:45:31 -070041 __update_lru_size(lruvec, lru, zid, nr_pages);
Mel Gorman7ee36a12016-07-28 15:47:17 -070042#ifdef CONFIG_MEMCG
Michal Hockob4536f0c82017-01-10 16:58:04 -080043 mem_cgroup_update_lru_size(lruvec, lru, zid, nr_pages);
Hugh Dickins9d5e6a92016-05-19 17:12:38 -070044#endif
45}
46
Hugh Dickinsfa9add62012-05-29 15:07:09 -070047static __always_inline void add_page_to_lru_list(struct page *page,
48 struct lruvec *lruvec, enum lru_list lru)
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -080049{
Mel Gorman599d0c92016-07-28 15:45:31 -070050 update_lru_size(lruvec, lru, page_zonenum(page), hpage_nr_pages(page));
Hugh Dickins41113042012-01-12 17:20:01 -080051 list_add(&page->lru, &lruvec->lists[lru]);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -080052}
53
Johannes Weinerc55e8d02017-02-24 14:56:23 -080054static __always_inline void add_page_to_lru_list_tail(struct page *page,
55 struct lruvec *lruvec, enum lru_list lru)
56{
57 update_lru_size(lruvec, lru, page_zonenum(page), hpage_nr_pages(page));
58 list_add_tail(&page->lru, &lruvec->lists[lru]);
59}
60
Hugh Dickinsfa9add62012-05-29 15:07:09 -070061static __always_inline void del_page_from_lru_list(struct page *page,
62 struct lruvec *lruvec, enum lru_list lru)
Christoph Lameterb69408e2008-10-18 20:26:14 -070063{
64 list_del(&page->lru);
Mel Gorman599d0c92016-07-28 15:45:31 -070065 update_lru_size(lruvec, lru, page_zonenum(page), -hpage_nr_pages(page));
Christoph Lameterb69408e2008-10-18 20:26:14 -070066}
67
Johannes Weiner401a8e12009-09-21 17:02:58 -070068/**
69 * page_lru_base_type - which LRU list type should a page be on?
70 * @page: the page to test
71 *
72 * Used for LRU list index arithmetic.
73 *
74 * Returns the base LRU type - file or anon - @page should be on.
75 */
76static inline enum lru_list page_lru_base_type(struct page *page)
77{
78 if (page_is_file_cache(page))
79 return LRU_INACTIVE_FILE;
80 return LRU_INACTIVE_ANON;
81}
82
Hugh Dickins1c1c53d2012-01-12 17:20:04 -080083/**
84 * page_off_lru - which LRU list was page on? clearing its lru flags.
85 * @page: the page to test
86 *
87 * Returns the LRU list a page was on, as an index into the array of LRU
88 * lists; and clears its Unevictable or Active flags, ready for freeing.
89 */
Konstantin Khlebnikov014483b2012-05-29 15:06:53 -070090static __always_inline enum lru_list page_off_lru(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
Hugh Dickins41113042012-01-12 17:20:01 -080092 enum lru_list lru;
Christoph Lameterb69408e2008-10-18 20:26:14 -070093
Lee Schermerhorn894bc312008-10-18 20:26:39 -070094 if (PageUnevictable(page)) {
95 __ClearPageUnevictable(page);
Hugh Dickins41113042012-01-12 17:20:01 -080096 lru = LRU_UNEVICTABLE;
Lee Schermerhorn894bc312008-10-18 20:26:39 -070097 } else {
Hugh Dickins41113042012-01-12 17:20:01 -080098 lru = page_lru_base_type(page);
Lee Schermerhorn894bc312008-10-18 20:26:39 -070099 if (PageActive(page)) {
100 __ClearPageActive(page);
Hugh Dickins41113042012-01-12 17:20:01 -0800101 lru += LRU_ACTIVE;
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700102 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 }
Hugh Dickins1c1c53d2012-01-12 17:20:04 -0800104 return lru;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105}
Christoph Lameter21eac812006-01-08 01:00:45 -0800106
Christoph Lameterb69408e2008-10-18 20:26:14 -0700107/**
108 * page_lru - which LRU list should a page be on?
109 * @page: the page to test
110 *
111 * Returns the LRU list a page should be on, as an index
112 * into the array of LRU lists.
113 */
Konstantin Khlebnikov014483b2012-05-29 15:06:53 -0700114static __always_inline enum lru_list page_lru(struct page *page)
Christoph Lameterb69408e2008-10-18 20:26:14 -0700115{
Johannes Weiner401a8e12009-09-21 17:02:58 -0700116 enum lru_list lru;
Christoph Lameterb69408e2008-10-18 20:26:14 -0700117
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700118 if (PageUnevictable(page))
119 lru = LRU_UNEVICTABLE;
120 else {
Johannes Weiner401a8e12009-09-21 17:02:58 -0700121 lru = page_lru_base_type(page);
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700122 if (PageActive(page))
123 lru += LRU_ACTIVE;
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700124 }
Christoph Lameterb69408e2008-10-18 20:26:14 -0700125 return lru;
126}
Rik van Rielb2e18532008-10-18 20:26:30 -0700127
Geliang Tangd72ee912016-01-14 15:22:01 -0800128#define lru_to_page(head) (list_entry((head)->prev, struct page, lru))
129
Tony Luckce0fa3e2017-08-16 10:18:03 -0700130#ifdef arch_unmap_kpfn
131extern void arch_unmap_kpfn(unsigned long pfn);
132#else
133static __always_inline void arch_unmap_kpfn(unsigned long pfn) { }
134#endif
135
Rik van Rielb2e18532008-10-18 20:26:30 -0700136#endif