diff options
author | Steven Whitehouse <swhiteho@redhat.com> | 2009-08-17 11:06:43 +0100 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2009-08-17 11:06:43 +0100 |
commit | 05164e5b37a8329bfbcf72f526302cb2dd885fbd (patch) | |
tree | 069af9ca385f0c7d9cb273d0c3b70c6c3b2043f3 /fs/gfs2 | |
parent | 6050b9c74f24513191fc6b5e4b3583e38d146bf5 (diff) | |
download | linux-3.10-05164e5b37a8329bfbcf72f526302cb2dd885fbd.tar.gz linux-3.10-05164e5b37a8329bfbcf72f526302cb2dd885fbd.tar.bz2 linux-3.10-05164e5b37a8329bfbcf72f526302cb2dd885fbd.zip |
GFS2: Replace assertion with proper error handling
One fewer assert, one more place we can recover gracefully
if there is an error.
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2')
-rw-r--r-- | fs/gfs2/rgrp.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/gfs2/rgrp.c b/fs/gfs2/rgrp.c index 3d0193af19c..c681c54fbd6 100644 --- a/fs/gfs2/rgrp.c +++ b/fs/gfs2/rgrp.c @@ -1561,7 +1561,9 @@ int gfs2_alloc_di(struct gfs2_inode *dip, u64 *bn, u64 *generation) rgd->rd_last_alloc = blk; block = rgd->rd_data0 + blk; - gfs2_assert_withdraw(sdp, rgd->rd_free); + if (rgd->rd_free == 0) + goto rgrp_error; + rgd->rd_free--; rgd->rd_dinodes++; *generation = rgd->rd_igeneration++; |