Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
c35f2e49
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
160
Star
36
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
cloud-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
c35f2e49
编写于
3月 31, 2013
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
srm_env: use proc_remove_subtree()
Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
d9dda78b
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
7 addition
and
57 deletion
+7
-57
arch/alpha/kernel/srm_env.c
arch/alpha/kernel/srm_env.c
+7
-57
未找到文件。
arch/alpha/kernel/srm_env.c
浏览文件 @
c35f2e49
...
...
@@ -51,7 +51,6 @@ MODULE_LICENSE("GPL");
typedef
struct
_srm_env
{
char
*
name
;
unsigned
long
id
;
struct
proc_dir_entry
*
proc_entry
;
}
srm_env_t
;
static
struct
proc_dir_entry
*
base_dir
;
...
...
@@ -149,52 +148,6 @@ static const struct file_operations srm_env_proc_fops = {
.
write
=
srm_env_proc_write
,
};
static
void
srm_env_cleanup
(
void
)
{
srm_env_t
*
entry
;
unsigned
long
var_num
;
if
(
base_dir
)
{
/*
* Remove named entries
*/
if
(
named_dir
)
{
entry
=
srm_named_entries
;
while
(
entry
->
name
!=
NULL
&&
entry
->
id
!=
0
)
{
if
(
entry
->
proc_entry
)
{
remove_proc_entry
(
entry
->
name
,
named_dir
);
entry
->
proc_entry
=
NULL
;
}
entry
++
;
}
remove_proc_entry
(
NAMED_DIR
,
base_dir
);
}
/*
* Remove numbered entries
*/
if
(
numbered_dir
)
{
for
(
var_num
=
0
;
var_num
<=
255
;
var_num
++
)
{
entry
=
&
srm_numbered_entries
[
var_num
];
if
(
entry
->
proc_entry
)
{
remove_proc_entry
(
entry
->
name
,
numbered_dir
);
entry
->
proc_entry
=
NULL
;
entry
->
name
=
NULL
;
}
}
remove_proc_entry
(
NUMBERED_DIR
,
base_dir
);
}
remove_proc_entry
(
BASE_DIR
,
NULL
);
}
return
;
}
static
int
__init
srm_env_init
(
void
)
{
...
...
@@ -225,7 +178,7 @@ srm_env_init(void)
if
(
!
base_dir
)
{
printk
(
KERN_ERR
"Couldn't create base dir /proc/%s
\n
"
,
BASE_DIR
);
goto
cleanup
;
return
-
ENOMEM
;
}
/*
...
...
@@ -254,9 +207,8 @@ srm_env_init(void)
*/
entry
=
srm_named_entries
;
while
(
entry
->
name
&&
entry
->
id
)
{
entry
->
proc_entry
=
proc_create_data
(
entry
->
name
,
0644
,
named_dir
,
&
srm_env_proc_fops
,
entry
);
if
(
!
entry
->
proc_entry
)
if
(
!
proc_create_data
(
entry
->
name
,
0644
,
named_dir
,
&
srm_env_proc_fops
,
entry
))
goto
cleanup
;
entry
++
;
}
...
...
@@ -268,9 +220,8 @@ srm_env_init(void)
entry
=
&
srm_numbered_entries
[
var_num
];
entry
->
name
=
number
[
var_num
];
entry
->
proc_entry
=
proc_create_data
(
entry
->
name
,
0644
,
numbered_dir
,
&
srm_env_proc_fops
,
entry
);
if
(
!
entry
->
proc_entry
)
if
(
!
proc_create_data
(
entry
->
name
,
0644
,
numbered_dir
,
&
srm_env_proc_fops
,
entry
))
goto
cleanup
;
entry
->
id
=
var_num
;
...
...
@@ -282,15 +233,14 @@ srm_env_init(void)
return
0
;
cleanup:
srm_env_cleanup
();
remove_proc_subtree
(
BASE_DIR
,
NULL
);
return
-
ENOMEM
;
}
static
void
__exit
srm_env_exit
(
void
)
{
srm_env_cleanup
(
);
remove_proc_subtree
(
BASE_DIR
,
NULL
);
printk
(
KERN_INFO
"%s: unloaded successfully
\n
"
,
NAME
);
return
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录