Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
qemu
提交
684a7a74
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
684a7a74
编写于
11月 28, 2011
作者:
A
Anthony Liguori
浏览文件
操作
浏览文件
下载
差异文件
Merge remote-tracking branch 'stefanha/trivial-patches' into staging
上级
a1fd24af
be85c90b
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
6 addition
and
19 deletion
+6
-19
Makefile
Makefile
+1
-1
hw/rtl8139.c
hw/rtl8139.c
+1
-13
net/slirp.c
net/slirp.c
+4
-5
未找到文件。
Makefile
浏览文件 @
684a7a74
...
...
@@ -168,7 +168,7 @@ check-qjson: check-qjson.o $(qobject-obj-y) $(tools-obj-y)
test-coroutine
:
test-coroutine.o qemu-timer-common.o async.o $(coroutine-obj-y) $(tools-obj-y)
$(qapi-obj-y)
:
$(GENERATED_HEADERS)
qapi-dir
:=
qapi-generated
qapi-dir
:=
$(SRC_PATH)
/
qapi-generated
test-visitor.o test-qmp-commands.o qemu-ga$(EXESUF)
:
QEMU_CFLAGS += -I $(qapi-dir)
qemu-ga$(EXESUF)
:
LIBS = $(LIBS_QGA)
...
...
hw/rtl8139.c
浏览文件 @
684a7a74
...
...
@@ -1971,7 +1971,7 @@ static int rtl8139_cplus_transmit_one(RTL8139State *s)
cplus_tx_ring_desc
+=
16
*
descriptor
;
DPRINTF
(
"+++ C+ mode reading TX descriptor %d from host memory at "
"%08x
0x
%08x = 0x"
DMA_ADDR_FMT
"
\n
"
,
descriptor
,
s
->
TxAddr
[
1
],
"%08x
%08x = 0x"
DMA_ADDR_FMT
"
\n
"
,
descriptor
,
s
->
TxAddr
[
1
],
s
->
TxAddr
[
0
],
cplus_tx_ring_desc
);
uint32_t
val
,
txdw0
,
txdw1
,
txbufLO
,
txbufHI
;
...
...
@@ -2713,8 +2713,6 @@ static void rtl8139_io_writeb(void *opaque, uint8_t addr, uint32_t val)
{
RTL8139State
*
s
=
opaque
;
addr
&=
0xff
;
switch
(
addr
)
{
case
MAC0
...
MAC0
+
5
:
...
...
@@ -2800,8 +2798,6 @@ static void rtl8139_io_writew(void *opaque, uint8_t addr, uint32_t val)
{
RTL8139State
*
s
=
opaque
;
addr
&=
0xfe
;
switch
(
addr
)
{
case
IntrMask
:
...
...
@@ -2900,8 +2896,6 @@ static void rtl8139_io_writel(void *opaque, uint8_t addr, uint32_t val)
{
RTL8139State
*
s
=
opaque
;
addr
&=
0xfc
;
switch
(
addr
)
{
case
RxMissed
:
...
...
@@ -2969,8 +2963,6 @@ static uint32_t rtl8139_io_readb(void *opaque, uint8_t addr)
RTL8139State
*
s
=
opaque
;
int
ret
;
addr
&=
0xff
;
switch
(
addr
)
{
case
MAC0
...
MAC0
+
5
:
...
...
@@ -3043,8 +3035,6 @@ static uint32_t rtl8139_io_readw(void *opaque, uint8_t addr)
RTL8139State
*
s
=
opaque
;
uint32_t
ret
;
addr
&=
0xfe
;
/* mask lower bit */
switch
(
addr
)
{
case
IntrMask
:
...
...
@@ -3120,8 +3110,6 @@ static uint32_t rtl8139_io_readl(void *opaque, uint8_t addr)
RTL8139State
*
s
=
opaque
;
uint32_t
ret
;
addr
&=
0xfc
;
/* also mask low 2 bits */
switch
(
addr
)
{
case
RxMissed
:
...
...
net/slirp.c
浏览文件 @
684a7a74
...
...
@@ -305,7 +305,7 @@ void net_slirp_hostfwd_remove(Monitor *mon, const QDict *qdict)
{
struct
in_addr
host_addr
=
{
.
s_addr
=
INADDR_ANY
};
int
host_port
;
char
buf
[
256
]
=
""
;
char
buf
[
256
];
const
char
*
src_str
,
*
p
;
SlirpState
*
s
;
int
is_udp
=
0
;
...
...
@@ -325,11 +325,10 @@ void net_slirp_hostfwd_remove(Monitor *mon, const QDict *qdict)
return
;
}
if
(
!
src_str
||
!
src_str
[
0
])
goto
fail_syntax
;
p
=
src_str
;
get_str_sep
(
buf
,
sizeof
(
buf
),
&
p
,
':'
);
if
(
!
p
||
get_str_sep
(
buf
,
sizeof
(
buf
),
&
p
,
':'
)
<
0
)
{
goto
fail_syntax
;
}
if
(
!
strcmp
(
buf
,
"tcp"
)
||
buf
[
0
]
==
'\0'
)
{
is_udp
=
0
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录