函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:lib\klist.c Create Date:2022-07-27 07:13:41
Last Modify:2020-03-12 14:18:49 Copyright©Brick
首页 函数Tree
注解内核,赢得工具下载SCCTEnglish

函数名称:减少节点的引用计数并等待它移除

函数原型:void klist_remove(struct klist_node *n)

返回类型:void

参数:

类型参数名称
struct klist_node *n
242  node等于n
243  process等于当前进程
244  woken等于0
245  加自旋锁
246  添加链表项
247  自旋锁解锁
249  减少节点的引用计数并尝试删除
251  循环
252  set_current_state(深度睡眠态)
253  如果woken退出
255  进程调度
257  set_current_state() includes a barrier so that the write of current->state* is correctly serialised wrt the caller's subsequent test of whether to* actually sleep:* for (;;) {* set_current_state(TASK_UNINTERRUPTIBLE);* if (!need_sleep)* break;* (就绪态)