Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
4c150f6c
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看板
提交
4c150f6c
编写于
10月 04, 2008
作者:
A
Alexey Dobriyan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
proc: move /proc/stram to m68k-specific code
Signed-off-by:
N
Alexey Dobriyan
<
adobriyan@gmail.com
>
上级
813dcf7a
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
22 addition
and
19 deletion
+22
-19
arch/m68k/atari/stram.c
arch/m68k/atari/stram.c
+22
-6
fs/proc/proc_misc.c
fs/proc/proc_misc.c
+0
-13
未找到文件。
arch/m68k/atari/stram.c
浏览文件 @
4c150f6c
...
...
@@ -42,6 +42,7 @@
/* abbrev for the && above... */
#define DO_PROC
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
#endif
/*
...
...
@@ -323,19 +324,16 @@ static int remove_region( BLOCK *block )
#ifdef DO_PROC
#define PRINT_PROC(fmt,args...)
len += sprintf( buf+len
, fmt, ##args )
#define PRINT_PROC(fmt,args...)
seq_printf( m
, fmt, ##args )
int
get_stram_list
(
char
*
buf
)
static
int
stram_proc_show
(
struct
seq_file
*
m
,
void
*
v
)
{
int
len
=
0
;
BLOCK
*
p
;
PRINT_PROC
(
"Total ST-RAM: %8u kB
\n
"
,
(
stram_end
-
stram_start
)
>>
10
);
PRINT_PROC
(
"Allocated regions:
\n
"
);
for
(
p
=
alloc_list
;
p
;
p
=
p
->
next
)
{
if
(
len
+
50
>=
PAGE_SIZE
)
break
;
PRINT_PROC
(
"0x%08lx-0x%08lx: %s ("
,
virt_to_phys
(
p
->
start
),
virt_to_phys
(
p
->
start
+
p
->
size
-
1
),
...
...
@@ -346,9 +344,27 @@ int get_stram_list( char *buf )
PRINT_PROC
(
"??)
\n
"
);
}
return
(
len
);
return
0
;
}
static
int
stram_proc_open
(
struct
inode
*
inode
,
struct
file
*
file
)
{
return
single_open
(
file
,
stram_proc_show
,
NULL
);
}
static
const
struct
file_operations
stram_proc_fops
=
{
.
open
=
stram_proc_open
,
.
read
=
seq_read
,
.
llseek
=
seq_lseek
,
.
release
=
single_release
,
};
static
int
__init
proc_stram_init
(
void
)
{
proc_create
(
"stram"
,
0
,
NULL
,
&
stram_proc_fops
);
return
0
;
}
module_init
(
proc_stram_init
);
#endif
...
...
fs/proc/proc_misc.c
浏览文件 @
4c150f6c
...
...
@@ -63,7 +63,6 @@
* have a way to deal with that gracefully. Right now I used straightforward
* wrappers, but this needs further analysis wrt potential overflows.
*/
extern
int
get_stram_list
(
char
*
);
extern
int
get_exec_domain_list
(
char
*
);
static
int
proc_calc_metrics
(
char
*
page
,
char
**
start
,
off_t
off
,
...
...
@@ -197,15 +196,6 @@ static const struct file_operations proc_vmstat_file_operations = {
.
release
=
seq_release
,
};
#ifdef CONFIG_STRAM_PROC
static
int
stram_read_proc
(
char
*
page
,
char
**
start
,
off_t
off
,
int
count
,
int
*
eof
,
void
*
data
)
{
int
len
=
get_stram_list
(
page
);
return
proc_calc_metrics
(
page
,
start
,
off
,
count
,
eof
,
len
);
}
#endif
#ifdef CONFIG_BLOCK
static
int
partitions_open
(
struct
inode
*
inode
,
struct
file
*
file
)
{
...
...
@@ -658,9 +648,6 @@ void __init proc_misc_init(void)
char
*
name
;
int
(
*
read_proc
)(
char
*
,
char
**
,
off_t
,
int
,
int
*
,
void
*
);
}
*
p
,
simple_ones
[]
=
{
#ifdef CONFIG_STRAM_PROC
{
"stram"
,
stram_read_proc
},
#endif
{
"filesystems"
,
filesystems_read_proc
},
{
"cmdline"
,
cmdline_read_proc
},
{
"execdomains"
,
execdomains_read_proc
},
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录