aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorMiklos Szeredi <miklos@szeredi.hu>2006-04-11 01:54:56 -0400
committerLinus Torvalds <torvalds@g5.osdl.org>2006-04-11 09:18:48 -0400
commita87046d822f2d982d25b24c4a644d34f22d4888a (patch)
tree582a3a2a89015bf09ad9a73df8d06cd7272b3b46 /fs
parentd713311464bcca73c990d1a1b5c9467eae87f5b4 (diff)
[PATCH] fuse: consolidate device errors
Return consistent error values for the case when the opened device file has no mount associated yet. Signed-off-by: Miklos Szeredi <miklos@szeredi.hu> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs')
-rw-r--r--fs/fuse/dev.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/fuse/dev.c b/fs/fuse/dev.c
index 63d2cf43b5e3..6b8843d4ad8c 100644
--- a/fs/fuse/dev.c
+++ b/fs/fuse/dev.c
@@ -739,7 +739,7 @@ static ssize_t fuse_dev_writev(struct file *file, const struct iovec *iov,
739 struct fuse_copy_state cs; 739 struct fuse_copy_state cs;
740 struct fuse_conn *fc = fuse_get_conn(file); 740 struct fuse_conn *fc = fuse_get_conn(file);
741 if (!fc) 741 if (!fc)
742 return -ENODEV; 742 return -EPERM;
743 743
744 fuse_copy_init(&cs, fc, 0, NULL, iov, nr_segs); 744 fuse_copy_init(&cs, fc, 0, NULL, iov, nr_segs);
745 if (nbytes < sizeof(struct fuse_out_header)) 745 if (nbytes < sizeof(struct fuse_out_header))
@@ -930,7 +930,7 @@ static int fuse_dev_fasync(int fd, struct file *file, int on)
930{ 930{
931 struct fuse_conn *fc = fuse_get_conn(file); 931 struct fuse_conn *fc = fuse_get_conn(file);
932 if (!fc) 932 if (!fc)
933 return -ENODEV; 933 return -EPERM;
934 934
935 /* No locking - fasync_helper does its own locking */ 935 /* No locking - fasync_helper does its own locking */
936 return fasync_helper(fd, file, on, &fc->fasync); 936 return fasync_helper(fd, file, on, &fc->fasync);