ceph: fix a wrong comparison
authorAnton Protopopov <a.s.protopopov@gmail.com>
Wed, 10 Feb 2016 17:38:03 +0000 (12:38 -0500)
committerIlya Dryomov <idryomov@gmail.com>
Fri, 25 Mar 2016 17:51:52 +0000 (18:51 +0100)
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>
fs/ceph/addr.c

index a9f66b6..c9f3050 100644 (file)
@@ -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 */