Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 335444
b: refs/heads/master
c: cd0ed19
h: refs/heads/master
v: v3
  • Loading branch information
Andrew Price authored and Steven Whitehouse committed Nov 7, 2012
1 parent 69235e1 commit 659fb1c
Show file tree
Hide file tree
Showing 2 changed files with 3 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: aaaf68c5629108f6078ab458d34a661143ea6857
refs/heads/master: cd0ed19fb614cb1315c0a510ec6c163d8324fd82
5 changes: 2 additions & 3 deletions trunk/fs/gfs2/rgrp.c
Original file line number Diff line number Diff line change
Expand Up @@ -553,15 +553,14 @@ void gfs2_free_clones(struct gfs2_rgrpd *rgd)
*/
int gfs2_rs_alloc(struct gfs2_inode *ip)
{
int error = 0;
struct gfs2_blkreserv *res;

if (ip->i_res)
return 0;

res = kmem_cache_zalloc(gfs2_rsrv_cachep, GFP_NOFS);
if (!res)
error = -ENOMEM;
return -ENOMEM;

RB_CLEAR_NODE(&res->rs_node);

Expand All @@ -571,7 +570,7 @@ int gfs2_rs_alloc(struct gfs2_inode *ip)
else
ip->i_res = res;
up_write(&ip->i_rw_mutex);
return error;
return 0;
}

static void dump_rs(struct seq_file *seq, const struct gfs2_blkreserv *rs)
Expand Down

0 comments on commit 659fb1c

Please sign in to comment.