Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
68274007
cloud-kernel
项目概览
openanolis
/
cloud-kernel
大约 1 年 前同步成功
通知
158
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
68274007
编写于
10月 04, 2008
作者:
A
Alexey Dobriyan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
proc: move /proc/filesystems to fs/filesystems.c
Signed-off-by:
N
Alexey Dobriyan
<
adobriyan@gmail.com
>
上级
4c150f6c
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
39 addition
and
8 deletion
+39
-8
fs/filesystems.c
fs/filesystems.c
+39
-0
fs/proc/proc_misc.c
fs/proc/proc_misc.c
+0
-8
未找到文件。
fs/filesystems.c
浏览文件 @
68274007
...
...
@@ -8,6 +8,8 @@
#include <linux/syscalls.h>
#include <linux/fs.h>
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
#include <linux/slab.h>
#include <linux/kmod.h>
#include <linux/init.h>
...
...
@@ -214,6 +216,43 @@ int get_filesystem_list(char * buf)
return
len
;
}
#ifdef CONFIG_PROC_FS
static
int
filesystems_proc_show
(
struct
seq_file
*
m
,
void
*
v
)
{
struct
file_system_type
*
tmp
;
read_lock
(
&
file_systems_lock
);
tmp
=
file_systems
;
while
(
tmp
)
{
seq_printf
(
m
,
"%s
\t
%s
\n
"
,
(
tmp
->
fs_flags
&
FS_REQUIRES_DEV
)
?
""
:
"nodev"
,
tmp
->
name
);
tmp
=
tmp
->
next
;
}
read_unlock
(
&
file_systems_lock
);
return
0
;
}
static
int
filesystems_proc_open
(
struct
inode
*
inode
,
struct
file
*
file
)
{
return
single_open
(
file
,
filesystems_proc_show
,
NULL
);
}
static
const
struct
file_operations
filesystems_proc_fops
=
{
.
open
=
filesystems_proc_open
,
.
read
=
seq_read
,
.
llseek
=
seq_lseek
,
.
release
=
single_release
,
};
static
int
__init
proc_filesystems_init
(
void
)
{
proc_create
(
"filesystems"
,
0
,
NULL
,
&
filesystems_proc_fops
);
return
0
;
}
module_init
(
proc_filesystems_init
);
#endif
struct
file_system_type
*
get_fs_type
(
const
char
*
name
)
{
struct
file_system_type
*
fs
;
...
...
fs/proc/proc_misc.c
浏览文件 @
68274007
...
...
@@ -472,13 +472,6 @@ static const struct file_operations proc_interrupts_operations = {
.
release
=
seq_release
,
};
static
int
filesystems_read_proc
(
char
*
page
,
char
**
start
,
off_t
off
,
int
count
,
int
*
eof
,
void
*
data
)
{
int
len
=
get_filesystem_list
(
page
);
return
proc_calc_metrics
(
page
,
start
,
off
,
count
,
eof
,
len
);
}
static
int
cmdline_read_proc
(
char
*
page
,
char
**
start
,
off_t
off
,
int
count
,
int
*
eof
,
void
*
data
)
{
...
...
@@ -648,7 +641,6 @@ void __init proc_misc_init(void)
char
*
name
;
int
(
*
read_proc
)(
char
*
,
char
**
,
off_t
,
int
,
int
*
,
void
*
);
}
*
p
,
simple_ones
[]
=
{
{
"filesystems"
,
filesystems_read_proc
},
{
"cmdline"
,
cmdline_read_proc
},
{
"execdomains"
,
execdomains_read_proc
},
{
NULL
,}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录