aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorAnton Protopopov <a.s.protopopov@gmail.com>2016-02-10 12:38:03 -0500
committerIlya Dryomov <idryomov@gmail.com>2016-03-25 18:51:52 +0100
commitce4355932a9412e0519e70fb1d03d88e39cd621a (patch)
tree1b3c80321d4728a5f36045d633e1b9aeea19ac81 /fs
parentceph: replace CURRENT_TIME by current_fs_time() (diff)
downloadlinux-dev-ce4355932a9412e0519e70fb1d03d88e39cd621a.tar.xz
linux-dev-ce4355932a9412e0519e70fb1d03d88e39cd621a.zip
ceph: fix a wrong comparison
A negative value rc compared to the positive value ENOENT in the finish_read() function. Signed-off-by: Anton Protopopov <a.s.protopopov@gmail.com> Signed-off-by: Yan, Zheng <zyan@redhat.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/ceph/addr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ceph/addr.c b/fs/ceph/addr.c
index a9f66b66ba35..c9f305089981 100644
--- a/fs/ceph/addr.c
+++ b/fs/ceph/addr.c
@@ -276,7 +276,7 @@ static void finish_read(struct ceph_osd_request *req, struct ceph_msg *msg)
for (i = 0; i < num_pages; i++) {
struct page *page = osd_data->pages[i];
- if (rc < 0 && rc != ENOENT)
+ if (rc < 0 && rc != -ENOENT)
goto unlock;
if (bytes < (int)PAGE_CACHE_SIZE) {
/* zero (remainder of) page */