Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
libvirt
提交
47c87095
L
libvirt
项目概览
openeuler
/
libvirt
通知
3
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
L
libvirt
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
47c87095
编写于
9月 22, 2009
作者:
C
Chris Lalancette
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix up a few typos in the tree.
Signed-off-by:
N
Chris Lalancette
<
clalance@redhat.com
>
上级
f4e74cf6
变更
12
隐藏空白更改
内联
并排
Showing
12 changed file
with
17 addition
and
17 deletion
+17
-17
daemon/THREADING.txt
daemon/THREADING.txt
+1
-1
docs/drvqemu.html.in
docs/drvqemu.html.in
+1
-1
libvirt.spec.in
libvirt.spec.in
+1
-1
src/esx/esx_driver.c
src/esx/esx_driver.c
+1
-1
src/libvirt.c
src/libvirt.c
+1
-1
src/openvz/openvz_driver.c
src/openvz/openvz_driver.c
+2
-2
src/remote/remote_driver.c
src/remote/remote_driver.c
+1
-1
src/security/security_selinux.c
src/security/security_selinux.c
+1
-1
src/util/util.c
src/util/util.c
+1
-1
src/vbox/vbox_tmpl.c
src/vbox/vbox_tmpl.c
+4
-4
tests/object-locking.ml
tests/object-locking.ml
+1
-1
tools/virt-pki-validate.in
tools/virt-pki-validate.in
+2
-2
未找到文件。
daemon/THREADING.txt
浏览文件 @
47c87095
...
...
@@ -59,4 +59,4 @@ for the associated RPC call.
While the helper method is executing, no locks are held on either
the client or server, but the ref count on the 'struct qemud_client'
object is incremented to ensure its not deleted. The helper can
now safely invoke the nec
c
essary libvirt API call.
now safely invoke the necessary libvirt API call.
docs/drvqemu.html.in
浏览文件 @
47c87095
...
...
@@ -208,7 +208,7 @@
Thus, if a vendor / distributor has configured their libvirt package
to run as 'qemu' by default, a number of changes will be required
before an administrator can change a host to run guests as root.
In particular it will be nec
c
essary to change ownership on the
In particular it will be necessary to change ownership on the
directories
<code>
/var/run/libvirt/qemu/
</code>
,
<code>
/var/lib/libvirt/qemu/
</code>
and
<code>
/var/cache/libvirt/qemu/
</code>
back to root, in addition
...
...
libvirt.spec.in
浏览文件 @
47c87095
...
...
@@ -22,7 +22,7 @@
%endif
# Now set the defaults for all the important features, independ
a
nt
# Now set the defaults for all the important features, independ
e
nt
# of any particular OS
# First the daemon itself
...
...
src/esx/esx_driver.c
浏览文件 @
47c87095
...
...
@@ -1486,7 +1486,7 @@ esxDomainDestroy(virDomainPtr domain)
if
(
taskInfoState
!=
esxVI_TaskInfoState_Success
)
{
ESX_ERROR
(
domain
->
conn
,
VIR_ERR_INTERNAL_ERROR
,
"Could not dest
or
y domain"
);
"Could not dest
ro
y domain"
);
goto
failure
;
}
...
...
src/libvirt.c
浏览文件 @
47c87095
...
...
@@ -9423,7 +9423,7 @@ virStreamRef(virStreamPtr stream)
* Write a series of bytes to the stream. This method may
* block the calling application for an arbitrary amount
* of time. Once an application has finished sending data
* it should call virStreamFinish to wait for succesful
* it should call virStreamFinish to wait for succes
s
ful
* confirmation from the driver, or detect any error
*
* This method may not be used if a stream source has been
...
...
src/openvz/openvz_driver.c
浏览文件 @
47c87095
...
...
@@ -780,7 +780,7 @@ openvzDomainDefineXML(virConnectPtr conn, const char *xml)
if
(
openvzSetInitialConfig
(
conn
,
vm
->
def
)
<
0
)
{
openvzError
(
conn
,
VIR_ERR_INTERNAL_ERROR
,
"%s"
,
_
(
"Error creating intial configuration"
));
"%s"
,
_
(
"Error creating in
i
tial configuration"
));
goto
cleanup
;
}
...
...
@@ -847,7 +847,7 @@ openvzDomainCreateXML(virConnectPtr conn, const char *xml,
if
(
openvzSetInitialConfig
(
conn
,
vm
->
def
)
<
0
)
{
openvzError
(
conn
,
VIR_ERR_INTERNAL_ERROR
,
"%s"
,
_
(
"Error creating intial configuration"
));
"%s"
,
_
(
"Error creating in
i
tial configuration"
));
goto
cleanup
;
}
...
...
src/remote/remote_driver.c
浏览文件 @
47c87095
...
...
@@ -7915,7 +7915,7 @@ error:
* NB(4) This is very complicated. Due to connection cloning, multiple
* threads can want to use the socket at once. Obviously only one of
* them can. So if someone's using the socket, other threads are put
* to sleep on condition variables. T
H
e existing thread may completely
* to sleep on condition variables. T
h
e existing thread may completely
* send & receive their RPC call/reply while they're asleep. Or it
* may only get around to dealing with sending the call. Or it may
* get around to neither. So upon waking up from slumber, the other
...
...
src/security/security_selinux.c
浏览文件 @
47c87095
...
...
@@ -329,7 +329,7 @@ SELinuxSetFilecon(virConnectPtr conn, const char *path, char *tcon)
/* if the error complaint is related to an image hosted on
* an nfs mount, or a usbfs/sysfs filesystem not supporting
* labelling, then just ignore it & hope for the best.
* The user hopefully set one of the nec
c
essary SELinux
* The user hopefully set one of the necessary SELinux
* virt_use_{nfs,usb,pci} boolean tunables to allow it...
*/
if
(
setfilecon_errno
!=
EOPNOTSUPP
)
{
...
...
src/util/util.c
浏览文件 @
47c87095
...
...
@@ -297,7 +297,7 @@ static int virClearCapabilities(void)
/*
* @conn Connection to report errors against
* @argv argv to exec
* @envp optional enviroment to use for exec
* @envp optional enviro
n
ment to use for exec
* @keepfd options fd_ret to keep open for child process
* @retpid optional pointer to store child process pid
* @infd optional file descriptor to use as child input, otherwise /dev/null
...
...
src/vbox/vbox_tmpl.c
浏览文件 @
47c87095
...
...
@@ -4761,7 +4761,7 @@ static virDrvOpenStatus vboxNetworkOpen(virConnectPtr conn,
(
data
->
vboxSession
==
NULL
))
goto
cleanup
;
DEBUG0
(
"network intialized"
);
DEBUG0
(
"network in
i
tialized"
);
/* conn->networkPrivateData = some network specific data */
return
VIR_DRV_OPEN_SUCCESS
;
...
...
@@ -4770,7 +4770,7 @@ cleanup:
}
static
int
vboxNetworkClose
(
virConnectPtr
conn
)
{
DEBUG0
(
"network unintialized"
);
DEBUG0
(
"network unin
i
tialized"
);
conn
->
networkPrivateData
=
NULL
;
return
0
;
}
...
...
@@ -5606,7 +5606,7 @@ static virDrvOpenStatus vboxStorageOpen (virConnectPtr conn,
(
data
->
vboxSession
==
NULL
))
goto
cleanup
;
DEBUG0
(
"vbox storage intialized"
);
DEBUG0
(
"vbox storage in
i
tialized"
);
/* conn->storagePrivateData = some storage specific data */
return
VIR_DRV_OPEN_SUCCESS
;
...
...
@@ -5615,7 +5615,7 @@ cleanup:
}
static
int
vboxStorageClose
(
virConnectPtr
conn
)
{
DEBUG0
(
"vbox storage unintialized"
);
DEBUG0
(
"vbox storage unin
i
tialized"
);
conn
->
storagePrivateData
=
NULL
;
return
0
;
}
...
...
tests/object-locking.ml
浏览文件 @
47c87095
...
...
@@ -332,7 +332,7 @@ let isLockableDriverNull exp =
(*
* Prior to validating a function, intialize these
* Prior to validating a function, in
i
tialize these
* to VS.empty
*
* They contain the list of driver and object variables
...
...
tools/virt-pki-validate.in
浏览文件 @
47c87095
...
...
@@ -275,10 +275,10 @@ exit 0
=
head1 DESCRIPTION
This tool validates that the nec
c
essary PKI files are configured
for
This tool validates that the necessary PKI files are configured
for
a secure libvirt server or client using the TLS encryption protocol.
It will report any missing certificate or key files on the host. It
should be run as root to ensure it can
read
all the nec
c
essary files
should be run as root to ensure it can
read
all the necessary files
=
head1 EXIT STATUS
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录