函数源码 |
Source File:mm\zswap.c |
Create Date:2022-07-27 16:53:08 |
首页 | Copyright©Brick |
427 428 429 430 431 432 433 434 435 436 437 438 439 440 | /********************************* * pool functions **********************************/ static struct zswap_pool *__zswap_pool_current( void ) { struct zswap_pool *pool; pool = list_first_or_null_rcu(&zswap_pools, typeof(*pool), list); WARN_ONCE(!pool && zswap_has_pool, "%s: no page storage pool!\n" , __func__); return pool; } |