Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
f21f6220
K
Kernel
项目概览
openeuler
/
Kernel
1 年多 前同步成功
通知
8
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
f21f6220
编写于
6月 24, 2009
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
... and the same for vfsmount id/mount group id
Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
c63e09ec
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
26 addition
and
6 deletion
+26
-6
fs/namespace.c
fs/namespace.c
+22
-4
fs/super.c
fs/super.c
+4
-2
未找到文件。
fs/namespace.c
浏览文件 @
f21f6220
...
...
@@ -42,6 +42,8 @@ __cacheline_aligned_in_smp DEFINE_SPINLOCK(vfsmount_lock);
static
int
event
;
static
DEFINE_IDA
(
mnt_id_ida
);
static
DEFINE_IDA
(
mnt_group_ida
);
static
int
mnt_id_start
=
0
;
static
int
mnt_group_start
=
1
;
static
struct
list_head
*
mount_hashtable
__read_mostly
;
static
struct
kmem_cache
*
mnt_cache
__read_mostly
;
...
...
@@ -69,7 +71,9 @@ static int mnt_alloc_id(struct vfsmount *mnt)
retry:
ida_pre_get
(
&
mnt_id_ida
,
GFP_KERNEL
);
spin_lock
(
&
vfsmount_lock
);
res
=
ida_get_new
(
&
mnt_id_ida
,
&
mnt
->
mnt_id
);
res
=
ida_get_new_above
(
&
mnt_id_ida
,
mnt_id_start
,
&
mnt
->
mnt_id
);
if
(
!
res
)
mnt_id_start
=
mnt
->
mnt_id
+
1
;
spin_unlock
(
&
vfsmount_lock
);
if
(
res
==
-
EAGAIN
)
goto
retry
;
...
...
@@ -79,8 +83,11 @@ static int mnt_alloc_id(struct vfsmount *mnt)
static
void
mnt_free_id
(
struct
vfsmount
*
mnt
)
{
int
id
=
mnt
->
mnt_id
;
spin_lock
(
&
vfsmount_lock
);
ida_remove
(
&
mnt_id_ida
,
mnt
->
mnt_id
);
ida_remove
(
&
mnt_id_ida
,
id
);
if
(
mnt_id_start
>
id
)
mnt_id_start
=
id
;
spin_unlock
(
&
vfsmount_lock
);
}
...
...
@@ -91,10 +98,18 @@ static void mnt_free_id(struct vfsmount *mnt)
*/
static
int
mnt_alloc_group_id
(
struct
vfsmount
*
mnt
)
{
int
res
;
if
(
!
ida_pre_get
(
&
mnt_group_ida
,
GFP_KERNEL
))
return
-
ENOMEM
;
return
ida_get_new_above
(
&
mnt_group_ida
,
1
,
&
mnt
->
mnt_group_id
);
res
=
ida_get_new_above
(
&
mnt_group_ida
,
mnt_group_start
,
&
mnt
->
mnt_group_id
);
if
(
!
res
)
mnt_group_start
=
mnt
->
mnt_group_id
+
1
;
return
res
;
}
/*
...
...
@@ -102,7 +117,10 @@ static int mnt_alloc_group_id(struct vfsmount *mnt)
*/
void
mnt_release_group_id
(
struct
vfsmount
*
mnt
)
{
ida_remove
(
&
mnt_group_ida
,
mnt
->
mnt_group_id
);
int
id
=
mnt
->
mnt_group_id
;
ida_remove
(
&
mnt_group_ida
,
id
);
if
(
mnt_group_start
>
id
)
mnt_group_start
=
id
;
mnt
->
mnt_group_id
=
0
;
}
...
...
fs/super.c
浏览文件 @
f21f6220
...
...
@@ -620,7 +620,8 @@ int set_anon_super(struct super_block *s, void *data)
return
-
ENOMEM
;
spin_lock
(
&
unnamed_dev_lock
);
error
=
ida_get_new_above
(
&
unnamed_dev_ida
,
unnamed_dev_start
,
&
dev
);
unnamed_dev_start
=
dev
+
1
;
if
(
!
error
)
unnamed_dev_start
=
dev
+
1
;
spin_unlock
(
&
unnamed_dev_lock
);
if
(
error
==
-
EAGAIN
)
/* We raced and lost with another CPU. */
...
...
@@ -631,7 +632,8 @@ int set_anon_super(struct super_block *s, void *data)
if
((
dev
&
MAX_ID_MASK
)
==
(
1
<<
MINORBITS
))
{
spin_lock
(
&
unnamed_dev_lock
);
ida_remove
(
&
unnamed_dev_ida
,
dev
);
unnamed_dev_start
=
dev
;
if
(
unnamed_dev_start
>
dev
)
unnamed_dev_start
=
dev
;
spin_unlock
(
&
unnamed_dev_lock
);
return
-
EMFILE
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录