Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 38589
b: refs/heads/master
c: 4f3df04
h: refs/heads/master
i:
  38587: 7ccd7a0
v: v3
  • Loading branch information
Steven Whitehouse committed Jan 18, 2006
1 parent 1569230 commit dd449db
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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: 64fb4eb7d4cc9de89f4d9b9061adde46ed3b5641
refs/heads/master: 4f3df04137d426a0ad1758ab744f5b6d658617bf
6 changes: 3 additions & 3 deletions trunk/fs/gfs2/log.c
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ struct buffer_head *gfs2_log_get_buf(struct gfs2_sbd *sdp)
struct gfs2_log_buf *lb;
struct buffer_head *bh;

lb = kzalloc(sizeof(struct gfs2_log_buf), GFP_KERNEL | __GFP_NOFAIL);
lb = kzalloc(sizeof(struct gfs2_log_buf), GFP_NOFS | __GFP_NOFAIL);
list_add(&lb->lb_list, &sdp->sd_log_flush_list);

bh = lb->lb_bh = sb_getblk(sdp->sd_vfs, blkno);
Expand Down Expand Up @@ -380,7 +380,7 @@ struct buffer_head *gfs2_log_fake_buf(struct gfs2_sbd *sdp,
struct gfs2_log_buf *lb;
struct buffer_head *bh;

lb = kzalloc(sizeof(struct gfs2_log_buf), GFP_KERNEL | __GFP_NOFAIL);
lb = kzalloc(sizeof(struct gfs2_log_buf), GFP_NOFS | __GFP_NOFAIL);
list_add(&lb->lb_list, &sdp->sd_log_flush_list);
lb->lb_real = real;

Expand Down Expand Up @@ -510,7 +510,7 @@ void gfs2_log_flush_i(struct gfs2_sbd *sdp, struct gfs2_glock *gl)

atomic_inc(&sdp->sd_log_flush_incore);

ai = kzalloc(sizeof(struct gfs2_ail), GFP_KERNEL | __GFP_NOFAIL);
ai = kzalloc(sizeof(struct gfs2_ail), GFP_NOFS | __GFP_NOFAIL);
INIT_LIST_HEAD(&ai->ai_ail1_list);
INIT_LIST_HEAD(&ai->ai_ail2_list);

Expand Down

0 comments on commit dd449db

Please sign in to comment.