Skip to content

Commit

Permalink
fsdev: Clean up error reporting in qemu_fsdev_add()
Browse files Browse the repository at this point in the history
Calling error_report() from within a function that takes an Error **
argument is suspicious.  qemu_fsdev_add() does that, and its caller
fsdev_init_func() then fails without setting an error.  Its caller
main(), via qemu_opts_foreach(), is fine with it, but clean it up
anyway.

Cc: Greg Kurz <groug@kaod.org>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Acked-by: Greg Kurz <groug@kaod.org>
Message-Id: <20181017082702.5581-32-armbru@redhat.com>
  • Loading branch information
Markus Armbruster committed Oct 19, 2018
1 parent 9338570 commit b836723
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 15 deletions.
2 changes: 1 addition & 1 deletion fsdev/qemu-fsdev-dummy.c
Expand Up @@ -15,7 +15,7 @@
#include "qemu/config-file.h"
#include "qemu/module.h"

int qemu_fsdev_add(QemuOpts *opts)
int qemu_fsdev_add(QemuOpts *opts, Error **errp)
{
return 0;
}
12 changes: 5 additions & 7 deletions fsdev/qemu-fsdev.c
Expand Up @@ -30,18 +30,17 @@ static FsDriverTable FsDrivers[] = {
{ .name = "proxy", .ops = &proxy_ops},
};

int qemu_fsdev_add(QemuOpts *opts)
int qemu_fsdev_add(QemuOpts *opts, Error **errp)
{
int i;
struct FsDriverListEntry *fsle;
const char *fsdev_id = qemu_opts_id(opts);
const char *fsdriver = qemu_opt_get(opts, "fsdriver");
const char *writeout = qemu_opt_get(opts, "writeout");
bool ro = qemu_opt_get_bool(opts, "readonly", 0);
Error *local_err = NULL;

if (!fsdev_id) {
error_report("fsdev: No id specified");
error_setg(errp, "fsdev: No id specified");
return -1;
}

Expand All @@ -53,11 +52,11 @@ int qemu_fsdev_add(QemuOpts *opts)
}

if (i == ARRAY_SIZE(FsDrivers)) {
error_report("fsdev: fsdriver %s not found", fsdriver);
error_setg(errp, "fsdev: fsdriver %s not found", fsdriver);
return -1;
}
} else {
error_report("fsdev: No fsdriver specified");
error_setg(errp, "fsdev: No fsdriver specified");
return -1;
}

Expand All @@ -76,8 +75,7 @@ int qemu_fsdev_add(QemuOpts *opts)
}

if (fsle->fse.ops->parse_opts) {
if (fsle->fse.ops->parse_opts(opts, &fsle->fse, &local_err)) {
error_report_err(local_err);
if (fsle->fse.ops->parse_opts(opts, &fsle->fse, errp)) {
g_free(fsle->fse.fsdev_id);
g_free(fsle);
return -1;
Expand Down
2 changes: 1 addition & 1 deletion fsdev/qemu-fsdev.h
Expand Up @@ -38,7 +38,7 @@ typedef struct FsDriverListEntry {
QTAILQ_ENTRY(FsDriverListEntry) next;
} FsDriverListEntry;

int qemu_fsdev_add(QemuOpts *opts);
int qemu_fsdev_add(QemuOpts *opts, Error **errp);
FsDriverEntry *get_fsdev_fsentry(char *id);
extern FileOperations local_ops;
extern FileOperations handle_ops;
Expand Down
7 changes: 6 additions & 1 deletion hw/9pfs/xen-9p-backend.c
Expand Up @@ -14,6 +14,7 @@
#include "hw/9pfs/9p.h"
#include "hw/xen/xen_backend.h"
#include "hw/9pfs/xen-9pfs.h"
#include "qapi/error.h"
#include "qemu/config-file.h"
#include "qemu/option.h"
#include "fsdev/qemu-fsdev.h"
Expand Down Expand Up @@ -355,6 +356,7 @@ static int xen_9pfs_free(struct XenDevice *xendev)

static int xen_9pfs_connect(struct XenDevice *xendev)
{
Error *err = NULL;
int i;
Xen9pfsDev *xen_9pdev = container_of(xendev, Xen9pfsDev, xendev);
V9fsState *s = &xen_9pdev->state;
Expand Down Expand Up @@ -452,7 +454,10 @@ static int xen_9pfs_connect(struct XenDevice *xendev)
qemu_opt_set(fsdev, "path", xen_9pdev->path, NULL);
qemu_opt_set(fsdev, "security_model", xen_9pdev->security_model, NULL);
qemu_opts_set_id(fsdev, s->fsconf.fsdev_id);
qemu_fsdev_add(fsdev);
qemu_fsdev_add(fsdev, &err);
if (err) {
error_report_err(err);
}
v9fs_device_realize_common(s, &xen_9p_transport, NULL);

return 0;
Expand Down
8 changes: 3 additions & 5 deletions vl.c
Expand Up @@ -2249,7 +2249,7 @@ static int chardev_init_func(void *opaque, QemuOpts *opts, Error **errp)
#ifdef CONFIG_VIRTFS
static int fsdev_init_func(void *opaque, QemuOpts *opts, Error **errp)
{
return qemu_fsdev_add(opts);
return qemu_fsdev_add(opts, errp);
}
#endif

Expand Down Expand Up @@ -4236,10 +4236,8 @@ int main(int argc, char **argv, char **envp)
chardev_init_func, NULL, &error_fatal);

#ifdef CONFIG_VIRTFS
if (qemu_opts_foreach(qemu_find_opts("fsdev"),
fsdev_init_func, NULL, NULL)) {
exit(1);
}
qemu_opts_foreach(qemu_find_opts("fsdev"),
fsdev_init_func, NULL, &error_fatal);
#endif

if (qemu_opts_foreach(qemu_find_opts("device"),
Expand Down

0 comments on commit b836723

Please sign in to comment.