Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
qemu
提交
210b3a70
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看板
提交
210b3a70
编写于
10月 14, 2011
作者:
A
Anthony Liguori
浏览文件
操作
浏览文件
下载
差异文件
Merge remote-tracking branch 'stefanha/trivial-patches' into staging
上级
bdc792d3
add8d262
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
10 addition
and
32 deletion
+10
-32
block/qcow.c
block/qcow.c
+1
-1
block/sheepdog.c
block/sheepdog.c
+1
-1
hpet.h
hpet.h
+0
-22
hw/arm_pic.c
hw/arm_pic.c
+1
-1
qemu-char.c
qemu-char.c
+4
-4
qemu-options.hx
qemu-options.hx
+2
-2
tcg/tcg.h
tcg/tcg.h
+1
-1
未找到文件。
block/qcow.c
浏览文件 @
210b3a70
...
...
@@ -596,7 +596,7 @@ static int qcow_co_writev(BlockDriverState *bs, int64_t sector_num,
if
(
qiov
->
niov
>
1
)
{
qemu_vfree
(
orig_buf
);
}
free
(
cluster_data
);
g_
free
(
cluster_data
);
return
ret
;
}
...
...
block/sheepdog.c
浏览文件 @
210b3a70
...
...
@@ -66,7 +66,7 @@
* 20 - 31 (12 bits): reserved data object space
* 32 - 55 (24 bits): vdi object space
* 56 - 59 ( 4 bits): reserved vdi object space
* 60 - 63 ( 4 bits): object type i
n
dentifier space
* 60 - 63 ( 4 bits): object type identifier space
*/
#define VDI_SPACE_SHIFT 32
...
...
hpet.h
已删除
100644 → 0
浏览文件 @
bdc792d3
#ifndef __HPET__
#define __HPET__ 1
struct
hpet_info
{
unsigned
long
hi_ireqfreq
;
/* Hz */
unsigned
long
hi_flags
;
/* information */
unsigned
short
hi_hpet
;
unsigned
short
hi_timer
;
};
#define HPET_INFO_PERIODIC 0x0001
/* timer is periodic */
#define HPET_IE_ON _IO('h', 0x01)
/* interrupt on */
#define HPET_IE_OFF _IO('h', 0x02)
/* interrupt off */
#define HPET_INFO _IOR('h', 0x03, struct hpet_info)
#define HPET_EPI _IO('h', 0x04)
/* enable periodic */
#define HPET_DPI _IO('h', 0x05)
/* disable periodic */
#define HPET_IRQFREQ _IOW('h', 0x6, unsigned long)
/* IRQFREQ usec */
#endif
/* !__HPET__ */
hw/arm_pic.c
浏览文件 @
210b3a70
...
...
@@ -39,7 +39,7 @@ static void arm_pic_cpu_handler(void *opaque, int irq, int level)
cpu_reset_interrupt
(
env
,
CPU_INTERRUPT_FIQ
);
break
;
default:
hw_error
(
"arm_pic_cpu_handler: Bad interr
pu
t line %d
\n
"
,
irq
);
hw_error
(
"arm_pic_cpu_handler: Bad interr
up
t line %d
\n
"
,
irq
);
}
}
...
...
qemu-char.c
浏览文件 @
210b3a70
...
...
@@ -1664,8 +1664,8 @@ static int qemu_chr_open_win(QemuOpts *opts, CharDriverState **_chr)
chr
->
chr_close
=
win_chr_close
;
if
(
win_chr_init
(
chr
,
filename
)
<
0
)
{
free
(
s
);
free
(
chr
);
g_
free
(
s
);
g_
free
(
chr
);
return
-
EIO
;
}
qemu_chr_generic_open
(
chr
);
...
...
@@ -1766,8 +1766,8 @@ static int qemu_chr_open_win_pipe(QemuOpts *opts, CharDriverState **_chr)
chr
->
chr_close
=
win_chr_close
;
if
(
win_chr_pipe_init
(
chr
,
filename
)
<
0
)
{
free
(
s
);
free
(
chr
);
g_
free
(
s
);
g_
free
(
chr
);
return
-
EIO
;
}
qemu_chr_generic_open
(
chr
);
...
...
qemu-options.hx
浏览文件 @
210b3a70
...
...
@@ -1673,15 +1673,15 @@ Connect to a local parallel port.
@option{path} specifies the path to the parallel port device. @option{path} is
required.
#if defined(CONFIG_SPICE)
@item -chardev spicevmc ,id=@var{id} ,debug=@var{debug}, name=@var{name}
@option{spicevmc} is only available when spice support is built in.
@option{debug} debug level for spicevmc
@option{name} name of spice channel to connect to
Connect to a spice virtual machine channel, such as vdiport.
#endif
@end table
ETEXI
...
...
tcg/tcg.h
浏览文件 @
210b3a70
...
...
@@ -175,7 +175,7 @@ typedef enum TCGType {
typedef
tcg_target_ulong
TCGArg
;
/* Define a type and accessor macros for varables. Using a struct is
/* Define a type and accessor macros for var
i
ables. Using a struct is
nice because it gives some level of type safely. Ideally the compiler
be able to see through all this. However in practice this is not true,
expecially on targets with braindamaged ABIs (e.g. i386).
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录