audit: tweak audit messages to match conventions

* src/qemu/qemu_audit.c (qemuDomainHostdevAudit): Avoid use of
"type", which has a pre-defined meaning.
(qemuDomainCgroupAudit): Likewise, as well as "item".
This commit is contained in:
Eric Blake 2011-02-25 17:28:21 -07:00
parent b12a02803e
commit 30ad48836e

View File

@ -159,7 +159,7 @@ qemuDomainHostdevAudit(virDomainObjPtr vm,
}
VIR_AUDIT(VIR_AUDIT_RECORD_RESOURCE, success,
"resrc=dev reason=%s %s uuid=%s type=%s %s",
"resrc=dev reason=%s %s uuid=%s bus=%s %s",
reason, vmname, uuidstr,
virDomainHostdevSubsysTypeToString(hostdev->source.subsys.type),
device);
@ -200,14 +200,14 @@ void qemuDomainCgroupAudit(virDomainObjPtr vm,
return;
}
if (name &&
!(detail = virAuditEncode(STREQ(item, "path") ? "path" : "type",
!(detail = virAuditEncode(STREQ(item, "path") ? "path" : "category",
name))) {
VIR_WARN0("OOM while encoding audit message");
goto cleanup;
}
VIR_AUDIT(VIR_AUDIT_RECORD_RESOURCE, success,
"resrc=cgroup reason=%s %s uuid=%s item=%s%s%s",
"resrc=cgroup reason=%s %s uuid=%s class=%s%s%s",
reason, vmname, uuidstr,
item, detail ? " " : "", detail ? detail : "");