Skip to content

Commit

Permalink
ceph: mark user pages dirty on direct-io reads
Browse files Browse the repository at this point in the history
For read operation, we have to set the argument _write_ of get_user_pages
to 1 since we will write data to pages. Also, we need to SetPageDirty before
releasing these pages.

Signed-off-by: Henry C Chang <[email protected]>
Signed-off-by: Sage Weil <[email protected]>
  • Loading branch information
Henry C Chang authored and liewegas committed Dec 17, 2010
1 parent 92cf765 commit b6aa590
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 10 deletions.
8 changes: 4 additions & 4 deletions fs/ceph/file.c
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ static ssize_t ceph_sync_read(struct file *file, char __user *data,

if (file->f_flags & O_DIRECT) {
num_pages = calc_pages_for((unsigned long)data, len);
pages = ceph_get_direct_page_vector(data, num_pages);
pages = ceph_get_direct_page_vector(data, num_pages, true);
} else {
num_pages = calc_pages_for(off, len);
pages = ceph_alloc_page_vector(num_pages, GFP_NOFS);
Expand Down Expand Up @@ -413,7 +413,7 @@ static ssize_t ceph_sync_read(struct file *file, char __user *data,

done:
if (file->f_flags & O_DIRECT)
ceph_put_page_vector(pages, num_pages);
ceph_put_page_vector(pages, num_pages, true);
else
ceph_release_page_vector(pages, num_pages);
dout("sync_read result %d\n", ret);
Expand Down Expand Up @@ -522,7 +522,7 @@ static ssize_t ceph_sync_write(struct file *file, const char __user *data,
return -ENOMEM;

if (file->f_flags & O_DIRECT) {
pages = ceph_get_direct_page_vector(data, num_pages);
pages = ceph_get_direct_page_vector(data, num_pages, false);
if (IS_ERR(pages)) {
ret = PTR_ERR(pages);
goto out;
Expand Down Expand Up @@ -572,7 +572,7 @@ static ssize_t ceph_sync_write(struct file *file, const char __user *data,
}

if (file->f_flags & O_DIRECT)
ceph_put_page_vector(pages, num_pages);
ceph_put_page_vector(pages, num_pages, false);
else if (file->f_flags & O_SYNC)
ceph_release_page_vector(pages, num_pages);

Expand Down
6 changes: 4 additions & 2 deletions include/linux/ceph/libceph.h
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,10 @@ extern int ceph_open_session(struct ceph_client *client);
extern void ceph_release_page_vector(struct page **pages, int num_pages);

extern struct page **ceph_get_direct_page_vector(const char __user *data,
int num_pages);
extern void ceph_put_page_vector(struct page **pages, int num_pages);
int num_pages,
bool write_page);
extern void ceph_put_page_vector(struct page **pages, int num_pages,
bool dirty);
extern void ceph_release_page_vector(struct page **pages, int num_pages);
extern struct page **ceph_alloc_page_vector(int num_pages, gfp_t flags);
extern int ceph_copy_user_to_page_vector(struct page **pages,
Expand Down
11 changes: 7 additions & 4 deletions net/ceph/pagevec.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* build a vector of user pages
*/
struct page **ceph_get_direct_page_vector(const char __user *data,
int num_pages)
int num_pages, bool write_page)
{
struct page **pages;
int rc;
Expand All @@ -24,7 +24,7 @@ struct page **ceph_get_direct_page_vector(const char __user *data,

down_read(&current->mm->mmap_sem);
rc = get_user_pages(current, current->mm, (unsigned long)data,
num_pages, 0, 0, pages, NULL);
num_pages, write_page, 0, pages, NULL);
up_read(&current->mm->mmap_sem);
if (rc < 0)
goto fail;
Expand All @@ -36,12 +36,15 @@ struct page **ceph_get_direct_page_vector(const char __user *data,
}
EXPORT_SYMBOL(ceph_get_direct_page_vector);

void ceph_put_page_vector(struct page **pages, int num_pages)
void ceph_put_page_vector(struct page **pages, int num_pages, bool dirty)
{
int i;

for (i = 0; i < num_pages; i++)
for (i = 0; i < num_pages; i++) {
if (dirty)
set_page_dirty_lock(pages[i]);
put_page(pages[i]);
}
kfree(pages);
}
EXPORT_SYMBOL(ceph_put_page_vector);
Expand Down

0 comments on commit b6aa590

Please sign in to comment.