函数源码

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source File:mm\swap.c Create Date:2022-07-27 15:37:01
首页 Copyright©Brick

414
415
416
417
418
419
420
421
422
423
/**
 * lru_cache_add_anon - add a page to the page lists
 * @page: the page to add
 */
void lru_cache_add_anon(struct page *page)
{
    if (PageActive(page))
        ClearPageActive(page);
    __lru_cache_add(page);
}