Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
da9cbc87
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看板
提交
da9cbc87
编写于
6月 30, 2008
作者:
J
Jens Axboe
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
block: blkdev.h cleanup, move iocontext stuff to iocontext.h
Signed-off-by:
N
Jens Axboe
<
jens.axboe@oracle.com
>
上级
b984679e
变更
4
显示空白变更内容
内联
并排
Showing
4 changed file
with
20 addition
and
17 deletion
+20
-17
include/linux/blkdev.h
include/linux/blkdev.h
+0
-17
include/linux/iocontext.h
include/linux/iocontext.h
+18
-0
kernel/exit.c
kernel/exit.c
+1
-0
kernel/fork.c
kernel/fork.c
+1
-0
未找到文件。
include/linux/blkdev.h
浏览文件 @
da9cbc87
...
...
@@ -33,12 +33,6 @@ struct sg_io_hdr;
#define BLKDEV_MIN_RQ 4
#define BLKDEV_MAX_RQ 128
/* Default maximum */
int
put_io_context
(
struct
io_context
*
ioc
);
void
exit_io_context
(
void
);
struct
io_context
*
get_io_context
(
gfp_t
gfp_flags
,
int
node
);
struct
io_context
*
alloc_io_context
(
gfp_t
gfp_flags
,
int
node
);
void
copy_io_context
(
struct
io_context
**
pdst
,
struct
io_context
**
psrc
);
struct
request
;
typedef
void
(
rq_end_io_fn
)(
struct
request
*
,
int
);
...
...
@@ -981,17 +975,6 @@ static inline long nr_blockdev_pages(void)
return
0
;
}
static
inline
void
exit_io_context
(
void
)
{
}
struct
io_context
;
static
inline
int
put_io_context
(
struct
io_context
*
ioc
)
{
return
1
;
}
#endif
/* CONFIG_BLOCK */
#endif
include/linux/iocontext.h
浏览文件 @
da9cbc87
...
...
@@ -99,4 +99,22 @@ static inline struct io_context *ioc_task_link(struct io_context *ioc)
return
NULL
;
}
#ifdef CONFIG_BLOCK
int
put_io_context
(
struct
io_context
*
ioc
);
void
exit_io_context
(
void
);
struct
io_context
*
get_io_context
(
gfp_t
gfp_flags
,
int
node
);
struct
io_context
*
alloc_io_context
(
gfp_t
gfp_flags
,
int
node
);
void
copy_io_context
(
struct
io_context
**
pdst
,
struct
io_context
**
psrc
);
#else
static
inline
void
exit_io_context
(
void
)
{
}
struct
io_context
;
static
inline
int
put_io_context
(
struct
io_context
*
ioc
)
{
return
1
;
}
#endif
#endif
kernel/exit.c
浏览文件 @
da9cbc87
...
...
@@ -13,6 +13,7 @@
#include <linux/personality.h>
#include <linux/tty.h>
#include <linux/mnt_namespace.h>
#include <linux/iocontext.h>
#include <linux/key.h>
#include <linux/security.h>
#include <linux/cpu.h>
...
...
kernel/fork.c
浏览文件 @
da9cbc87
...
...
@@ -23,6 +23,7 @@
#include <linux/sem.h>
#include <linux/file.h>
#include <linux/fdtable.h>
#include <linux/iocontext.h>
#include <linux/key.h>
#include <linux/binfmts.h>
#include <linux/mman.h>
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录