函数逻辑报告 |
Source Code:fs\inode.c |
Create Date:2022-07-29 10:38:05 |
Last Modify:2020-03-18 19:19:59 | Copyright©Brick |
首页 | 函数Tree |
注解内核,赢得工具 | 下载SCCT | English |
函数名称:从文件系统上获得索引节点
函数原型:struct inode *iget_locked(struct super_block *sb, unsigned long ino)
返回类型:struct inode
参数:
类型 | 参数 | 名称 |
---|---|---|
struct super_block * | sb | |
unsigned long | ino |
1174 | head等于inode_hashtable加hash(sb, ino) |
1176 | again : |
1177 | 加自旋锁 |
1178 | inode等于d_inode_fast is the fast path version of find_inode, see the comment at* iget_locked for details. |
1179 | 自旋锁解锁 |
1180 | 如果inode则 |
1191 | inode等于alloc_inode(sb) |
1192 | 如果inode则 |
1195 | 加自旋锁 |
1197 | old等于d_inode_fast is the fast path version of find_inode, see the comment at* iget_locked for details. |
1198 | 如果非old则 |
1218 | 自旋锁解锁 |
1219 | destroy_inode(inode) |
1220 | 如果是错误则返回:NULL |
1224 | 如果此条件成立可能性小(为编译器优化)(inode_unhashed(inode))则 |
1229 | 返回:inode |
源代码转换工具 开放的插件接口 | X |
---|---|
支持:c/c++/esqlc/java Oracle/Informix/Mysql 插件可实现:逻辑报告 代码生成和批量转换代码 |