Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
qemu
提交
59623530
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看板
提交
59623530
编写于
11月 01, 2011
作者:
A
Anthony Liguori
浏览文件
操作
浏览文件
下载
差异文件
Merge remote-tracking branch 'stefanha/trivial-patches' into staging
上级
90ea59fe
0ce6a434
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
11 addition
and
5 deletion
+11
-5
acl.c
acl.c
+2
-2
docs/qapi-code-gen.txt
docs/qapi-code-gen.txt
+2
-2
hw/sysbus.c
hw/sysbus.c
+2
-0
net/tap-linux.c
net/tap-linux.c
+5
-1
未找到文件。
acl.c
浏览文件 @
59623530
...
...
@@ -95,13 +95,13 @@ int qemu_acl_party_is_allowed(qemu_acl *acl,
void
qemu_acl_reset
(
qemu_acl
*
acl
)
{
qemu_acl_entry
*
entry
;
qemu_acl_entry
*
entry
,
*
next_entry
;
/* Put back to deny by default, so there is no window
* of "open access" while the user re-initializes the
* access control list */
acl
->
defaultDeny
=
1
;
QTAILQ_FOREACH
(
entry
,
&
acl
->
entries
,
next
)
{
QTAILQ_FOREACH
_SAFE
(
entry
,
&
acl
->
entries
,
next
,
next_entry
)
{
QTAILQ_REMOVE
(
&
acl
->
entries
,
entry
,
next
);
free
(
entry
->
match
);
free
(
entry
);
...
...
docs/qapi-code-gen.txt
浏览文件 @
59623530
...
...
@@ -41,7 +41,7 @@ dictionary. This corresponds to a struct in C or an Object in JSON. An
example of a complex type is:
{ 'type': 'MyType',
'data'
{ 'member1': 'str', 'member2': 'int', '*member3': 'str
} }
'data'
: { 'member1': 'str', 'member2': 'int', '*member3': 'str'
} }
The use of '*' as a prefix to the name means the member is optional. Optional
members should always be added to the end of the dictionary to preserve
...
...
@@ -63,7 +63,7 @@ An example command is:
{ 'command': 'my-command',
'data': { 'arg1': 'str', '*arg2': 'str' },
'returns': 'str'
]
'returns': 'str'
}
Command names should be all lower case with words separated by a hyphen.
...
...
hw/sysbus.c
浏览文件 @
59623530
...
...
@@ -198,6 +198,7 @@ DeviceState *sysbus_create_varargs(const char *name,
sysbus_connect_irq
(
s
,
n
,
irq
);
n
++
;
}
va_end
(
va
);
return
dev
;
}
...
...
@@ -229,6 +230,7 @@ DeviceState *sysbus_try_create_varargs(const char *name,
sysbus_connect_irq
(
s
,
n
,
irq
);
n
++
;
}
va_end
(
va
);
return
dev
;
}
...
...
net/tap-linux.c
浏览文件 @
59623530
...
...
@@ -73,7 +73,11 @@ int tap_open(char *ifname, int ifname_size, int *vnet_hdr, int vnet_hdr_required
pstrcpy
(
ifr
.
ifr_name
,
IFNAMSIZ
,
"tap%d"
);
ret
=
ioctl
(
fd
,
TUNSETIFF
,
(
void
*
)
&
ifr
);
if
(
ret
!=
0
)
{
error_report
(
"could not configure %s (%s): %m"
,
PATH_NET_TUN
,
ifr
.
ifr_name
);
if
(
ifname
[
0
]
!=
'\0'
)
{
error_report
(
"could not configure %s (%s): %m"
,
PATH_NET_TUN
,
ifr
.
ifr_name
);
}
else
{
error_report
(
"could not configure %s: %m"
,
PATH_NET_TUN
);
}
close
(
fd
);
return
-
1
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录