函数源码 |
Source File:fs\super.c |
Create Date:2022-07-29 10:32:20 |
首页 | Copyright©Brick |
167 168 169 170 171 172 | static void destroy_super_rcu( struct rcu_head *head) { struct super_block *s = container_of(head, struct super_block, rcu); INIT_WORK(&s->destroy_work, destroy_super_work); schedule_work(&s->destroy_work); } |