Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
qemu
提交
da5391ed
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看板
提交
da5391ed
编写于
9月 09, 2011
作者:
A
Anthony Liguori
浏览文件
操作
浏览文件
下载
差异文件
Merge remote-tracking branch 'stefanha/trivial-patches' into staging
上级
5689dc65
5a61cb60
变更
11
隐藏空白更改
内联
并排
Showing
11 changed file
with
15 addition
and
17 deletion
+15
-17
configure
configure
+1
-2
docs/qdev-device-use.txt
docs/qdev-device-use.txt
+1
-1
hw/9pfs/virtio-9p-debug.c
hw/9pfs/virtio-9p-debug.c
+1
-1
hw/virtio-blk.c
hw/virtio-blk.c
+1
-1
linux-user/syscall.c
linux-user/syscall.c
+1
-2
monitor.c
monitor.c
+1
-1
nbd.h
nbd.h
+1
-1
qemu-nbd.c
qemu-nbd.c
+1
-1
qemu-options.hx
qemu-options.hx
+5
-5
slirp/libslirp.h
slirp/libslirp.h
+1
-1
vl.c
vl.c
+1
-1
未找到文件。
configure
浏览文件 @
da5391ed
...
...
@@ -1025,7 +1025,6 @@ echo " --disable-linux-aio disable Linux AIO support"
echo
" --enable-linux-aio enable Linux AIO support"
echo
" --disable-attr disables attr and xattr support"
echo
" --enable-attr enable attr and xattr support"
echo
" --enable-io-thread enable IO thread"
echo
" --disable-blobs disable installing provided firmware blobs"
echo
" --enable-docs enable documentation build"
echo
" --disable-docs disable documentation build"
...
...
@@ -1071,7 +1070,7 @@ cat > $TMPC << EOF
int main(void) { return 0; }
EOF
for
flag
in
$gcc_flags
;
do
if
compile_prog
"
-Werror
$QEMU_CFLAGS
"
"-Werror
$flag
"
;
then
if
compile_prog
"
$flag
-Werror"
"
"
;
then
QEMU_CFLAGS
=
"
$QEMU_CFLAGS
$flag
"
fi
done
...
...
docs/qdev-device-use.txt
浏览文件 @
da5391ed
...
...
@@ -208,7 +208,7 @@ LEGACY-CHARDEV translates to -chardev HOST-OPTS... as follows:
* con: becomes -chardev console
* COM<NUM> becomes -chardev serial,path=<NUM>
* COM<NUM> becomes -chardev serial,path=
COM
<NUM>
* file:FNAME becomes -chardev file,path=FNAME
...
...
hw/9pfs/virtio-9p-debug.c
浏览文件 @
da5391ed
...
...
@@ -295,7 +295,7 @@ static void pprint_data(V9fsPDU *pdu, int rx, size_t *offsetp, const char *name)
if
(
rx
)
{
count
=
pdu
->
elem
.
in_num
;
}
else
}
else
{
count
=
pdu
->
elem
.
out_num
;
}
...
...
hw/virtio-blk.c
浏览文件 @
da5391ed
...
...
@@ -11,7 +11,7 @@
*
*/
#include
<qemu-common.h>
#include
"qemu-common.h"
#include "qemu-error.h"
#include "trace.h"
#include "blockdev.h"
...
...
linux-user/syscall.c
浏览文件 @
da5391ed
...
...
@@ -60,7 +60,7 @@ int __clone2(int (*fn)(void *), void *child_stack_base,
#include <netinet/ip.h>
#include <netinet/tcp.h>
#include <linux/wireless.h>
#include
<qemu-common.h>
#include
"qemu-common.h"
#ifdef TARGET_GPROF
#include <sys/gmon.h>
#endif
...
...
@@ -96,7 +96,6 @@ int __clone2(int (*fn)(void *), void *child_stack_base,
#include "cpu-uname.h"
#include "qemu.h"
#include "qemu-common.h"
#if defined(CONFIG_USE_NPTL)
#define CLONE_NPTL_FLAGS2 (CLONE_SETTLS | \
...
...
monitor.c
浏览文件 @
da5391ed
...
...
@@ -886,7 +886,7 @@ static void print_cpu_iter(QObject *obj, void *opaque)
monitor_printf
(
mon
,
"nip=0x"
TARGET_FMT_lx
,
(
target_long
)
qdict_get_int
(
cpu
,
"nip"
));
#elif defined(TARGET_SPARC)
monitor_printf
(
mon
,
"pc=0x
"
TARGET_FMT_lx
,
monitor_printf
(
mon
,
"pc=0x"
TARGET_FMT_lx
,
(
target_long
)
qdict_get_int
(
cpu
,
"pc"
));
monitor_printf
(
mon
,
"npc=0x"
TARGET_FMT_lx
,
(
target_long
)
qdict_get_int
(
cpu
,
"npc"
));
...
...
nbd.h
浏览文件 @
da5391ed
...
...
@@ -21,7 +21,7 @@
#include <sys/types.h>
#include
<qemu-common.h>
#include
"qemu-common.h"
#include "block_int.h"
...
...
qemu-nbd.c
浏览文件 @
da5391ed
...
...
@@ -16,7 +16,7 @@
* along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#include
<qemu-common.h>
#include
"qemu-common.h"
#include "block_int.h"
#include "nbd.h"
...
...
qemu-options.hx
浏览文件 @
da5391ed
...
...
@@ -1412,7 +1412,7 @@ qemu linux.img -net nic,macaddr=52:54:00:12:34:56 \
Connect VLAN @var{n} to PORT @var{n} of a vde switch running on host and
listening for incoming connections on @var{socketpath}. Use GROUP @var{groupname}
and MODE @var{octalmode} to change default ownership and permissions for
communication port. This option is
available only
if QEMU has been compiled
communication port. This option is
only available
if QEMU has been compiled
with vde support enabled.
Example:
...
...
@@ -2453,13 +2453,13 @@ Specify tracing options.
Immediately enable events listed in @var{file}.
The file must contain one event name (as listed in the @var{trace-events} file)
per line.
This option is only available when using the @var{simple} and @var{stderr}
tracing backends.
This option is only available if QEMU has been compiled with
either @var{simple} or @var{stderr} tracing backend.
@item file=@var{file}
Log output traces to @var{file}.
This option is only available when using the @var{simple} tracing backend.
This option is only available if QEMU has been compiled with
the @var{simple} tracing backend.
@end table
ETEXI
...
...
slirp/libslirp.h
浏览文件 @
da5391ed
#ifndef _LIBSLIRP_H
#define _LIBSLIRP_H
#include
<qemu-common.h>
#include
"qemu-common.h"
#ifdef CONFIG_SLIRP
...
...
vl.c
浏览文件 @
da5391ed
...
...
@@ -3062,7 +3062,7 @@ int main(int argc, char **argv, char **envp)
if
(
!
data_dir
)
{
data_dir
=
os_find_datadir
(
argv
[
0
]);
}
/* If all else fails use the install pat
ch specified when building.
*/
/* If all else fails use the install pat
h specified when building.
*/
if
(
!
data_dir
)
{
data_dir
=
CONFIG_QEMU_DATADIR
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录