Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
libvirt
提交
12b949df
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看板
提交
12b949df
编写于
6月 03, 2015
作者:
J
Ján Tomko
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
maint: remove incorrect apostrophes from 'its'
上级
22cdbec0
变更
12
隐藏空白更改
内联
并排
Showing
12 changed file
with
13 addition
and
13 deletion
+13
-13
docs/formatnode.html.in
docs/formatnode.html.in
+1
-1
src/conf/storage_conf.c
src/conf/storage_conf.c
+1
-1
src/esx/esx_driver.c
src/esx/esx_driver.c
+1
-1
src/esx/esx_network_driver.c
src/esx/esx_network_driver.c
+1
-1
src/esx/esx_storage_backend_iscsi.c
src/esx/esx_storage_backend_iscsi.c
+1
-1
src/esx/esx_storage_backend_vmfs.c
src/esx/esx_storage_backend_vmfs.c
+1
-1
src/libxl/libxl_domain.c
src/libxl/libxl_domain.c
+1
-1
src/network/bridge_driver.c
src/network/bridge_driver.c
+1
-1
src/parallels/parallels_storage.c
src/parallels/parallels_storage.c
+1
-1
src/qemu/qemu_driver.c
src/qemu/qemu_driver.c
+2
-2
src/qemu/qemu_migration.c
src/qemu/qemu_migration.c
+1
-1
src/vbox/vbox_common.c
src/vbox/vbox_common.c
+1
-1
未找到文件。
docs/formatnode.html.in
浏览文件 @
12b949df
...
...
@@ -122,7 +122,7 @@
This optional element contains information on PCI Express part of
the device. For example, it can contain a child element
<code>
link
</code>
which addresses the PCI Express device's link.
While a device has it
'
s own capabilities
While a device has its own capabilities
(
<code>
validity='cap'
</code>
), the actual run time capabilities
are negotiated on the device initialization
(
<code>
validity='sta'
</code>
). The
<code>
link
</code>
element then
...
...
src/conf/storage_conf.c
浏览文件 @
12b949df
...
...
@@ -2335,7 +2335,7 @@ matchFCHostToSCSIHost(virConnectPtr conn,
char
*
parent_name
=
NULL
;
unsigned
int
fc_hostnum
;
/* If we have a parent defined, get it
'
s hostnum, and compare to the
/* If we have a parent defined, get its hostnum, and compare to the
* scsi_hostnum. If they are the same, then we have a match
*/
if
(
fc_adapter
.
data
.
fchost
.
parent
&&
...
...
src/esx/esx_driver.c
浏览文件 @
12b949df
...
...
@@ -267,7 +267,7 @@ esxParseVMXFileName(const char *fileName, void *opaque)
* in the documentation of esxParseVMXFileName.
*
* Firstly parse the datastore path. Then use the datastore name to lookup the
* datastore and it
'
s mount path. Finally concatenate the mount path, directory
* datastore and its mount path. Finally concatenate the mount path, directory
* and file name to an absolute path and return it. Detect the separator type
* based on the mount path.
*/
...
...
src/esx/esx_network_driver.c
浏览文件 @
12b949df
...
...
@@ -38,7 +38,7 @@
#define VIR_FROM_THIS VIR_FROM_ESX
/*
* The UUID of a network is the MD5 sum of it
'
s key. Therefore, verify that
* The UUID of a network is the MD5 sum of its key. Therefore, verify that
* UUID and MD5 sum match in size, because we rely on that.
*/
verify
(
MD5_DIGEST_SIZE
==
VIR_UUID_BUFLEN
);
...
...
src/esx/esx_storage_backend_iscsi.c
浏览文件 @
12b949df
...
...
@@ -42,7 +42,7 @@
#define VIR_FROM_THIS VIR_FROM_ESX
/*
* The UUID of a storage pool is the MD5 sum of it
'
s mount path. Therefore,
* The UUID of a storage pool is the MD5 sum of its mount path. Therefore,
* verify that UUID and MD5 sum match in size, because we rely on that.
*/
verify
(
MD5_DIGEST_SIZE
==
VIR_UUID_BUFLEN
);
...
...
src/esx/esx_storage_backend_vmfs.c
浏览文件 @
12b949df
...
...
@@ -48,7 +48,7 @@
VIR_LOG_INIT
(
"esx.esx_storage_backend_vmfs"
);
/*
* The UUID of a storage pool is the MD5 sum of it
'
s mount path. Therefore,
* The UUID of a storage pool is the MD5 sum of its mount path. Therefore,
* verify that UUID and MD5 sum match in size, because we rely on that.
*/
verify
(
MD5_DIGEST_SIZE
==
VIR_UUID_BUFLEN
);
...
...
src/libxl/libxl_domain.c
浏览文件 @
12b949df
...
...
@@ -518,7 +518,7 @@ libxlDomainEventHandler(void *data, VIR_LIBXL_EVENT_CONST libxl_event *event)
/*
* Similar to the xl implementation, ignore SUSPEND. Any actions needed
* after calling libxl_domain_suspend() are handled by it
'
s callers.
* after calling libxl_domain_suspend() are handled by its callers.
*/
if
(
xl_reason
==
LIBXL_SHUTDOWN_REASON_SUSPEND
)
goto
error
;
...
...
src/network/bridge_driver.c
浏览文件 @
12b949df
...
...
@@ -1601,7 +1601,7 @@ networkRadvdConfContents(virNetworkObjPtr network, char **configstr)
return
ret
;
}
/* write file and return it
'
s name (which must be freed by caller) */
/* write file and return its name (which must be freed by caller) */
static
int
networkRadvdConfWrite
(
virNetworkDriverStatePtr
driver
,
virNetworkObjPtr
network
,
...
...
src/parallels/parallels_storage.c
浏览文件 @
12b949df
...
...
@@ -212,7 +212,7 @@ parallelsPoolCreateByPath(virConnectPtr conn, const char *path)
/*
* Create pool of type VIR_STORAGE_POOL_DIR with
* path to the VM, if it
's not exists
.
* path to the VM, if it
does not exist
.
*/
static
virStoragePoolObjPtr
parallelsPoolAddByDomain
(
virConnectPtr
conn
,
virDomainObjPtr
dom
)
...
...
src/qemu/qemu_driver.c
浏览文件 @
12b949df
...
...
@@ -2959,7 +2959,7 @@ qemuOpenFileAs(uid_t fallback_uid, gid_t fallback_gid,
is_reg = !!S_ISREG(sb.st_mode);
/* If the path is regular file which exists
* already and dynamic_ownership is off, we don't
* want to change it
'
s ownership, just open it as-is */
* want to change its ownership, just open it as-is */
if (is_reg && !dynamicOwnership) {
uid = sb.st_uid;
gid = sb.st_gid;
...
...
@@ -16396,7 +16396,7 @@ qemuDomainBlockPivot(virQEMUDriverPtr driver,
* XXX On libvirtd restarts, if we missed the qemu event, we need
* to double check what state qemu is in.
* XXX We should be using qemu's rerror flag to make sure the job
* remains alive until we know it
'
s final state.
* remains alive until we know its final state.
* XXX If the abort command is synchronous but the qemu event says
* that pivot failed, we need to reflect that failure into the
* overall return value. */
...
...
src/qemu/qemu_migration.c
浏览文件 @
12b949df
...
...
@@ -125,7 +125,7 @@ struct _qemuMigrationCookieNetData {
int
vporttype
;
/* enum virNetDevVPortProfile */
/*
* Array of pointers to saved data. Each VIF will have it
'
s own
* Array of pointers to saved data. Each VIF will have its own
* data to transfer.
*/
char
*
portdata
;
...
...
src/vbox/vbox_common.c
浏览文件 @
12b949df
...
...
@@ -4603,7 +4603,7 @@ vboxSnapshotRedefine(virDomainPtr dom,
readWriteDisk
->
location
=
realReadWriteDisksPath
[
it
];
/*
* We get the current snapshot's read-only disk uuid in order to add the
* read-write disk to the media registry as it
'
s child. The read-only disk
* read-write disk to the media registry as its child. The read-only disk
* is already in the media registry because it is the fake disk's parent.
*/
parentUuid
=
virVBoxSnapshotConfHardDiskUuidByLocation
(
snapshotMachineDesc
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录