Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
qemu
提交
715f396d
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看板
提交
715f396d
编写于
10月 03, 2017
作者:
P
Paolo Bonzini
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
i386: hvf: remove ZERO_INIT macro
Signed-off-by:
N
Paolo Bonzini
<
pbonzini@redhat.com
>
上级
74682782
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
4 addition
and
6 deletion
+4
-6
target/i386/hvf/x86.c
target/i386/hvf/x86.c
+3
-2
target/i386/hvf/x86_decode.c
target/i386/hvf/x86_decode.c
+1
-2
target/i386/hvf/x86_gen.h
target/i386/hvf/x86_gen.h
+0
-2
未找到文件。
target/i386/hvf/x86.c
浏览文件 @
715f396d
...
...
@@ -53,7 +53,8 @@ bool x86_read_segment_descriptor(struct CPUState *cpu,
addr_t
base
;
uint32_t
limit
;
ZERO_INIT
(
*
desc
);
memset
(
desc
,
0
,
sizeof
(
*
desc
));
/* valid gdt descriptors start from index 1 */
if
(
!
sel
.
index
&&
GDT_SEL
==
sel
.
ti
)
{
return
false
;
...
...
@@ -104,7 +105,7 @@ bool x86_read_call_gate(struct CPUState *cpu, struct x86_call_gate *idt_desc,
addr_t
base
=
rvmcs
(
cpu
->
hvf_fd
,
VMCS_GUEST_IDTR_BASE
);
uint32_t
limit
=
rvmcs
(
cpu
->
hvf_fd
,
VMCS_GUEST_IDTR_LIMIT
);
ZERO_INIT
(
*
idt_desc
);
memset
(
idt_desc
,
0
,
sizeof
(
*
idt_desc
)
);
if
(
gate
*
8
>=
limit
)
{
printf
(
"%s: idt limit
\n
"
,
__func__
);
return
false
;
...
...
target/i386/hvf/x86_decode.c
浏览文件 @
715f396d
...
...
@@ -2091,8 +2091,7 @@ static void decode_opcodes(CPUX86State *env, struct x86_decode *decode)
uint32_t
decode_instruction
(
CPUX86State
*
env
,
struct
x86_decode
*
decode
)
{
ZERO_INIT
(
*
decode
);
memset
(
decode
,
0
,
sizeof
(
*
decode
));
decode_prefix
(
env
,
decode
);
set_addressing_size
(
env
,
decode
);
set_operand_size
(
env
,
decode
);
...
...
target/i386/hvf/x86_gen.h
浏览文件 @
715f396d
...
...
@@ -44,6 +44,4 @@ typedef uint64_t addr_t;
} \
}
#define ZERO_INIT(obj) memset((void *) &obj, 0, sizeof(obj))
#endif
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录