summaryrefslogblamecommitdiffstats
path: root/include/linux/mm_inline.h
blob: 895bc4e93039cdba7f6585b484abed3b9eb4a920 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11



                                                             
                                          





                                                               
                                            





                                                               
                                          





                                                                 
                                            






                                                       
                                        
                                                  
                
                                                    

         
 
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);
}

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);
}

static inline void
del_page_from_active_list(struct zone *zone, struct page *page)
{
	list_del(&page->lru);
	__dec_zone_state(zone, NR_ACTIVE);
}

static inline void
del_page_from_inactive_list(struct zone *zone, struct page *page)
{
	list_del(&page->lru);
	__dec_zone_state(zone, NR_INACTIVE);
}

static inline void
del_page_from_lru(struct zone *zone, struct page *page)
{
	list_del(&page->lru);
	if (PageActive(page)) {
		__ClearPageActive(page);
		__dec_zone_state(zone, NR_ACTIVE);
	} else {
		__dec_zone_state(zone, NR_INACTIVE);
	}
}