mirror of
https://gitee.com/bianbu-linux/linux-6.6
synced 2025-04-24 14:07:52 -04:00
include/linux/mm_inline.h: shuffle lru list addition and deletion functions
These functions will call page_lru() in the following patches. Move them below page_lru() to avoid the forward declaration. Link: https://lore.kernel.org/linux-mm/20201207220949.830352-3-yuzhao@google.com/ Link: https://lkml.kernel.org/r/20210122220600.906146-3-yuzhao@google.com Signed-off-by: Yu Zhao <yuzhao@google.com> Acked-by: Vlastimil Babka <vbabka@suse.cz> Reviewed-by: Miaohe Lin <linmiaohe@huawei.com> Cc: Alex Shi <alex.shi@linux.alibaba.com> Cc: Hugh Dickins <hughd@google.com> Cc: Johannes Weiner <hannes@cmpxchg.org> Cc: Matthew Wilcox <willy@infradead.org> Cc: Michal Hocko <mhocko@kernel.org> Cc: Roman Gushchin <guro@fb.com> Cc: Vladimir Davydov <vdavydov.dev@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
42895ea73b
commit
f90d8191ac
1 changed files with 21 additions and 21 deletions
|
@ -45,27 +45,6 @@ static __always_inline void update_lru_size(struct lruvec *lruvec,
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
static __always_inline void add_page_to_lru_list(struct page *page,
|
|
||||||
struct lruvec *lruvec, enum lru_list lru)
|
|
||||||
{
|
|
||||||
update_lru_size(lruvec, lru, page_zonenum(page), thp_nr_pages(page));
|
|
||||||
list_add(&page->lru, &lruvec->lists[lru]);
|
|
||||||
}
|
|
||||||
|
|
||||||
static __always_inline void add_page_to_lru_list_tail(struct page *page,
|
|
||||||
struct lruvec *lruvec, enum lru_list lru)
|
|
||||||
{
|
|
||||||
update_lru_size(lruvec, lru, page_zonenum(page), thp_nr_pages(page));
|
|
||||||
list_add_tail(&page->lru, &lruvec->lists[lru]);
|
|
||||||
}
|
|
||||||
|
|
||||||
static __always_inline void del_page_from_lru_list(struct page *page,
|
|
||||||
struct lruvec *lruvec, enum lru_list lru)
|
|
||||||
{
|
|
||||||
list_del(&page->lru);
|
|
||||||
update_lru_size(lruvec, lru, page_zonenum(page), -thp_nr_pages(page));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* page_lru_base_type - which LRU list type should a page be on?
|
* page_lru_base_type - which LRU list type should a page be on?
|
||||||
* @page: the page to test
|
* @page: the page to test
|
||||||
|
@ -125,4 +104,25 @@ static __always_inline enum lru_list page_lru(struct page *page)
|
||||||
}
|
}
|
||||||
return lru;
|
return lru;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static __always_inline void add_page_to_lru_list(struct page *page,
|
||||||
|
struct lruvec *lruvec, enum lru_list lru)
|
||||||
|
{
|
||||||
|
update_lru_size(lruvec, lru, page_zonenum(page), thp_nr_pages(page));
|
||||||
|
list_add(&page->lru, &lruvec->lists[lru]);
|
||||||
|
}
|
||||||
|
|
||||||
|
static __always_inline void add_page_to_lru_list_tail(struct page *page,
|
||||||
|
struct lruvec *lruvec, enum lru_list lru)
|
||||||
|
{
|
||||||
|
update_lru_size(lruvec, lru, page_zonenum(page), thp_nr_pages(page));
|
||||||
|
list_add_tail(&page->lru, &lruvec->lists[lru]);
|
||||||
|
}
|
||||||
|
|
||||||
|
static __always_inline void del_page_from_lru_list(struct page *page,
|
||||||
|
struct lruvec *lruvec, enum lru_list lru)
|
||||||
|
{
|
||||||
|
list_del(&page->lru);
|
||||||
|
update_lru_size(lruvec, lru, page_zonenum(page), -thp_nr_pages(page));
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue