diff options
author | Steven Whitehouse <swhiteho@redhat.com> | 2009-01-06 05:08:33 -0500 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2009-01-07 03:57:04 -0500 |
commit | e4fefbac6c5bcb0388d95e83801210e7d81a071b (patch) | |
tree | b9147be1dd2f388d21b6a8e898ee0b21a97ff39d /fs/gfs2 | |
parent | ede6f5aea054d3fb67c78857f7abdee602302043 (diff) |
GFS2: Set GFP_NOFS when allocating page on write
We need to ensure that we always set GFP_NOFS in this one
particular case when allocating pages for write.
Reported-by: Fabio M. Di Nitto <fdinitto@redhat.com>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2')
-rw-r--r-- | fs/gfs2/ops_address.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/gfs2/ops_address.c b/fs/gfs2/ops_address.c index 6e4ea36c6605..4ddab67867eb 100644 --- a/fs/gfs2/ops_address.c +++ b/fs/gfs2/ops_address.c | |||
@@ -675,6 +675,7 @@ static int gfs2_write_begin(struct file *file, struct address_space *mapping, | |||
675 | goto out_trans_fail; | 675 | goto out_trans_fail; |
676 | 676 | ||
677 | error = -ENOMEM; | 677 | error = -ENOMEM; |
678 | flags |= AOP_FLAG_NOFS; | ||
678 | page = grab_cache_page_write_begin(mapping, index, flags); | 679 | page = grab_cache_page_write_begin(mapping, index, flags); |
679 | *pagep = page; | 680 | *pagep = page; |
680 | if (unlikely(!page)) | 681 | if (unlikely(!page)) |