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/nfs/dir.c | |
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/nfs/dir.c')
-rw-r--r-- | fs/nfs/dir.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/nfs/dir.c b/fs/nfs/dir.c index dafc86c1c35e..f167c7a1d67b 100644 --- a/fs/nfs/dir.c +++ b/fs/nfs/dir.c | |||
@@ -1505,8 +1505,7 @@ no_open: | |||
1505 | if (IS_ERR(res)) | 1505 | if (IS_ERR(res)) |
1506 | goto out; | 1506 | goto out; |
1507 | 1507 | ||
1508 | finish_no_open(file, res); | 1508 | return finish_no_open(file, res); |
1509 | return 1; | ||
1510 | } | 1509 | } |
1511 | 1510 | ||
1512 | static int nfs4_lookup_revalidate(struct dentry *dentry, struct nameidata *nd) | 1511 | static int nfs4_lookup_revalidate(struct dentry *dentry, struct nameidata *nd) |