| Submitter | Johannes Weiner |
|---|---|
| Date | Sept. 30, 2011, 7:17 a.m. |
| Message ID | <1317367044-475-6-git-send-email-jweiner@redhat.com> |
| Download | mbox | patch |
| Permalink | /patch/117042/ |
| State | Not Applicable |
| Headers | show |
Comments
On Fri, Sep 30, 2011 at 09:17:24AM +0200, Johannes Weiner wrote: > Tell the page allocator that pages allocated for a buffered write are > expected to become dirty soon. > > Signed-off-by: Johannes Weiner <jweiner@redhat.com> > Reviewed-by: Rik van Riel <riel@redhat.com> Acked-by: Mel Gorman <mgorman@suse.de>
Patch
diff --git a/fs/btrfs/file.c b/fs/btrfs/file.c index e7872e4..ea1b892 100644 --- a/fs/btrfs/file.c +++ b/fs/btrfs/file.c @@ -1084,7 +1084,7 @@ static noinline int prepare_pages(struct btrfs_root *root, struct file *file, again: for (i = 0; i < num_pages; i++) { pages[i] = find_or_create_page(inode->i_mapping, index + i, - GFP_NOFS); + GFP_NOFS | __GFP_WRITE); if (!pages[i]) { faili = i - 1; err = -ENOMEM;