Catch the individual usage not removed in previous commits.
Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
static int lxcCheckNetNsSupport(void)
{
- const char *argv[] = {"ip", "link", "set", "lo", "netns", "-1", NULL};
+ g_autoptr(virCommand) cmd = virCommandNewArgList("ip", "link", "set", "lo",
+ "netns", "-1", NULL);
int ip_rc;
- if (virRun(argv, &ip_rc) < 0 || ip_rc == 255)
+ if (virCommandRun(cmd, &ip_rc) < 0 || ip_rc == 255)
return 0;
if (virProcessNamespaceAvailable(VIR_PROCESS_NAMESPACE_NET) < 0)
bool try_all,
int ndisks)
{
- const char *qemuimgarg[] = { NULL, "snapshot", NULL, NULL, NULL, NULL };
+ const char *qemuimgbin;
size_t i;
bool skipped = false;
- qemuimgarg[0] = qemuFindQemuImgBinary(driver);
- if (qemuimgarg[0] == NULL) {
+ qemuimgbin = qemuFindQemuImgBinary(driver);
+ if (qemuimgbin == NULL) {
/* qemuFindQemuImgBinary set the error */
return -1;
}
- qemuimgarg[2] = op;
- qemuimgarg[3] = name;
-
for (i = 0; i < ndisks; i++) {
+ g_autoptr(virCommand) cmd = virCommandNewArgList(qemuimgbin, "snapshot",
+ op, name, NULL);
+
/* FIXME: we also need to handle LVM here */
if (def->disks[i]->device == VIR_DOMAIN_DISK_DEVICE_DISK) {
int format = virDomainDiskGetFormat(def->disks[i]);
return -1;
}
- qemuimgarg[4] = virDomainDiskGetSource(def->disks[i]);
+ virCommandAddArg(cmd, virDomainDiskGetSource(def->disks[i]));
- if (virRun(qemuimgarg, NULL) < 0) {
+ if (virCommandRun(cmd, NULL) < 0) {
if (try_all) {
VIR_WARN("skipping snapshot action on %s",
def->disks[i]->dst);
static int
remove_profile(const char *profile)
{
- int rc = -1;
- const char * const argv[] = {
- VIRT_AA_HELPER, "-D", "-u", profile, NULL
- };
-
- if (virRun(argv, NULL) == 0)
- rc = 0;
+ g_autoptr(virCommand) cmd = virCommandNewArgList(VIRT_AA_HELPER, "-D", "-u",
+ profile, NULL);
- return rc;
+ return virCommandRun(cmd, NULL);
}
static char *
g_autofree char *pid = NULL;
g_autofree char *phy = NULL;
g_autofree char *phy_path = NULL;
+ g_autoptr(virCommand) cmd = NULL;
int len;
pid = g_strdup_printf("%lld", (long long) pidInNs);
if ((len = virFileReadAllQuiet(phy_path, 1024, &phy)) <= 0) {
/* Not a wireless device. */
- const char *argv[] = {
- "ip", "link", "set", ifname, "netns", NULL, NULL
- };
-
- argv[5] = pid;
- if (virRun(argv, NULL) < 0)
- return -1;
-
+ cmd = virCommandNewArgList("ip", "link",
+ "set", ifname, "netns", pid, NULL);
} else {
- const char *argv[] = {
- "iw", "phy", NULL, "set", "netns", NULL, NULL
- };
-
/* Remove a line break. */
phy[len - 1] = '\0';
- argv[2] = phy;
- argv[5] = pid;
- if (virRun(argv, NULL) < 0)
- return -1;
+ cmd = virCommandNewArgList("iw", "phy", phy,
+ "set", "netns", pid, NULL);
}
+ if (virCommandRun(cmd, NULL) < 0)
+ return -1;
+
return 0;
}