Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
a945b980
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,发现更多精彩内容 >>
提交
a945b980
编写于
11月 01, 2010
作者:
J
Jeremy Fitzhardinge
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
xen/blkfront: change blk_shadow.request to proper pointer
Signed-off-by:
N
Jeremy Fitzhardinge
<
jeremy.fitzhardinge@citrix.com
>
上级
c64e38ea
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
6 addition
and
8 deletion
+6
-8
drivers/block/xen-blkfront.c
drivers/block/xen-blkfront.c
+6
-8
未找到文件。
drivers/block/xen-blkfront.c
浏览文件 @
a945b980
...
...
@@ -65,7 +65,7 @@ enum blkif_state {
struct
blk_shadow
{
struct
blkif_request
req
;
unsigned
long
request
;
struct
request
*
request
;
unsigned
long
frame
[
BLKIF_MAX_SEGMENTS_PER_REQUEST
];
};
...
...
@@ -136,7 +136,7 @@ static void add_id_to_freelist(struct blkfront_info *info,
unsigned
long
id
)
{
info
->
shadow
[
id
].
req
.
id
=
info
->
shadow_free
;
info
->
shadow
[
id
].
request
=
0
;
info
->
shadow
[
id
].
request
=
NULL
;
info
->
shadow_free
=
id
;
}
...
...
@@ -278,7 +278,7 @@ static int blkif_queue_request(struct request *req)
/* Fill out a communications ring structure. */
ring_req
=
RING_GET_REQUEST
(
&
info
->
ring
,
info
->
ring
.
req_prod_pvt
);
id
=
get_id_from_freelist
(
info
);
info
->
shadow
[
id
].
request
=
(
unsigned
long
)
req
;
info
->
shadow
[
id
].
request
=
req
;
ring_req
->
id
=
id
;
ring_req
->
sector_number
=
(
blkif_sector_t
)
blk_rq_pos
(
req
);
...
...
@@ -633,7 +633,7 @@ static irqreturn_t blkif_interrupt(int irq, void *dev_id)
bret
=
RING_GET_RESPONSE
(
&
info
->
ring
,
i
);
id
=
bret
->
id
;
req
=
(
struct
request
*
)
info
->
shadow
[
id
].
request
;
req
=
info
->
shadow
[
id
].
request
;
blkif_completion
(
&
info
->
shadow
[
id
]);
...
...
@@ -898,7 +898,7 @@ static int blkif_recover(struct blkfront_info *info)
/* Stage 3: Find pending requests and requeue them. */
for
(
i
=
0
;
i
<
BLK_RING_SIZE
;
i
++
)
{
/* Not in use? */
if
(
copy
[
i
].
request
==
0
)
if
(
!
copy
[
i
].
request
)
continue
;
/* Grab a request slot and copy shadow state into it. */
...
...
@@ -915,9 +915,7 @@ static int blkif_recover(struct blkfront_info *info)
req
->
seg
[
j
].
gref
,
info
->
xbdev
->
otherend_id
,
pfn_to_mfn
(
info
->
shadow
[
req
->
id
].
frame
[
j
]),
rq_data_dir
(
(
struct
request
*
)
info
->
shadow
[
req
->
id
].
request
));
rq_data_dir
(
info
->
shadow
[
req
->
id
].
request
));
info
->
shadow
[
req
->
id
].
req
=
*
req
;
info
->
ring
.
req_prod_pvt
++
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录