summary refs log tree commit diff stats
path: root/hw/9pfs/9p-local.c
diff options
context:
space:
mode:
authorKeno Fischer <keno@juliacomputing.com>2018-06-07 12:17:21 +0200
committerGreg Kurz <groug@kaod.org>2018-06-07 12:17:21 +0200
commit2306271c381b75b66d76c4231bba3e7452a0d876 (patch)
treeaf77596cc2b4cbda1f4d737408c33230a0f50fde /hw/9pfs/9p-local.c
parentfde1f3e4a0644feb005894950427b622496769cb (diff)
downloadfocaccia-qemu-2306271c381b75b66d76c4231bba3e7452a0d876.tar.gz
focaccia-qemu-2306271c381b75b66d76c4231bba3e7452a0d876.zip
9p: local: Properly set errp in fstatfs error path
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>
Diffstat (limited to 'hw/9pfs/9p-local.c')
-rw-r--r--hw/9pfs/9p-local.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/9pfs/9p-local.c b/hw/9pfs/9p-local.c
index b37b1db453..7758c38509 100644
--- a/hw/9pfs/9p-local.c
+++ b/hw/9pfs/9p-local.c
@@ -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) {