diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2012-06-10 06:48:09 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-07-14 08:33:45 -0400 |
commit | e45198a6ac24bd2c4ad4a43b670c2f1a23dd2df3 (patch) | |
tree | d44f4217a8a556ac9ebb11cfc41c0e148fb1084c /fs/fuse | |
parent | 2675a4eb6a9f1240098721c8a84ede28abd9d7b3 (diff) |
make finish_no_open() return int
namely, 1 ;-) That's what we want to return from ->atomic_open()
instances after finish_no_open().
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/fuse')
-rw-r--r-- | fs/fuse/dir.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/fuse/dir.c b/fs/fuse/dir.c index 110db5425dc1..ccdab3ac4223 100644 --- a/fs/fuse/dir.c +++ b/fs/fuse/dir.c | |||
@@ -509,8 +509,7 @@ mknod: | |||
509 | if (err) | 509 | if (err) |
510 | goto out_dput; | 510 | goto out_dput; |
511 | no_open: | 511 | no_open: |
512 | finish_no_open(file, res); | 512 | return finish_no_open(file, res); |
513 | return 1; | ||
514 | } | 513 | } |
515 | 514 | ||
516 | /* | 515 | /* |