Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
3b5d5c6b
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,发现更多精彩内容 >>
提交
3b5d5c6b
编写于
10月 06, 2008
作者:
A
Alexey Dobriyan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
proc: move /proc/modules boilerplate to kernel/module.c
Signed-off-by:
N
Alexey Dobriyan
<
adobriyan@gmail.com
>
上级
31d85ab2
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
41 addition
and
35 deletion
+41
-35
fs/proc/proc_misc.c
fs/proc/proc_misc.c
+0
-17
kernel/module.c
kernel/module.c
+41
-18
未找到文件。
fs/proc/proc_misc.c
浏览文件 @
3b5d5c6b
...
...
@@ -57,20 +57,6 @@
#include <asm/div64.h>
#include "internal.h"
#ifdef CONFIG_MODULES
extern
const
struct
seq_operations
modules_op
;
static
int
modules_open
(
struct
inode
*
inode
,
struct
file
*
file
)
{
return
seq_open
(
file
,
&
modules_op
);
}
static
const
struct
file_operations
proc_modules_operations
=
{
.
open
=
modules_open
,
.
read
=
seq_read
,
.
llseek
=
seq_lseek
,
.
release
=
seq_release
,
};
#endif
#ifdef CONFIG_PROC_PAGE_MONITOR
#define KPMSIZE sizeof(u64)
#define KPMMASK (KPMSIZE - 1)
...
...
@@ -209,9 +195,6 @@ void __init proc_misc_init(void)
proc_symlink
(
"mounts"
,
NULL
,
"self/mounts"
);
/* And now for trickier ones */
#ifdef CONFIG_MODULES
proc_create
(
"modules"
,
0
,
NULL
,
&
proc_modules_operations
);
#endif
#ifdef CONFIG_SCHEDSTATS
proc_create
(
"schedstat"
,
0
,
NULL
,
&
proc_schedstat_operations
);
#endif
...
...
kernel/module.c
浏览文件 @
3b5d5c6b
...
...
@@ -20,11 +20,13 @@
#include <linux/moduleloader.h>
#include <linux/init.h>
#include <linux/kallsyms.h>
#include <linux/fs.h>
#include <linux/sysfs.h>
#include <linux/kernel.h>
#include <linux/slab.h>
#include <linux/vmalloc.h>
#include <linux/elf.h>
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
#include <linux/syscalls.h>
#include <linux/fcntl.h>
...
...
@@ -2599,23 +2601,6 @@ unsigned long module_kallsyms_lookup_name(const char *name)
}
#endif
/* CONFIG_KALLSYMS */
/* Called by the /proc file system to return a list of modules. */
static
void
*
m_start
(
struct
seq_file
*
m
,
loff_t
*
pos
)
{
mutex_lock
(
&
module_mutex
);
return
seq_list_start
(
&
modules
,
*
pos
);
}
static
void
*
m_next
(
struct
seq_file
*
m
,
void
*
p
,
loff_t
*
pos
)
{
return
seq_list_next
(
p
,
&
modules
,
pos
);
}
static
void
m_stop
(
struct
seq_file
*
m
,
void
*
p
)
{
mutex_unlock
(
&
module_mutex
);
}
static
char
*
module_flags
(
struct
module
*
mod
,
char
*
buf
)
{
int
bx
=
0
;
...
...
@@ -2649,6 +2634,24 @@ static char *module_flags(struct module *mod, char *buf)
return
buf
;
}
#ifdef CONFIG_PROC_FS
/* Called by the /proc file system to return a list of modules. */
static
void
*
m_start
(
struct
seq_file
*
m
,
loff_t
*
pos
)
{
mutex_lock
(
&
module_mutex
);
return
seq_list_start
(
&
modules
,
*
pos
);
}
static
void
*
m_next
(
struct
seq_file
*
m
,
void
*
p
,
loff_t
*
pos
)
{
return
seq_list_next
(
p
,
&
modules
,
pos
);
}
static
void
m_stop
(
struct
seq_file
*
m
,
void
*
p
)
{
mutex_unlock
(
&
module_mutex
);
}
static
int
m_show
(
struct
seq_file
*
m
,
void
*
p
)
{
struct
module
*
mod
=
list_entry
(
p
,
struct
module
,
list
);
...
...
@@ -2679,13 +2682,33 @@ static int m_show(struct seq_file *m, void *p)
Where refcount is a number or -, and deps is a comma-separated list
of depends or -.
*/
const
struct
seq_operations
modules_op
=
{
static
const
struct
seq_operations
modules_op
=
{
.
start
=
m_start
,
.
next
=
m_next
,
.
stop
=
m_stop
,
.
show
=
m_show
};
static
int
modules_open
(
struct
inode
*
inode
,
struct
file
*
file
)
{
return
seq_open
(
file
,
&
modules_op
);
}
static
const
struct
file_operations
proc_modules_operations
=
{
.
open
=
modules_open
,
.
read
=
seq_read
,
.
llseek
=
seq_lseek
,
.
release
=
seq_release
,
};
static
int
__init
proc_modules_init
(
void
)
{
proc_create
(
"modules"
,
0
,
NULL
,
&
proc_modules_operations
);
return
0
;
}
module_init
(
proc_modules_init
);
#endif
/* Given an address, look for it in the module exception tables. */
const
struct
exception_table_entry
*
search_module_extables
(
unsigned
long
addr
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录