函数源码 |
Source File:security\selinux\avc.c |
Create Date:2022-07-27 20:16:52 |
首页 | Copyright©Brick |
429 430 431 432 433 434 435 | static void avc_node_free( struct rcu_head *rhead) { struct avc_node *node = container_of(rhead, struct avc_node, rhead); avc_xperms_free(node->ae.xp_node); kmem_cache_free(avc_node_cachep, node); avc_cache_stats_incr(frees); } |