Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 201823
b: refs/heads/master
c: 4244b52
h: refs/heads/master
i:
  201821: 1b9c694
  201819: f3929a4
  201815: 38158b5
  201807: 61db427
  201791: 62b34b7
v: v3
  • Loading branch information
David Rientjes authored and Steven Whitehouse committed Jul 29, 2010
1 parent b2147d2 commit 01a4d04
Show file tree
Hide file tree
Showing 2 changed files with 10 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: 461cb419f074aab16836a660efb8e855b6c1609c
refs/heads/master: 4244b52e18be959ced77b984f268e46a0a7654e3
11 changes: 9 additions & 2 deletions trunk/fs/gfs2/dir.c
Original file line number Diff line number Diff line change
Expand Up @@ -955,7 +955,12 @@ static int dir_split_leaf(struct inode *inode, const struct qstr *name)
/* Change the pointers.
Don't bother distinguishing stuffed from non-stuffed.
This code is complicated enough already. */
lp = kmalloc(half_len * sizeof(__be64), GFP_NOFS | __GFP_NOFAIL);
lp = kmalloc(half_len * sizeof(__be64), GFP_NOFS);
if (!lp) {
error = -ENOMEM;
goto fail_brelse;
}

/* Change the pointers */
for (x = 0; x < half_len; x++)
lp[x] = cpu_to_be64(bn);
Expand Down Expand Up @@ -1063,7 +1068,9 @@ static int dir_double_exhash(struct gfs2_inode *dip)

/* Allocate both the "from" and "to" buffers in one big chunk */

buf = kcalloc(3, sdp->sd_hash_bsize, GFP_NOFS | __GFP_NOFAIL);
buf = kcalloc(3, sdp->sd_hash_bsize, GFP_NOFS);
if (!buf)
return -ENOMEM;

for (block = dip->i_disksize >> sdp->sd_hash_bsize_shift; block--;) {
error = gfs2_dir_read_data(dip, (char *)buf,
Expand Down

0 comments on commit 01a4d04

Please sign in to comment.