Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 95841
b: refs/heads/master
c: 4ba1c5b
h: refs/heads/master
i:
  95839: 8f7cb11
v: v3
  • Loading branch information
Sunil Mushran authored and Mark Fasheh committed May 1, 2008
1 parent 17a4d5a commit b7c33d6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: bc535809c06ada210d89f5a43b335c68ecbb8e1b
refs/heads/master: 4ba1c5bfd2e5a6c9528eb7777b66c297e70f61ca
4 changes: 2 additions & 2 deletions trunk/fs/ocfs2/localalloc.c
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ void ocfs2_shutdown_local_alloc(struct ocfs2_super *osb)
bh = osb->local_alloc_bh;
alloc = (struct ocfs2_dinode *) bh->b_data;

alloc_copy = kmalloc(bh->b_size, GFP_KERNEL);
alloc_copy = kmalloc(bh->b_size, GFP_NOFS);
if (!alloc_copy) {
status = -ENOMEM;
goto out_commit;
Expand Down Expand Up @@ -931,7 +931,7 @@ static int ocfs2_local_alloc_slide_window(struct ocfs2_super *osb,
* local alloc shutdown won't try to double free main bitmap
* bits. Make a copy so the sync function knows which bits to
* free. */
alloc_copy = kmalloc(osb->local_alloc_bh->b_size, GFP_KERNEL);
alloc_copy = kmalloc(osb->local_alloc_bh->b_size, GFP_NOFS);
if (!alloc_copy) {
status = -ENOMEM;
mlog_errno(status);
Expand Down

0 comments on commit b7c33d6

Please sign in to comment.