2006-01-14 00:41:49

by Miklos Szeredi

[permalink] [raw]
Subject: [PATCH 04/17] fuse: handle error INIT reply

Handle the case when the INIT request is answered with an error.

Signed-off-by: Miklos Szeredi <[email protected]>

Index: linux/fs/fuse/dev.c
===================================================================
--- linux.orig/fs/fuse/dev.c 2006-01-13 22:51:48.000000000 +0100
+++ linux/fs/fuse/dev.c 2006-01-13 22:51:53.000000000 +0100
@@ -153,7 +153,7 @@ static void process_init_reply(struct fu
int i;
struct fuse_init_out *arg = &req->misc.init_out;

- if (arg->major != FUSE_KERNEL_VERSION)
+ if (req->out.h.error || arg->major != FUSE_KERNEL_VERSION)
fc->conn_error = 1;
else {
fc->minor = arg->minor;

--