struct super_block *get_super(struct block_device *bdev)用于获得形参block_device对应的super_block
其源码分析如下:
struct super_block *get_super(struct block_device *bdev)
{
#第二个形参false代表是对这个设备进行读操作
return __get_super(bdev, false);
}
static struct super_block *__get_super(struct block_device *bdev, bool excl)
{
struct super_block *sb;
#块设备为null,则退出
if (!bdev)
return NULL;
spin_lock(&sb_lock);
rescan:
#kernel中的所有块设备都会在super_blocks 这个链表中
list_for_each_entry(sb, &super_blocks, s_list) {
if (hlist_unhashed(&sb->s_instances))
continue;
#可见这里是通过判断指针是否相等来判断是否找到块设备
if (sb->s_bdev == bdev) {
sb->s_count++;
spin_unlock(&sb_lock);
#excl为null,这可以看出采用的是读read锁
if (!excl)
down_read(&sb->s_umount);
else
down_write(&sb->s_umount);
/* still alive? */
#如果块设备还处于活跃状态,就直接返回这个块设备对应的super_block了,这里也是这个函数正常的出口
if (sb->s_root && (sb->s_flags & SB_BORN))
return sb;
if (!excl)
up_read(&sb->s_umount);
else
up_write(&sb->s_umount);
/* nope, got unmounted */
spin_lock(&sb_lock);
__put_super(sb);
goto rescan;
}
}
spin_unlock(&sb_lock);
return NULL;
}
内核文件系统API之get_super
最新推荐文章于 2022-08-20 21:16:29 发布