mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-19 21:56:40 +07:00
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>
This commit is contained in:
parent
6050b9c74f
commit
05164e5b37
@ -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++;
|
||||
|
Loading…
Reference in New Issue
Block a user