函数源码 |
Source File:mm\zswap.c |
Create Date:2022-07-27 16:53:04 |
首页 | Copyright©Brick |
386 387 388 389 390 391 392 393 394 395 | static int zswap_dstmem_dead(unsigned int cpu) { u8 *dst; dst = per_cpu(zswap_dstmem, cpu); kfree(dst); per_cpu(zswap_dstmem, cpu) = NULL; return 0; } |