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/ceph/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/ceph/dir.c')
-rw-r--r-- | fs/ceph/dir.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/fs/ceph/dir.c b/fs/ceph/dir.c index 80c848e05390..d42eee1c5de3 100644 --- a/fs/ceph/dir.c +++ b/fs/ceph/dir.c | |||
@@ -662,10 +662,8 @@ int ceph_atomic_open(struct inode *dir, struct dentry *dentry, | |||
662 | } | 662 | } |
663 | 663 | ||
664 | /* We don't deal with positive dentries here */ | 664 | /* We don't deal with positive dentries here */ |
665 | if (dentry->d_inode) { | 665 | if (dentry->d_inode) |
666 | finish_no_open(file, res); | 666 | return finish_no_open(file, res); |
667 | return 1; | ||
668 | } | ||
669 | 667 | ||
670 | *opened |= FILE_CREATED; | 668 | *opened |= FILE_CREATED; |
671 | err = ceph_lookup_open(dir, dentry, file, flags, mode, opened); | 669 | err = ceph_lookup_open(dir, dentry, file, flags, mode, opened); |