Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
qemu
提交
6fcfeff9
Q
qemu
项目概览
openeuler
/
qemu
通知
10
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
Q
qemu
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
6fcfeff9
编写于
4月 25, 2009
作者:
B
Blue Swirl
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix compilation when x86_64 is defined
上级
c433bedf
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
14 addition
and
8 deletion
+14
-8
hw/xen_blkif.h
hw/xen_blkif.h
+2
-2
hw/xen_disk.c
hw/xen_disk.c
+12
-6
未找到文件。
hw/xen_blkif.h
浏览文件 @
6fcfeff9
...
...
@@ -59,8 +59,8 @@ DEFINE_RING_TYPES(blkif_x86_64, struct blkif_x86_64_request, struct blkif_x86_64
union
blkif_back_rings
{
blkif_back_ring_t
native
;
blkif_common_back_ring_t
common
;
blkif_x86_32_back_ring_t
x86_32
;
blkif_x86_64_back_ring_t
x86_64
;
blkif_x86_32_back_ring_t
x86_32_part
;
blkif_x86_64_back_ring_t
x86_64_part
;
};
typedef
union
blkif_back_rings
blkif_back_rings_t
;
...
...
hw/xen_disk.c
浏览文件 @
6fcfeff9
...
...
@@ -440,10 +440,12 @@ static int blk_send_response_one(struct ioreq *ioreq)
dst
=
RING_GET_RESPONSE
(
&
blkdev
->
rings
.
native
,
blkdev
->
rings
.
native
.
rsp_prod_pvt
);
break
;
case
BLKIF_PROTOCOL_X86_32
:
dst
=
RING_GET_RESPONSE
(
&
blkdev
->
rings
.
x86_32
,
blkdev
->
rings
.
x86_32
.
rsp_prod_pvt
);
dst
=
RING_GET_RESPONSE
(
&
blkdev
->
rings
.
x86_32_part
,
blkdev
->
rings
.
x86_32_part
.
rsp_prod_pvt
);
break
;
case
BLKIF_PROTOCOL_X86_64
:
dst
=
RING_GET_RESPONSE
(
&
blkdev
->
rings
.
x86_64
,
blkdev
->
rings
.
x86_64
.
rsp_prod_pvt
);
dst
=
RING_GET_RESPONSE
(
&
blkdev
->
rings
.
x86_64_part
,
blkdev
->
rings
.
x86_64_part
.
rsp_prod_pvt
);
break
;
default:
dst
=
NULL
;
...
...
@@ -491,10 +493,12 @@ static int blk_get_request(struct XenBlkDev *blkdev, struct ioreq *ioreq, RING_I
sizeof
(
ioreq
->
req
));
break
;
case
BLKIF_PROTOCOL_X86_32
:
blkif_get_x86_32_req
(
&
ioreq
->
req
,
RING_GET_REQUEST
(
&
blkdev
->
rings
.
x86_32
,
rc
));
blkif_get_x86_32_req
(
&
ioreq
->
req
,
RING_GET_REQUEST
(
&
blkdev
->
rings
.
x86_32_part
,
rc
));
break
;
case
BLKIF_PROTOCOL_X86_64
:
blkif_get_x86_64_req
(
&
ioreq
->
req
,
RING_GET_REQUEST
(
&
blkdev
->
rings
.
x86_64
,
rc
));
blkif_get_x86_64_req
(
&
ioreq
->
req
,
RING_GET_REQUEST
(
&
blkdev
->
rings
.
x86_64_part
,
rc
));
break
;
}
return
0
;
...
...
@@ -698,13 +702,15 @@ static int blk_connect(struct XenDevice *xendev)
case
BLKIF_PROTOCOL_X86_32
:
{
blkif_x86_32_sring_t
*
sring_x86_32
=
blkdev
->
sring
;
BACK_RING_INIT
(
&
blkdev
->
rings
.
x86_32
,
sring_x86_32
,
XC_PAGE_SIZE
);
BACK_RING_INIT
(
&
blkdev
->
rings
.
x86_32_part
,
sring_x86_32
,
XC_PAGE_SIZE
);
break
;
}
case
BLKIF_PROTOCOL_X86_64
:
{
blkif_x86_64_sring_t
*
sring_x86_64
=
blkdev
->
sring
;
BACK_RING_INIT
(
&
blkdev
->
rings
.
x86_64
,
sring_x86_64
,
XC_PAGE_SIZE
);
BACK_RING_INIT
(
&
blkdev
->
rings
.
x86_64_part
,
sring_x86_64
,
XC_PAGE_SIZE
);
break
;
}
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录