diff options
author | Mark Fasheh <mark.fasheh@oracle.com> | 2007-05-02 04:44:20 +0400 |
---|---|---|
committer | Mark Fasheh <mark.fasheh@oracle.com> | 2007-05-03 02:08:34 +0400 |
commit | 9315f130e11249457f5c3a7f74ee82a7065bd854 (patch) | |
tree | dd2a3671ec0696b52bc98c937d0465b7b8782cdb /fs | |
parent | 5fdf1e677127cb460c38733b9586b772d657be43 (diff) | |
download | linux-9315f130e11249457f5c3a7f74ee82a7065bd854.tar.xz |
ocfs2: Force use of GFP_NOFS in ocfs2_write()
We can otherwise recurse into the file system.
Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/ocfs2/aops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ocfs2/aops.c b/fs/ocfs2/aops.c index 36b3d2aaabbd..8e7cafb5fc6c 100644 --- a/fs/ocfs2/aops.c +++ b/fs/ocfs2/aops.c @@ -1087,7 +1087,7 @@ static ssize_t ocfs2_write(struct file *file, u32 phys, handle_t *handle, for(i = 0; i < numpages; i++) { index = start + i; - cpages[i] = grab_cache_page(mapping, index); + cpages[i] = find_or_create_page(mapping, index, GFP_NOFS); if (!cpages[i]) { ret = -ENOMEM; mlog_errno(ret); |