From: Abhi Das Date: Mon, 31 Mar 2014 06:19:29 +0000 (-0500) Subject: GFS2: Fix return value in slot_get() X-Git-Tag: v3.15-rc1~97^2~2 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=e9fb7c73a43e0551e689b7024f1581af5fa36a03;p=karo-tx-linux.git GFS2: Fix return value in slot_get() ENOSPC was being returned in slot_get inspite of successful execution of the function. This patch fixes this return code. Signed-off-by: Abhi Das Signed-off-by: Steven Whitehouse --- diff --git a/fs/gfs2/quota.c b/fs/gfs2/quota.c index 27f9435ddd20..c4effff7cf55 100644 --- a/fs/gfs2/quota.c +++ b/fs/gfs2/quota.c @@ -332,6 +332,7 @@ static int slot_get(struct gfs2_quota_data *qd) if (bit < sdp->sd_quota_slots) { set_bit(bit, sdp->sd_quota_bitmap); qd->qd_slot = bit; + error = 0; out: qd->qd_slot_count++; }