函数源码 |
Source File:mm\zsmalloc.c |
Create Date:2022-07-27 18:01:39 |
首页 | Copyright©Brick |
485 486 487 488 489 490 491 | static inline struct page *get_first_page( struct zspage *zspage) { struct page *first_page = zspage->first_page; VM_BUG_ON_PAGE(!is_first_page(first_page), first_page); return first_page; } |