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 <[email protected]>
[added local: to commit title, Greg Kurz]
Signed-off-by: Greg Kurz <[email protected]>
*/
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) {