mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-03-07 17:28:15 +00:00
s/qemud/qemu/ in QEMU driver sources
Change some legacy function names to use 'qemu' as their prefix instead of 'qemud' which was a hang over from when the QEMU driver ran inside a separate daemon Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
This commit is contained in:
parent
509ce9437f
commit
7492276317
@ -72,8 +72,8 @@ void qemuDriverUnlock(struct qemud_driver *driver)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
int qemudLoadDriverConfig(struct qemud_driver *driver,
|
int qemuLoadDriverConfig(struct qemud_driver *driver,
|
||||||
const char *filename) {
|
const char *filename) {
|
||||||
virConfPtr conf;
|
virConfPtr conf;
|
||||||
virConfValuePtr p;
|
virConfValuePtr p;
|
||||||
char *user;
|
char *user;
|
||||||
|
@ -176,8 +176,8 @@ struct _qemuDomainCmdlineDef {
|
|||||||
|
|
||||||
void qemuDriverLock(struct qemud_driver *driver);
|
void qemuDriverLock(struct qemud_driver *driver);
|
||||||
void qemuDriverUnlock(struct qemud_driver *driver);
|
void qemuDriverUnlock(struct qemud_driver *driver);
|
||||||
int qemudLoadDriverConfig(struct qemud_driver *driver,
|
int qemuLoadDriverConfig(struct qemud_driver *driver,
|
||||||
const char *filename);
|
const char *filename);
|
||||||
|
|
||||||
struct qemuDomainDiskInfo {
|
struct qemuDomainDiskInfo {
|
||||||
bool removable;
|
bool removable;
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -2367,8 +2367,8 @@ cleanup:
|
|||||||
|
|
||||||
|
|
||||||
static int
|
static int
|
||||||
qemudParseDriveAddReply(const char *reply,
|
qemuParseDriveAddReply(const char *reply,
|
||||||
virDomainDeviceDriveAddressPtr addr)
|
virDomainDeviceDriveAddressPtr addr)
|
||||||
{
|
{
|
||||||
char *s, *e;
|
char *s, *e;
|
||||||
|
|
||||||
@ -2446,7 +2446,7 @@ try_command:
|
|||||||
goto cleanup;
|
goto cleanup;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (qemudParseDriveAddReply(reply, driveAddr) < 0) {
|
if (qemuParseDriveAddReply(reply, driveAddr) < 0) {
|
||||||
if (!tryOldSyntax && strstr(reply, "invalid char in expression")) {
|
if (!tryOldSyntax && strstr(reply, "invalid char in expression")) {
|
||||||
VIR_FREE(reply);
|
VIR_FREE(reply);
|
||||||
VIR_FREE(cmd);
|
VIR_FREE(cmd);
|
||||||
|
@ -73,7 +73,7 @@
|
|||||||
#define SHUTDOWN_POSTFIX ": shutting down\n"
|
#define SHUTDOWN_POSTFIX ": shutting down\n"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* qemudRemoveDomainStatus
|
* qemuProcessRemoveDomainStatus
|
||||||
*
|
*
|
||||||
* remove all state files of a domain from statedir
|
* remove all state files of a domain from statedir
|
||||||
*
|
*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user