mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 08:20:52 +07:00
[GFS2] Plug an unlikely leak
Signed-off-by: Bob Peterson <rpeterso@redhat.com> Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
This commit is contained in:
parent
048786f1e6
commit
3ad62e87cd
@ -404,8 +404,10 @@ static int revoke_lo_scan_elements(struct gfs2_jdesc *jd, unsigned int start,
|
||||
blkno = be64_to_cpu(*(__be64 *)(bh->b_data + offset));
|
||||
|
||||
error = gfs2_revoke_add(sdp, blkno, start);
|
||||
if (error < 0)
|
||||
if (error < 0) {
|
||||
brelse(bh);
|
||||
return error;
|
||||
}
|
||||
else if (error)
|
||||
sdp->sd_found_revokes++;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user