提交 a9331394 编写于 作者: D Daniel P. Berrange

qemu: convert to typesafe virConf accessors

Signed-off-by: NDaniel P. Berrange <berrange@redhat.com>
上级 54628f54
此差异已折叠。
......@@ -88,7 +88,7 @@ struct _virQEMUDriverConfig {
uid_t user;
gid_t group;
int dynamicOwnership;
bool dynamicOwnership;
int cgroupControllers;
char **cgroupDeviceACL;
......@@ -126,11 +126,11 @@ struct _virQEMUDriverConfig {
char *spicePassword;
bool spiceAutoUnixSocket;
int remotePortMin;
int remotePortMax;
unsigned int remotePortMin;
unsigned int remotePortMax;
int webSocketPortMin;
int webSocketPortMax;
unsigned int webSocketPortMin;
unsigned int webSocketPortMax;
virHugeTLBFSPtr hugetlbfs;
size_t nhugetlbfs;
......@@ -146,10 +146,10 @@ struct _virQEMUDriverConfig {
bool allowDiskFormatProbing;
bool setProcessName;
int maxProcesses;
int maxFiles;
unsigned int maxProcesses;
unsigned int maxFiles;
int maxQueuedJobs;
unsigned int maxQueuedJobs;
char **securityDriverNames;
bool securityDefaultConfined;
......@@ -173,8 +173,8 @@ struct _virQEMUDriverConfig {
char *migrateHost;
/* The default for -incoming */
char *migrationAddress;
int migrationPortMin;
int migrationPortMax;
unsigned int migrationPortMin;
unsigned int migrationPortMax;
bool logTimestamp;
bool stdioLogD;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册