summaryrefslogtreecommitdiffstats
path: root/fs/gfs2/quota.c
diff options
context:
space:
mode:
authorAbhi Das <adas@redhat.com>2014-03-31 01:19:29 -0500
committerSteven Whitehouse <swhiteho@redhat.com>2014-03-31 10:43:05 +0100
commite9fb7c73a43e0551e689b7024f1581af5fa36a03 (patch)
tree44b60e09b1bcc0397daef50e9de30c9a03b29aac /fs/gfs2/quota.c
parent733dbc1b21dcfac83b292865a707d6a0d0fc16eb (diff)
downloadlinux-0-day-e9fb7c73a43e0551e689b7024f1581af5fa36a03.tar.gz
linux-0-day-e9fb7c73a43e0551e689b7024f1581af5fa36a03.tar.xz
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 <adas@redhat.com> Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/quota.c')
-rw-r--r--fs/gfs2/quota.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/gfs2/quota.c b/fs/gfs2/quota.c
index 27f9435ddd204..c4effff7cf559 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++;
}