Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
qemu
提交
e72c3f2e
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,发现更多精彩内容 >>
提交
e72c3f2e
编写于
3月 25, 2012
作者:
M
Michael Roth
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
qemu-ga: fix bsd build, and re-org linux-specific implementations
上级
cb1977d3
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
66 addition
and
45 deletion
+66
-45
qga/commands-posix.c
qga/commands-posix.c
+66
-45
未找到文件。
qga/commands-posix.c
浏览文件 @
e72c3f2e
...
...
@@ -12,29 +12,30 @@
*/
#include <glib.h>
#include <sys/types.h>
#include <sys/ioctl.h>
#include "qga/guest-agent-core.h"
#include "qga-qmp-commands.h"
#include "qerror.h"
#include "qemu-queue.h"
#include "host-utils.h"
#if defined(__linux__)
#include <mntent.h>
#include <linux/fs.h>
#if defined(__linux__) && defined(FIFREEZE)
#define CONFIG_FSFREEZE
#endif
#endif
#include <sys/types.h>
#include <sys/ioctl.h>
#include <ifaddrs.h>
#include <arpa/inet.h>
#include <sys/socket.h>
#include <net/if.h>
#include <sys/wait.h>
#include "qga/guest-agent-core.h"
#include "qga-qmp-commands.h"
#include "qerror.h"
#include "qemu-queue.h"
#include "host-utils.h"
#if defined(__linux__) && defined(FIFREEZE)
#define CONFIG_FSFREEZE
#endif
#endif
#if defined(__linux__)
/* TODO: use this in place of all post-fork() fclose(std*) callers */
static
void
reopen_fd_to_null
(
int
fd
)
{
int
nullfd
;
...
...
@@ -50,6 +51,7 @@ static void reopen_fd_to_null(int fd)
close
(
nullfd
);
}
}
#endif
/* defined(__linux__) */
void
qmp_guest_shutdown
(
bool
has_mode
,
const
char
*
mode
,
Error
**
err
)
{
...
...
@@ -309,7 +311,11 @@ static void guest_file_init(void)
QTAILQ_INIT
(
&
guest_file_state
.
filehandles
);
}
/* linux-specific implementations. avoid this if at all possible. */
#if defined(__linux__)
#if defined(CONFIG_FSFREEZE)
static
void
disable_logging
(
void
)
{
ga_disable_logging
(
ga_state
);
...
...
@@ -505,38 +511,7 @@ static void guest_fsfreeze_cleanup(void)
}
}
}
#else
/*
* Return status of freeze/thaw
*/
GuestFsfreezeStatus
qmp_guest_fsfreeze_status
(
Error
**
err
)
{
error_set
(
err
,
QERR_UNSUPPORTED
);
return
0
;
}
/*
* Walk list of mounted file systems in the guest, and freeze the ones which
* are real local file systems.
*/
int64_t
qmp_guest_fsfreeze_freeze
(
Error
**
err
)
{
error_set
(
err
,
QERR_UNSUPPORTED
);
return
0
;
}
/*
* Walk list of frozen file systems in the guest, and thaw them.
*/
int64_t
qmp_guest_fsfreeze_thaw
(
Error
**
err
)
{
error_set
(
err
,
QERR_UNSUPPORTED
);
return
0
;
}
#endif
#endif
/* CONFIG_FSFREEZE */
#define LINUX_SYS_STATE_FILE "/sys/power/state"
#define SUSPEND_SUPPORTED 0
...
...
@@ -904,6 +879,52 @@ error:
return
NULL
;
}
#else
/* defined(__linux__) */
GuestFsfreezeStatus
qmp_guest_fsfreeze_status
(
Error
**
err
)
{
error_set
(
err
,
QERR_UNSUPPORTED
);
return
0
;
}
int64_t
qmp_guest_fsfreeze_freeze
(
Error
**
err
)
{
error_set
(
err
,
QERR_UNSUPPORTED
);
return
0
;
}
int64_t
qmp_guest_fsfreeze_thaw
(
Error
**
err
)
{
error_set
(
err
,
QERR_UNSUPPORTED
);
return
0
;
}
void
qmp_guest_suspend_disk
(
Error
**
err
)
{
error_set
(
err
,
QERR_UNSUPPORTED
);
}
void
qmp_guest_suspend_ram
(
Error
**
err
)
{
error_set
(
err
,
QERR_UNSUPPORTED
);
}
void
qmp_guest_suspend_hybrid
(
Error
**
err
)
{
error_set
(
err
,
QERR_UNSUPPORTED
);
}
GuestNetworkInterfaceList
*
qmp_guest_network_get_interfaces
(
Error
**
errp
)
{
error_set
(
errp
,
QERR_UNSUPPORTED
);
return
NULL
;
}
#endif
/* register init/cleanup routines for stateful command groups */
void
ga_command_state_init
(
GAState
*
s
,
GACommandState
*
cs
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录