内核文件系统API之get_super

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;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值