]> git.proxmox.com Git - mirror_qemu.git/commitdiff
9p: local: Properly set errp in fstatfs error path
authorKeno Fischer <keno@juliacomputing.com>
Thu, 7 Jun 2018 10:17:21 +0000 (12:17 +0200)
committerGreg Kurz <groug@kaod.org>
Thu, 7 Jun 2018 10:17:21 +0000 (12:17 +0200)
In the review of

    9p: Avoid warning if FS_IOC_GETVERSION is not defined

Grep Kurz noted this error path was failing to set errp.
Fix that.

Signed-off-by: Keno Fischer <keno@juliacomputing.com>
[added local: to commit title, Greg Kurz]
Signed-off-by: Greg Kurz <groug@kaod.org>
hw/9pfs/9p-local.c

index b37b1db453dabcfa89879c1c532e87965368a1a4..7758c38509006961d7ca7de495468d2778a12095 100644 (file)
@@ -1418,6 +1418,8 @@ static int local_init(FsContext *ctx, Error **errp)
      */
     if (fstatfs(data->mountfd, &stbuf) < 0) {
         close_preserve_errno(data->mountfd);
+        error_setg_errno(errp, errno,
+            "failed to stat file system at '%s'", ctx->fs_root);
         goto err;
     }
     switch (stbuf.f_type) {