[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1383963966-10888-1-git-send-email-liwang@ubuntukylin.com>
Date: Sat, 9 Nov 2013 10:26:06 +0800
From: Li Wang <liwang@...ntukylin.com>
To: ceph-devel@...r.kernel.org
Cc: linux-cachefs@...hat.com, Sage Weil <sage@...tank.com>,
Milosz Tanski <milosz@...in.com>,
linux-fsdevel@...r.kernel.org, linux-kernel@...r.kernel.org,
Li Wang <liwang@...ntukylin.com>
Subject: [PATCH] Ceph: allocate non-zero page to fscache in readpage()
ceph_osdc_readpages() returns number of bytes read, currently,
the code only allocate full-zero page into fscache, this patch
fixes this.
Signed-off-by: Li Wang <liwang@...ntukylin.com>
---
fs/ceph/addr.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fs/ceph/addr.c b/fs/ceph/addr.c
index 6df8bd4..1e561c0 100644
--- a/fs/ceph/addr.c
+++ b/fs/ceph/addr.c
@@ -216,7 +216,7 @@ static int readpage_nounlock(struct file *filp, struct page *page)
}
SetPageUptodate(page);
- if (err == 0)
+ if (err >= 0)
ceph_readpage_to_fscache(inode, page);
out:
--
1.7.9.5
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists