diff options
Diffstat (limited to 'fs/gfs2/sys.c')
-rw-r--r-- | fs/gfs2/sys.c | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/fs/gfs2/sys.c b/fs/gfs2/sys.c index 8056b7b7238e..e6d8d482422f 100644 --- a/fs/gfs2/sys.c +++ b/fs/gfs2/sys.c | |||
@@ -175,6 +175,7 @@ static ssize_t quota_sync_store(struct gfs2_sbd *sdp, const char *buf, | |||
175 | static ssize_t quota_refresh_user_store(struct gfs2_sbd *sdp, const char *buf, | 175 | static ssize_t quota_refresh_user_store(struct gfs2_sbd *sdp, const char *buf, |
176 | size_t len) | 176 | size_t len) |
177 | { | 177 | { |
178 | struct kqid qid; | ||
178 | int error; | 179 | int error; |
179 | u32 id; | 180 | u32 id; |
180 | 181 | ||
@@ -183,13 +184,18 @@ static ssize_t quota_refresh_user_store(struct gfs2_sbd *sdp, const char *buf, | |||
183 | 184 | ||
184 | id = simple_strtoul(buf, NULL, 0); | 185 | id = simple_strtoul(buf, NULL, 0); |
185 | 186 | ||
186 | error = gfs2_quota_refresh(sdp, 1, id); | 187 | qid = make_kqid(current_user_ns(), USRQUOTA, id); |
188 | if (!qid_valid(qid)) | ||
189 | return -EINVAL; | ||
190 | |||
191 | error = gfs2_quota_refresh(sdp, qid); | ||
187 | return error ? error : len; | 192 | return error ? error : len; |
188 | } | 193 | } |
189 | 194 | ||
190 | static ssize_t quota_refresh_group_store(struct gfs2_sbd *sdp, const char *buf, | 195 | static ssize_t quota_refresh_group_store(struct gfs2_sbd *sdp, const char *buf, |
191 | size_t len) | 196 | size_t len) |
192 | { | 197 | { |
198 | struct kqid qid; | ||
193 | int error; | 199 | int error; |
194 | u32 id; | 200 | u32 id; |
195 | 201 | ||
@@ -198,7 +204,11 @@ static ssize_t quota_refresh_group_store(struct gfs2_sbd *sdp, const char *buf, | |||
198 | 204 | ||
199 | id = simple_strtoul(buf, NULL, 0); | 205 | id = simple_strtoul(buf, NULL, 0); |
200 | 206 | ||
201 | error = gfs2_quota_refresh(sdp, 0, id); | 207 | qid = make_kqid(current_user_ns(), GRPQUOTA, id); |
208 | if (!qid_valid(qid)) | ||
209 | return -EINVAL; | ||
210 | |||
211 | error = gfs2_quota_refresh(sdp, qid); | ||
202 | return error ? error : len; | 212 | return error ? error : len; |
203 | } | 213 | } |
204 | 214 | ||