Files
linux-apfs/include/linux/mm_inline.h
T

41 lines
878 B
C
Raw Normal View History

2005-04-16 15:20:36 -07:00
static inline void
add_page_to_active_list(struct zone *zone, struct page *page)
{
list_add(&page->lru, &zone->active_list);
__inc_zone_state(zone, NR_ACTIVE);
2005-04-16 15:20:36 -07:00
}
static inline void
add_page_to_inactive_list(struct zone *zone, struct page *page)
{
list_add(&page->lru, &zone->inactive_list);
__inc_zone_state(zone, NR_INACTIVE);
2005-04-16 15:20:36 -07:00
}
static inline void
del_page_from_active_list(struct zone *zone, struct page *page)
{
list_del(&page->lru);
__dec_zone_state(zone, NR_ACTIVE);
2005-04-16 15:20:36 -07:00
}
static inline void
del_page_from_inactive_list(struct zone *zone, struct page *page)
{
list_del(&page->lru);
__dec_zone_state(zone, NR_INACTIVE);
2005-04-16 15:20:36 -07:00
}
static inline void
del_page_from_lru(struct zone *zone, struct page *page)
{
list_del(&page->lru);
if (PageActive(page)) {
2006-03-22 00:08:00 -08:00
__ClearPageActive(page);
__dec_zone_state(zone, NR_ACTIVE);
2005-04-16 15:20:36 -07:00
} else {
__dec_zone_state(zone, NR_INACTIVE);
2005-04-16 15:20:36 -07:00
}
}
2006-01-08 01:00:45 -08:00