blob: 2e9b9326bfc96bfe2efbbedf410aae992cd5aa58 [file] [log] [blame]
David Teiglandb3b94fa2006-01-16 16:50:04 +00001/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Bob Peterson0d0868b2007-12-11 18:51:25 -06003 * Copyright (C) 2004-2007 Red Hat, Inc. All rights reserved.
David Teiglandb3b94fa2006-01-16 16:50:04 +00004 *
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -04007 * of the GNU General Public License version 2.
David Teiglandb3b94fa2006-01-16 16:50:04 +00008 */
9
10/*
11 * Quota change tags are associated with each transaction that allocates or
12 * deallocates space. Those changes are accumulated locally to each node (in a
13 * per-node file) and then are periodically synced to the quota file. This
14 * avoids the bottleneck of constantly touching the quota file, but introduces
15 * fuzziness in the current usage value of IDs that are being used on different
16 * nodes in the cluster simultaneously. So, it is possible for a user on
17 * multiple nodes to overrun their quota, but that overrun is controlable.
18 * Since quota tags are part of transactions, there is no need to a quota check
19 * program to be run on node crashes or anything like that.
20 *
21 * There are couple of knobs that let the administrator manage the quota
22 * fuzziness. "quota_quantum" sets the maximum time a quota change can be
23 * sitting on one node before being synced to the quota file. (The default is
24 * 60 seconds.) Another knob, "quota_scale" controls how quickly the frequency
25 * of quota file syncs increases as the user moves closer to their limit. The
26 * more frequent the syncs, the more accurate the quota enforcement, but that
27 * means that there is more contention between the nodes for the quota file.
28 * The default value is one. This sets the maximum theoretical quota overrun
29 * (with infinite node with infinite bandwidth) to twice the user's limit. (In
30 * practice, the maximum overrun you see should be much less.) A "quota_scale"
31 * number greater than one makes quota syncs more frequent and reduces the
32 * maximum overrun. Numbers less than one (but greater than zero) make quota
33 * syncs less frequent.
34 *
35 * GFS quotas also use per-ID Lock Value Blocks (LVBs) to cache the contents of
36 * the quota file, so it is not being constantly read.
37 */
38
39#include <linux/sched.h>
40#include <linux/slab.h>
41#include <linux/spinlock.h>
42#include <linux/completion.h>
43#include <linux/buffer_head.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000044#include <linux/sort.h>
Steven Whitehouse18ec7d52006-02-08 11:50:51 +000045#include <linux/fs.h>
Steven Whitehouse2e565bb2006-10-02 11:38:25 -040046#include <linux/bio.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050047#include <linux/gfs2_ondisk.h>
Steven Whitehouse37b2c832008-11-17 14:25:37 +000048#include <linux/kthread.h>
49#include <linux/freezer.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000050
51#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050052#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000053#include "bmap.h"
54#include "glock.h"
55#include "glops.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000056#include "log.h"
57#include "meta_io.h"
58#include "quota.h"
59#include "rgrp.h"
60#include "super.h"
61#include "trans.h"
Steven Whitehouse18ec7d52006-02-08 11:50:51 +000062#include "inode.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050063#include "util.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000064
65#define QUOTA_USER 1
66#define QUOTA_GROUP 0
67
Steven Whitehousebb8d8a62007-06-01 14:11:58 +010068struct gfs2_quota_host {
69 u64 qu_limit;
70 u64 qu_warn;
71 s64 qu_value;
Abhijith Das2d9a4bb2007-08-15 11:25:05 -050072 u32 qu_ll_next;
Steven Whitehousebb8d8a62007-06-01 14:11:58 +010073};
74
75struct gfs2_quota_change_host {
76 u64 qc_change;
77 u32 qc_flags; /* GFS2_QCF_... */
78 u32 qc_id;
79};
80
Abhijith Das0a7ab792009-01-07 16:03:37 -060081static LIST_HEAD(qd_lru_list);
82static atomic_t qd_lru_count = ATOMIC_INIT(0);
Xu Gang1328df72009-04-14 14:54:14 +080083static DEFINE_SPINLOCK(qd_lru_lock);
Abhijith Das0a7ab792009-01-07 16:03:37 -060084
85int gfs2_shrink_qd_memory(int nr, gfp_t gfp_mask)
86{
87 struct gfs2_quota_data *qd;
88 struct gfs2_sbd *sdp;
89
90 if (nr == 0)
91 goto out;
92
93 if (!(gfp_mask & __GFP_FS))
94 return -1;
95
96 spin_lock(&qd_lru_lock);
97 while (nr && !list_empty(&qd_lru_list)) {
98 qd = list_entry(qd_lru_list.next,
99 struct gfs2_quota_data, qd_reclaim);
100 sdp = qd->qd_gl->gl_sbd;
101
102 /* Free from the filesystem-specific list */
103 list_del(&qd->qd_list);
104
Abhijith Das0a7ab792009-01-07 16:03:37 -0600105 gfs2_assert_warn(sdp, !qd->qd_change);
106 gfs2_assert_warn(sdp, !qd->qd_slot_count);
107 gfs2_assert_warn(sdp, !qd->qd_bh_count);
108
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000109 gfs2_glock_put(qd->qd_gl);
Abhijith Das0a7ab792009-01-07 16:03:37 -0600110 atomic_dec(&sdp->sd_quota_count);
111
112 /* Delete it from the common reclaim list */
113 list_del_init(&qd->qd_reclaim);
114 atomic_dec(&qd_lru_count);
115 spin_unlock(&qd_lru_lock);
116 kmem_cache_free(gfs2_quotad_cachep, qd);
117 spin_lock(&qd_lru_lock);
118 nr--;
119 }
120 spin_unlock(&qd_lru_lock);
121
122out:
123 return (atomic_read(&qd_lru_count) * sysctl_vfs_cache_pressure) / 100;
124}
125
Steven Whitehousecd915492006-09-04 12:49:07 -0400126static u64 qd2offset(struct gfs2_quota_data *qd)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000127{
Steven Whitehousecd915492006-09-04 12:49:07 -0400128 u64 offset;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000129
Steven Whitehousecd915492006-09-04 12:49:07 -0400130 offset = 2 * (u64)qd->qd_id + !test_bit(QDF_USER, &qd->qd_flags);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000131 offset *= sizeof(struct gfs2_quota);
132
133 return offset;
134}
135
Steven Whitehousecd915492006-09-04 12:49:07 -0400136static int qd_alloc(struct gfs2_sbd *sdp, int user, u32 id,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000137 struct gfs2_quota_data **qdp)
138{
139 struct gfs2_quota_data *qd;
140 int error;
141
Steven Whitehouse37b2c832008-11-17 14:25:37 +0000142 qd = kmem_cache_zalloc(gfs2_quotad_cachep, GFP_NOFS);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000143 if (!qd)
144 return -ENOMEM;
145
Abhijith Das0a7ab792009-01-07 16:03:37 -0600146 atomic_set(&qd->qd_count, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000147 qd->qd_id = id;
148 if (user)
149 set_bit(QDF_USER, &qd->qd_flags);
150 qd->qd_slot = -1;
Abhijith Das0a7ab792009-01-07 16:03:37 -0600151 INIT_LIST_HEAD(&qd->qd_reclaim);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000152
Steven Whitehousecd915492006-09-04 12:49:07 -0400153 error = gfs2_glock_get(sdp, 2 * (u64)id + !user,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000154 &gfs2_quota_glops, CREATE, &qd->qd_gl);
155 if (error)
156 goto fail;
157
David Teiglandb3b94fa2006-01-16 16:50:04 +0000158 *qdp = qd;
159
160 return 0;
161
Steven Whitehousea91ea692006-09-04 12:04:26 -0400162fail:
Steven Whitehouse37b2c832008-11-17 14:25:37 +0000163 kmem_cache_free(gfs2_quotad_cachep, qd);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000164 return error;
165}
166
Steven Whitehousecd915492006-09-04 12:49:07 -0400167static int qd_get(struct gfs2_sbd *sdp, int user, u32 id, int create,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000168 struct gfs2_quota_data **qdp)
169{
170 struct gfs2_quota_data *qd = NULL, *new_qd = NULL;
171 int error, found;
172
173 *qdp = NULL;
174
175 for (;;) {
176 found = 0;
Abhijith Das0a7ab792009-01-07 16:03:37 -0600177 spin_lock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000178 list_for_each_entry(qd, &sdp->sd_quota_list, qd_list) {
179 if (qd->qd_id == id &&
180 !test_bit(QDF_USER, &qd->qd_flags) == !user) {
Abhijith Das0a7ab792009-01-07 16:03:37 -0600181 if (!atomic_read(&qd->qd_count) &&
182 !list_empty(&qd->qd_reclaim)) {
183 /* Remove it from reclaim list */
184 list_del_init(&qd->qd_reclaim);
185 atomic_dec(&qd_lru_count);
186 }
187 atomic_inc(&qd->qd_count);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000188 found = 1;
189 break;
190 }
191 }
192
193 if (!found)
194 qd = NULL;
195
196 if (!qd && new_qd) {
197 qd = new_qd;
198 list_add(&qd->qd_list, &sdp->sd_quota_list);
199 atomic_inc(&sdp->sd_quota_count);
200 new_qd = NULL;
201 }
202
Abhijith Das0a7ab792009-01-07 16:03:37 -0600203 spin_unlock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000204
205 if (qd || !create) {
206 if (new_qd) {
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000207 gfs2_glock_put(new_qd->qd_gl);
Steven Whitehouse37b2c832008-11-17 14:25:37 +0000208 kmem_cache_free(gfs2_quotad_cachep, new_qd);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000209 }
210 *qdp = qd;
211 return 0;
212 }
213
214 error = qd_alloc(sdp, user, id, &new_qd);
215 if (error)
216 return error;
217 }
218}
219
220static void qd_hold(struct gfs2_quota_data *qd)
221{
222 struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd;
Abhijith Das0a7ab792009-01-07 16:03:37 -0600223 gfs2_assert(sdp, atomic_read(&qd->qd_count));
224 atomic_inc(&qd->qd_count);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000225}
226
227static void qd_put(struct gfs2_quota_data *qd)
228{
Abhijith Das0a7ab792009-01-07 16:03:37 -0600229 if (atomic_dec_and_lock(&qd->qd_count, &qd_lru_lock)) {
230 /* Add to the reclaim list */
231 list_add_tail(&qd->qd_reclaim, &qd_lru_list);
232 atomic_inc(&qd_lru_count);
233 spin_unlock(&qd_lru_lock);
234 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000235}
236
237static int slot_get(struct gfs2_quota_data *qd)
238{
239 struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd;
240 unsigned int c, o = 0, b;
241 unsigned char byte = 0;
242
Steven Whitehouse22077f52009-01-08 14:28:42 +0000243 spin_lock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000244
245 if (qd->qd_slot_count++) {
Steven Whitehouse22077f52009-01-08 14:28:42 +0000246 spin_unlock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000247 return 0;
248 }
249
250 for (c = 0; c < sdp->sd_quota_chunks; c++)
251 for (o = 0; o < PAGE_SIZE; o++) {
252 byte = sdp->sd_quota_bitmap[c][o];
253 if (byte != 0xFF)
254 goto found;
255 }
256
257 goto fail;
258
Steven Whitehousea91ea692006-09-04 12:04:26 -0400259found:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000260 for (b = 0; b < 8; b++)
261 if (!(byte & (1 << b)))
262 break;
263 qd->qd_slot = c * (8 * PAGE_SIZE) + o * 8 + b;
264
265 if (qd->qd_slot >= sdp->sd_quota_slots)
266 goto fail;
267
268 sdp->sd_quota_bitmap[c][o] |= 1 << b;
269
Steven Whitehouse22077f52009-01-08 14:28:42 +0000270 spin_unlock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000271
272 return 0;
273
Steven Whitehousea91ea692006-09-04 12:04:26 -0400274fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000275 qd->qd_slot_count--;
Steven Whitehouse22077f52009-01-08 14:28:42 +0000276 spin_unlock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000277 return -ENOSPC;
278}
279
280static void slot_hold(struct gfs2_quota_data *qd)
281{
282 struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd;
283
Steven Whitehouse22077f52009-01-08 14:28:42 +0000284 spin_lock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000285 gfs2_assert(sdp, qd->qd_slot_count);
286 qd->qd_slot_count++;
Steven Whitehouse22077f52009-01-08 14:28:42 +0000287 spin_unlock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000288}
289
290static void slot_put(struct gfs2_quota_data *qd)
291{
292 struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd;
293
Steven Whitehouse22077f52009-01-08 14:28:42 +0000294 spin_lock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000295 gfs2_assert(sdp, qd->qd_slot_count);
296 if (!--qd->qd_slot_count) {
297 gfs2_icbit_munge(sdp, sdp->sd_quota_bitmap, qd->qd_slot, 0);
298 qd->qd_slot = -1;
299 }
Steven Whitehouse22077f52009-01-08 14:28:42 +0000300 spin_unlock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000301}
302
303static int bh_get(struct gfs2_quota_data *qd)
304{
305 struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400306 struct gfs2_inode *ip = GFS2_I(sdp->sd_qc_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000307 unsigned int block, offset;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000308 struct buffer_head *bh;
309 int error;
Steven Whitehouse23591252006-10-13 17:25:45 -0400310 struct buffer_head bh_map = { .b_state = 0, .b_blocknr = 0 };
David Teiglandb3b94fa2006-01-16 16:50:04 +0000311
Steven Whitehousef55ab262006-02-21 12:51:39 +0000312 mutex_lock(&sdp->sd_quota_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000313
314 if (qd->qd_bh_count++) {
Steven Whitehousef55ab262006-02-21 12:51:39 +0000315 mutex_unlock(&sdp->sd_quota_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000316 return 0;
317 }
318
319 block = qd->qd_slot / sdp->sd_qc_per_block;
Bob Peterson0d0868b2007-12-11 18:51:25 -0600320 offset = qd->qd_slot % sdp->sd_qc_per_block;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000321
Steven Whitehouse23591252006-10-13 17:25:45 -0400322 bh_map.b_size = 1 << ip->i_inode.i_blkbits;
Bob Petersone9e1ef22007-12-10 14:13:27 -0600323 error = gfs2_block_map(&ip->i_inode, block, &bh_map, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000324 if (error)
325 goto fail;
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400326 error = gfs2_meta_read(ip->i_gl, bh_map.b_blocknr, DIO_WAIT, &bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000327 if (error)
328 goto fail;
329 error = -EIO;
330 if (gfs2_metatype_check(sdp, bh, GFS2_METATYPE_QC))
331 goto fail_brelse;
332
333 qd->qd_bh = bh;
334 qd->qd_bh_qc = (struct gfs2_quota_change *)
335 (bh->b_data + sizeof(struct gfs2_meta_header) +
336 offset * sizeof(struct gfs2_quota_change));
337
Josef Whiter2e95b662007-02-20 00:03:29 -0500338 mutex_unlock(&sdp->sd_quota_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000339
340 return 0;
341
Steven Whitehousea91ea692006-09-04 12:04:26 -0400342fail_brelse:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000343 brelse(bh);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400344fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000345 qd->qd_bh_count--;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000346 mutex_unlock(&sdp->sd_quota_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000347 return error;
348}
349
350static void bh_put(struct gfs2_quota_data *qd)
351{
352 struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd;
353
Steven Whitehousef55ab262006-02-21 12:51:39 +0000354 mutex_lock(&sdp->sd_quota_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000355 gfs2_assert(sdp, qd->qd_bh_count);
356 if (!--qd->qd_bh_count) {
357 brelse(qd->qd_bh);
358 qd->qd_bh = NULL;
359 qd->qd_bh_qc = NULL;
360 }
Steven Whitehousef55ab262006-02-21 12:51:39 +0000361 mutex_unlock(&sdp->sd_quota_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000362}
363
364static int qd_fish(struct gfs2_sbd *sdp, struct gfs2_quota_data **qdp)
365{
366 struct gfs2_quota_data *qd = NULL;
367 int error;
368 int found = 0;
369
370 *qdp = NULL;
371
372 if (sdp->sd_vfs->s_flags & MS_RDONLY)
373 return 0;
374
Abhijith Das0a7ab792009-01-07 16:03:37 -0600375 spin_lock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000376
377 list_for_each_entry(qd, &sdp->sd_quota_list, qd_list) {
378 if (test_bit(QDF_LOCKED, &qd->qd_flags) ||
379 !test_bit(QDF_CHANGE, &qd->qd_flags) ||
380 qd->qd_sync_gen >= sdp->sd_quota_sync_gen)
381 continue;
382
383 list_move_tail(&qd->qd_list, &sdp->sd_quota_list);
384
385 set_bit(QDF_LOCKED, &qd->qd_flags);
Abhijith Das0a7ab792009-01-07 16:03:37 -0600386 gfs2_assert_warn(sdp, atomic_read(&qd->qd_count));
387 atomic_inc(&qd->qd_count);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000388 qd->qd_change_sync = qd->qd_change;
389 gfs2_assert_warn(sdp, qd->qd_slot_count);
390 qd->qd_slot_count++;
391 found = 1;
392
393 break;
394 }
395
396 if (!found)
397 qd = NULL;
398
Abhijith Das0a7ab792009-01-07 16:03:37 -0600399 spin_unlock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000400
401 if (qd) {
402 gfs2_assert_warn(sdp, qd->qd_change_sync);
403 error = bh_get(qd);
404 if (error) {
405 clear_bit(QDF_LOCKED, &qd->qd_flags);
406 slot_put(qd);
407 qd_put(qd);
408 return error;
409 }
410 }
411
412 *qdp = qd;
413
414 return 0;
415}
416
417static int qd_trylock(struct gfs2_quota_data *qd)
418{
419 struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd;
420
421 if (sdp->sd_vfs->s_flags & MS_RDONLY)
422 return 0;
423
Abhijith Das0a7ab792009-01-07 16:03:37 -0600424 spin_lock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000425
426 if (test_bit(QDF_LOCKED, &qd->qd_flags) ||
427 !test_bit(QDF_CHANGE, &qd->qd_flags)) {
Abhijith Das0a7ab792009-01-07 16:03:37 -0600428 spin_unlock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000429 return 0;
430 }
431
432 list_move_tail(&qd->qd_list, &sdp->sd_quota_list);
433
434 set_bit(QDF_LOCKED, &qd->qd_flags);
Abhijith Das0a7ab792009-01-07 16:03:37 -0600435 gfs2_assert_warn(sdp, atomic_read(&qd->qd_count));
436 atomic_inc(&qd->qd_count);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000437 qd->qd_change_sync = qd->qd_change;
438 gfs2_assert_warn(sdp, qd->qd_slot_count);
439 qd->qd_slot_count++;
440
Abhijith Das0a7ab792009-01-07 16:03:37 -0600441 spin_unlock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000442
443 gfs2_assert_warn(sdp, qd->qd_change_sync);
444 if (bh_get(qd)) {
445 clear_bit(QDF_LOCKED, &qd->qd_flags);
446 slot_put(qd);
447 qd_put(qd);
448 return 0;
449 }
450
451 return 1;
452}
453
454static void qd_unlock(struct gfs2_quota_data *qd)
455{
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500456 gfs2_assert_warn(qd->qd_gl->gl_sbd,
457 test_bit(QDF_LOCKED, &qd->qd_flags));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000458 clear_bit(QDF_LOCKED, &qd->qd_flags);
459 bh_put(qd);
460 slot_put(qd);
461 qd_put(qd);
462}
463
Steven Whitehousecd915492006-09-04 12:49:07 -0400464static int qdsb_get(struct gfs2_sbd *sdp, int user, u32 id, int create,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000465 struct gfs2_quota_data **qdp)
466{
467 int error;
468
469 error = qd_get(sdp, user, id, create, qdp);
470 if (error)
471 return error;
472
473 error = slot_get(*qdp);
474 if (error)
475 goto fail;
476
477 error = bh_get(*qdp);
478 if (error)
479 goto fail_slot;
480
481 return 0;
482
Steven Whitehousea91ea692006-09-04 12:04:26 -0400483fail_slot:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000484 slot_put(*qdp);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400485fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000486 qd_put(*qdp);
487 return error;
488}
489
490static void qdsb_put(struct gfs2_quota_data *qd)
491{
492 bh_put(qd);
493 slot_put(qd);
494 qd_put(qd);
495}
496
Steven Whitehousecd915492006-09-04 12:49:07 -0400497int gfs2_quota_hold(struct gfs2_inode *ip, u32 uid, u32 gid)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000498{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400499 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Steven Whitehouse6dbd8222008-01-10 15:18:55 +0000500 struct gfs2_alloc *al = ip->i_alloc;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000501 struct gfs2_quota_data **qd = al->al_qd;
502 int error;
503
504 if (gfs2_assert_warn(sdp, !al->al_qd_num) ||
505 gfs2_assert_warn(sdp, !test_bit(GIF_QD_LOCKED, &ip->i_flags)))
506 return -EIO;
507
508 if (sdp->sd_args.ar_quota == GFS2_QUOTA_OFF)
509 return 0;
510
Steven Whitehouse2933f922006-11-01 13:23:29 -0500511 error = qdsb_get(sdp, QUOTA_USER, ip->i_inode.i_uid, CREATE, qd);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000512 if (error)
513 goto out;
514 al->al_qd_num++;
515 qd++;
516
Steven Whitehouse2933f922006-11-01 13:23:29 -0500517 error = qdsb_get(sdp, QUOTA_GROUP, ip->i_inode.i_gid, CREATE, qd);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000518 if (error)
519 goto out;
520 al->al_qd_num++;
521 qd++;
522
Steven Whitehouse2933f922006-11-01 13:23:29 -0500523 if (uid != NO_QUOTA_CHANGE && uid != ip->i_inode.i_uid) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000524 error = qdsb_get(sdp, QUOTA_USER, uid, CREATE, qd);
525 if (error)
526 goto out;
527 al->al_qd_num++;
528 qd++;
529 }
530
Steven Whitehouse2933f922006-11-01 13:23:29 -0500531 if (gid != NO_QUOTA_CHANGE && gid != ip->i_inode.i_gid) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000532 error = qdsb_get(sdp, QUOTA_GROUP, gid, CREATE, qd);
533 if (error)
534 goto out;
535 al->al_qd_num++;
536 qd++;
537 }
538
Steven Whitehousea91ea692006-09-04 12:04:26 -0400539out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000540 if (error)
541 gfs2_quota_unhold(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000542 return error;
543}
544
545void gfs2_quota_unhold(struct gfs2_inode *ip)
546{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400547 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Steven Whitehouse6dbd8222008-01-10 15:18:55 +0000548 struct gfs2_alloc *al = ip->i_alloc;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000549 unsigned int x;
550
551 gfs2_assert_warn(sdp, !test_bit(GIF_QD_LOCKED, &ip->i_flags));
552
553 for (x = 0; x < al->al_qd_num; x++) {
554 qdsb_put(al->al_qd[x]);
555 al->al_qd[x] = NULL;
556 }
557 al->al_qd_num = 0;
558}
559
560static int sort_qd(const void *a, const void *b)
561{
Steven Whitehouse48fac172006-09-05 15:17:12 -0400562 const struct gfs2_quota_data *qd_a = *(const struct gfs2_quota_data **)a;
563 const struct gfs2_quota_data *qd_b = *(const struct gfs2_quota_data **)b;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000564
565 if (!test_bit(QDF_USER, &qd_a->qd_flags) !=
566 !test_bit(QDF_USER, &qd_b->qd_flags)) {
567 if (test_bit(QDF_USER, &qd_a->qd_flags))
Steven Whitehouse48fac172006-09-05 15:17:12 -0400568 return -1;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000569 else
Steven Whitehouse48fac172006-09-05 15:17:12 -0400570 return 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000571 }
Steven Whitehouse48fac172006-09-05 15:17:12 -0400572 if (qd_a->qd_id < qd_b->qd_id)
573 return -1;
574 if (qd_a->qd_id > qd_b->qd_id)
575 return 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000576
Steven Whitehouse48fac172006-09-05 15:17:12 -0400577 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000578}
579
Steven Whitehousecd915492006-09-04 12:49:07 -0400580static void do_qc(struct gfs2_quota_data *qd, s64 change)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000581{
582 struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400583 struct gfs2_inode *ip = GFS2_I(sdp->sd_qc_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000584 struct gfs2_quota_change *qc = qd->qd_bh_qc;
Steven Whitehousecd915492006-09-04 12:49:07 -0400585 s64 x;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000586
Steven Whitehousef55ab262006-02-21 12:51:39 +0000587 mutex_lock(&sdp->sd_quota_mutex);
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000588 gfs2_trans_add_bh(ip->i_gl, qd->qd_bh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000589
590 if (!test_bit(QDF_CHANGE, &qd->qd_flags)) {
591 qc->qc_change = 0;
592 qc->qc_flags = 0;
593 if (test_bit(QDF_USER, &qd->qd_flags))
594 qc->qc_flags = cpu_to_be32(GFS2_QCF_USER);
595 qc->qc_id = cpu_to_be32(qd->qd_id);
596 }
597
Al Virob44b84d2006-10-14 10:46:30 -0400598 x = be64_to_cpu(qc->qc_change) + change;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000599 qc->qc_change = cpu_to_be64(x);
600
Steven Whitehouse22077f52009-01-08 14:28:42 +0000601 spin_lock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000602 qd->qd_change = x;
Steven Whitehouse22077f52009-01-08 14:28:42 +0000603 spin_unlock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000604
605 if (!x) {
606 gfs2_assert_warn(sdp, test_bit(QDF_CHANGE, &qd->qd_flags));
607 clear_bit(QDF_CHANGE, &qd->qd_flags);
608 qc->qc_flags = 0;
609 qc->qc_id = 0;
610 slot_put(qd);
611 qd_put(qd);
612 } else if (!test_and_set_bit(QDF_CHANGE, &qd->qd_flags)) {
613 qd_hold(qd);
614 slot_hold(qd);
615 }
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400616
Steven Whitehousef55ab262006-02-21 12:51:39 +0000617 mutex_unlock(&sdp->sd_quota_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000618}
619
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100620static void gfs2_quota_in(struct gfs2_quota_host *qu, const void *buf)
621{
622 const struct gfs2_quota *str = buf;
623
624 qu->qu_limit = be64_to_cpu(str->qu_limit);
625 qu->qu_warn = be64_to_cpu(str->qu_warn);
626 qu->qu_value = be64_to_cpu(str->qu_value);
Abhijith Das2d9a4bb2007-08-15 11:25:05 -0500627 qu->qu_ll_next = be32_to_cpu(str->qu_ll_next);
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100628}
629
630static void gfs2_quota_out(const struct gfs2_quota_host *qu, void *buf)
631{
632 struct gfs2_quota *str = buf;
633
634 str->qu_limit = cpu_to_be64(qu->qu_limit);
635 str->qu_warn = cpu_to_be64(qu->qu_warn);
636 str->qu_value = cpu_to_be64(qu->qu_value);
Abhijith Das2d9a4bb2007-08-15 11:25:05 -0500637 str->qu_ll_next = cpu_to_be32(qu->qu_ll_next);
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100638 memset(&str->qu_reserved, 0, sizeof(str->qu_reserved));
639}
640
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000641/**
642 * gfs2_adjust_quota
643 *
644 * This function was mostly borrowed from gfs2_block_truncate_page which was
645 * in turn mostly borrowed from ext3
646 */
647static int gfs2_adjust_quota(struct gfs2_inode *ip, loff_t loc,
Steven Whitehousecd915492006-09-04 12:49:07 -0400648 s64 change, struct gfs2_quota_data *qd)
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000649{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400650 struct inode *inode = &ip->i_inode;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000651 struct address_space *mapping = inode->i_mapping;
652 unsigned long index = loc >> PAGE_CACHE_SHIFT;
Abhijith Das1990e912007-05-31 17:52:02 -0500653 unsigned offset = loc & (PAGE_CACHE_SIZE - 1);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000654 unsigned blocksize, iblock, pos;
655 struct buffer_head *bh;
656 struct page *page;
657 void *kaddr;
Abhijith Das1990e912007-05-31 17:52:02 -0500658 char *ptr;
659 struct gfs2_quota_host qp;
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -0400660 s64 value;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000661 int err = -EIO;
662
Abhijith Das20b95bf2008-03-06 17:43:52 -0600663 if (gfs2_is_stuffed(ip))
Abhijith Das0fd53552007-08-14 15:34:58 -0500664 gfs2_unstuff_dinode(ip, NULL);
Abhijith Das20b95bf2008-03-06 17:43:52 -0600665
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000666 page = grab_cache_page(mapping, index);
667 if (!page)
668 return -ENOMEM;
669
670 blocksize = inode->i_sb->s_blocksize;
671 iblock = index << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits);
672
673 if (!page_has_buffers(page))
674 create_empty_buffers(page, blocksize, 0);
675
676 bh = page_buffers(page);
677 pos = blocksize;
678 while (offset >= pos) {
679 bh = bh->b_this_page;
680 iblock++;
681 pos += blocksize;
682 }
683
684 if (!buffer_mapped(bh)) {
Bob Petersone9e1ef22007-12-10 14:13:27 -0600685 gfs2_block_map(inode, iblock, bh, 1);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000686 if (!buffer_mapped(bh))
687 goto unlock;
688 }
689
690 if (PageUptodate(page))
691 set_buffer_uptodate(bh);
692
693 if (!buffer_uptodate(bh)) {
Steven Whitehouse2e565bb2006-10-02 11:38:25 -0400694 ll_rw_block(READ_META, 1, &bh);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000695 wait_on_buffer(bh);
696 if (!buffer_uptodate(bh))
697 goto unlock;
698 }
699
700 gfs2_trans_add_bh(ip->i_gl, bh, 0);
701
702 kaddr = kmap_atomic(page, KM_USER0);
Steven Whitehouse48fac172006-09-05 15:17:12 -0400703 ptr = kaddr + offset;
Abhijith Das1990e912007-05-31 17:52:02 -0500704 gfs2_quota_in(&qp, ptr);
705 qp.qu_value += change;
706 value = qp.qu_value;
707 gfs2_quota_out(&qp, ptr);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000708 flush_dcache_page(page);
709 kunmap_atomic(kaddr, KM_USER0);
710 err = 0;
711 qd->qd_qb.qb_magic = cpu_to_be32(GFS2_MAGIC);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000712 qd->qd_qb.qb_value = cpu_to_be64(value);
Abhijith Das2a87ab02007-05-16 17:02:19 -0500713 ((struct gfs2_quota_lvb*)(qd->qd_gl->gl_lvb))->qb_magic = cpu_to_be32(GFS2_MAGIC);
714 ((struct gfs2_quota_lvb*)(qd->qd_gl->gl_lvb))->qb_value = cpu_to_be64(value);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000715unlock:
716 unlock_page(page);
717 page_cache_release(page);
718 return err;
719}
720
David Teiglandb3b94fa2006-01-16 16:50:04 +0000721static int do_sync(unsigned int num_qd, struct gfs2_quota_data **qda)
722{
723 struct gfs2_sbd *sdp = (*qda)->qd_gl->gl_sbd;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400724 struct gfs2_inode *ip = GFS2_I(sdp->sd_quota_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000725 unsigned int data_blocks, ind_blocks;
726 struct gfs2_holder *ghs, i_gh;
727 unsigned int qx, x;
728 struct gfs2_quota_data *qd;
Steven Whitehousef42faf42006-01-30 18:34:10 +0000729 loff_t offset;
Abhijith Das20b95bf2008-03-06 17:43:52 -0600730 unsigned int nalloc = 0, blocks;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000731 struct gfs2_alloc *al = NULL;
732 int error;
733
734 gfs2_write_calc_reserv(ip, sizeof(struct gfs2_quota),
735 &data_blocks, &ind_blocks);
736
Josef Bacik16c5f062008-04-09 09:33:41 -0400737 ghs = kcalloc(num_qd, sizeof(struct gfs2_holder), GFP_NOFS);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000738 if (!ghs)
739 return -ENOMEM;
740
741 sort(qda, num_qd, sizeof(struct gfs2_quota_data *), sort_qd, NULL);
742 for (qx = 0; qx < num_qd; qx++) {
743 error = gfs2_glock_nq_init(qda[qx]->qd_gl,
744 LM_ST_EXCLUSIVE,
745 GL_NOCACHE, &ghs[qx]);
746 if (error)
747 goto out;
748 }
749
750 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &i_gh);
751 if (error)
752 goto out;
753
754 for (x = 0; x < num_qd; x++) {
755 int alloc_required;
756
757 offset = qd2offset(qda[x]);
758 error = gfs2_write_alloc_required(ip, offset,
759 sizeof(struct gfs2_quota),
760 &alloc_required);
761 if (error)
762 goto out_gunlock;
763 if (alloc_required)
764 nalloc++;
765 }
766
Abhijith Das20b95bf2008-03-06 17:43:52 -0600767 al = gfs2_alloc_get(ip);
768 if (!al) {
769 error = -ENOMEM;
770 goto out_gunlock;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000771 }
Abhijith Das20b95bf2008-03-06 17:43:52 -0600772 /*
773 * 1 blk for unstuffing inode if stuffed. We add this extra
774 * block to the reservation unconditionally. If the inode
775 * doesn't need unstuffing, the block will be released to the
776 * rgrp since it won't be allocated during the transaction
777 */
778 al->al_requested = 1;
779 /* +1 in the end for block requested above for unstuffing */
780 blocks = num_qd * data_blocks + RES_DINODE + num_qd + 1;
781
782 if (nalloc)
783 al->al_requested += nalloc * (data_blocks + ind_blocks);
784 error = gfs2_inplace_reserve(ip);
785 if (error)
786 goto out_alloc;
787
788 if (nalloc)
789 blocks += al->al_rgd->rd_length + nalloc * ind_blocks + RES_STATFS;
790
791 error = gfs2_trans_begin(sdp, blocks, 0);
792 if (error)
793 goto out_ipres;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000794
795 for (x = 0; x < num_qd; x++) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000796 qd = qda[x];
797 offset = qd2offset(qd);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000798 error = gfs2_adjust_quota(ip, offset, qd->qd_change_sync,
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500799 (struct gfs2_quota_data *)
Abhijith Das2a87ab02007-05-16 17:02:19 -0500800 qd);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000801 if (error)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000802 goto out_end_trans;
803
David Teiglandb3b94fa2006-01-16 16:50:04 +0000804 do_qc(qd, -qd->qd_change_sync);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000805 }
806
807 error = 0;
808
Steven Whitehousea91ea692006-09-04 12:04:26 -0400809out_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000810 gfs2_trans_end(sdp);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400811out_ipres:
Abhijith Das20b95bf2008-03-06 17:43:52 -0600812 gfs2_inplace_release(ip);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400813out_alloc:
Abhijith Das20b95bf2008-03-06 17:43:52 -0600814 gfs2_alloc_put(ip);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400815out_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000816 gfs2_glock_dq_uninit(&i_gh);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400817out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000818 while (qx--)
819 gfs2_glock_dq_uninit(&ghs[qx]);
820 kfree(ghs);
Steven Whitehouseb09e5932006-04-07 11:17:32 -0400821 gfs2_log_flush(ip->i_gl->gl_sbd, ip->i_gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000822 return error;
823}
824
825static int do_glock(struct gfs2_quota_data *qd, int force_refresh,
826 struct gfs2_holder *q_gh)
827{
828 struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400829 struct gfs2_inode *ip = GFS2_I(sdp->sd_quota_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000830 struct gfs2_holder i_gh;
Al Virob5bc9e82006-10-13 23:31:55 -0400831 struct gfs2_quota_host q;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000832 char buf[sizeof(struct gfs2_quota)];
833 int error;
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -0400834 struct gfs2_quota_lvb *qlvb;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000835
Steven Whitehousea91ea692006-09-04 12:04:26 -0400836restart:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000837 error = gfs2_glock_nq_init(qd->qd_gl, LM_ST_SHARED, 0, q_gh);
838 if (error)
839 return error;
840
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -0400841 qd->qd_qb = *(struct gfs2_quota_lvb *)qd->qd_gl->gl_lvb;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000842
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -0400843 if (force_refresh || qd->qd_qb.qb_magic != cpu_to_be32(GFS2_MAGIC)) {
Steven Whitehousef42faf42006-01-30 18:34:10 +0000844 loff_t pos;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000845 gfs2_glock_dq_uninit(q_gh);
846 error = gfs2_glock_nq_init(qd->qd_gl,
Abhijith Das0a7ab792009-01-07 16:03:37 -0600847 LM_ST_EXCLUSIVE, GL_NOCACHE,
848 q_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000849 if (error)
850 return error;
851
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -0400852 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, 0, &i_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000853 if (error)
854 goto fail;
855
856 memset(buf, 0, sizeof(struct gfs2_quota));
Steven Whitehousef42faf42006-01-30 18:34:10 +0000857 pos = qd2offset(qd);
Steven Whitehouse51ff87b2007-10-15 14:42:35 +0100858 error = gfs2_internal_read(ip, NULL, buf, &pos,
859 sizeof(struct gfs2_quota));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000860 if (error < 0)
861 goto fail_gunlock;
862
863 gfs2_glock_dq_uninit(&i_gh);
864
865 gfs2_quota_in(&q, buf);
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -0400866 qlvb = (struct gfs2_quota_lvb *)qd->qd_gl->gl_lvb;
867 qlvb->qb_magic = cpu_to_be32(GFS2_MAGIC);
868 qlvb->__pad = 0;
869 qlvb->qb_limit = cpu_to_be64(q.qu_limit);
870 qlvb->qb_warn = cpu_to_be64(q.qu_warn);
871 qlvb->qb_value = cpu_to_be64(q.qu_value);
872 qd->qd_qb = *qlvb;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000873
874 if (gfs2_glock_is_blocking(qd->qd_gl)) {
875 gfs2_glock_dq_uninit(q_gh);
876 force_refresh = 0;
877 goto restart;
878 }
879 }
880
881 return 0;
882
Steven Whitehousea91ea692006-09-04 12:04:26 -0400883fail_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000884 gfs2_glock_dq_uninit(&i_gh);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400885fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000886 gfs2_glock_dq_uninit(q_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000887 return error;
888}
889
Steven Whitehousecd915492006-09-04 12:49:07 -0400890int gfs2_quota_lock(struct gfs2_inode *ip, u32 uid, u32 gid)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000891{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400892 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Steven Whitehouse6dbd8222008-01-10 15:18:55 +0000893 struct gfs2_alloc *al = ip->i_alloc;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000894 unsigned int x;
895 int error = 0;
896
897 gfs2_quota_hold(ip, uid, gid);
898
899 if (capable(CAP_SYS_RESOURCE) ||
900 sdp->sd_args.ar_quota != GFS2_QUOTA_ON)
901 return 0;
902
903 sort(al->al_qd, al->al_qd_num, sizeof(struct gfs2_quota_data *),
904 sort_qd, NULL);
905
906 for (x = 0; x < al->al_qd_num; x++) {
907 error = do_glock(al->al_qd[x], NO_FORCE, &al->al_qd_ghs[x]);
908 if (error)
909 break;
910 }
911
912 if (!error)
913 set_bit(GIF_QD_LOCKED, &ip->i_flags);
914 else {
915 while (x--)
916 gfs2_glock_dq_uninit(&al->al_qd_ghs[x]);
917 gfs2_quota_unhold(ip);
918 }
919
920 return error;
921}
922
923static int need_sync(struct gfs2_quota_data *qd)
924{
925 struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd;
926 struct gfs2_tune *gt = &sdp->sd_tune;
Steven Whitehousecd915492006-09-04 12:49:07 -0400927 s64 value;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000928 unsigned int num, den;
929 int do_sync = 1;
930
931 if (!qd->qd_qb.qb_limit)
932 return 0;
933
Steven Whitehouse22077f52009-01-08 14:28:42 +0000934 spin_lock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000935 value = qd->qd_change;
Steven Whitehouse22077f52009-01-08 14:28:42 +0000936 spin_unlock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000937
938 spin_lock(&gt->gt_spin);
939 num = gt->gt_quota_scale_num;
940 den = gt->gt_quota_scale_den;
941 spin_unlock(&gt->gt_spin);
942
943 if (value < 0)
944 do_sync = 0;
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -0400945 else if ((s64)be64_to_cpu(qd->qd_qb.qb_value) >=
946 (s64)be64_to_cpu(qd->qd_qb.qb_limit))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000947 do_sync = 0;
948 else {
949 value *= gfs2_jindex_size(sdp) * num;
David Howells4abaca172008-07-11 14:39:56 +0100950 value = div_s64(value, den);
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -0400951 value += (s64)be64_to_cpu(qd->qd_qb.qb_value);
Steven Whitehousecd915492006-09-04 12:49:07 -0400952 if (value < (s64)be64_to_cpu(qd->qd_qb.qb_limit))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000953 do_sync = 0;
954 }
955
956 return do_sync;
957}
958
959void gfs2_quota_unlock(struct gfs2_inode *ip)
960{
Steven Whitehouse6dbd8222008-01-10 15:18:55 +0000961 struct gfs2_alloc *al = ip->i_alloc;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000962 struct gfs2_quota_data *qda[4];
963 unsigned int count = 0;
964 unsigned int x;
965
966 if (!test_and_clear_bit(GIF_QD_LOCKED, &ip->i_flags))
967 goto out;
968
969 for (x = 0; x < al->al_qd_num; x++) {
970 struct gfs2_quota_data *qd;
971 int sync;
972
973 qd = al->al_qd[x];
974 sync = need_sync(qd);
975
976 gfs2_glock_dq_uninit(&al->al_qd_ghs[x]);
977
978 if (sync && qd_trylock(qd))
979 qda[count++] = qd;
980 }
981
982 if (count) {
983 do_sync(count, qda);
984 for (x = 0; x < count; x++)
985 qd_unlock(qda[x]);
986 }
987
Steven Whitehousea91ea692006-09-04 12:04:26 -0400988out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000989 gfs2_quota_unhold(ip);
990}
991
992#define MAX_LINE 256
993
994static int print_message(struct gfs2_quota_data *qd, char *type)
995{
996 struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000997
Steven Whitehouse02630a12006-07-03 11:20:06 -0400998 printk(KERN_INFO "GFS2: fsid=%s: quota %s for %s %u\r\n",
999 sdp->sd_fsname, type,
1000 (test_bit(QDF_USER, &qd->qd_flags)) ? "user" : "group",
1001 qd->qd_id);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001002
1003 return 0;
1004}
1005
Steven Whitehousecd915492006-09-04 12:49:07 -04001006int gfs2_quota_check(struct gfs2_inode *ip, u32 uid, u32 gid)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001007{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001008 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Steven Whitehouse6dbd8222008-01-10 15:18:55 +00001009 struct gfs2_alloc *al = ip->i_alloc;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001010 struct gfs2_quota_data *qd;
Steven Whitehousecd915492006-09-04 12:49:07 -04001011 s64 value;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001012 unsigned int x;
1013 int error = 0;
1014
1015 if (!test_bit(GIF_QD_LOCKED, &ip->i_flags))
1016 return 0;
1017
1018 if (sdp->sd_args.ar_quota != GFS2_QUOTA_ON)
1019 return 0;
1020
1021 for (x = 0; x < al->al_qd_num; x++) {
1022 qd = al->al_qd[x];
1023
1024 if (!((qd->qd_id == uid && test_bit(QDF_USER, &qd->qd_flags)) ||
1025 (qd->qd_id == gid && !test_bit(QDF_USER, &qd->qd_flags))))
1026 continue;
1027
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -04001028 value = (s64)be64_to_cpu(qd->qd_qb.qb_value);
Steven Whitehouse22077f52009-01-08 14:28:42 +00001029 spin_lock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001030 value += qd->qd_change;
Steven Whitehouse22077f52009-01-08 14:28:42 +00001031 spin_unlock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001032
Steven Whitehousecd915492006-09-04 12:49:07 -04001033 if (be64_to_cpu(qd->qd_qb.qb_limit) && (s64)be64_to_cpu(qd->qd_qb.qb_limit) < value) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001034 print_message(qd, "exceeded");
1035 error = -EDQUOT;
1036 break;
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -04001037 } else if (be64_to_cpu(qd->qd_qb.qb_warn) &&
Steven Whitehousecd915492006-09-04 12:49:07 -04001038 (s64)be64_to_cpu(qd->qd_qb.qb_warn) < value &&
David Teiglandb3b94fa2006-01-16 16:50:04 +00001039 time_after_eq(jiffies, qd->qd_last_warn +
Steven Whitehouse568f4c92006-02-27 12:00:42 -05001040 gfs2_tune_get(sdp,
1041 gt_quota_warn_period) * HZ)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001042 error = print_message(qd, "warning");
1043 qd->qd_last_warn = jiffies;
1044 }
1045 }
1046
1047 return error;
1048}
1049
Steven Whitehousecd915492006-09-04 12:49:07 -04001050void gfs2_quota_change(struct gfs2_inode *ip, s64 change,
1051 u32 uid, u32 gid)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001052{
Steven Whitehouse6dbd8222008-01-10 15:18:55 +00001053 struct gfs2_alloc *al = ip->i_alloc;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001054 struct gfs2_quota_data *qd;
1055 unsigned int x;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001056
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001057 if (gfs2_assert_warn(GFS2_SB(&ip->i_inode), change))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001058 return;
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001059 if (ip->i_diskflags & GFS2_DIF_SYSTEM)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001060 return;
1061
1062 for (x = 0; x < al->al_qd_num; x++) {
1063 qd = al->al_qd[x];
1064
1065 if ((qd->qd_id == uid && test_bit(QDF_USER, &qd->qd_flags)) ||
1066 (qd->qd_id == gid && !test_bit(QDF_USER, &qd->qd_flags))) {
1067 do_qc(qd, change);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001068 }
1069 }
1070}
1071
1072int gfs2_quota_sync(struct gfs2_sbd *sdp)
1073{
1074 struct gfs2_quota_data **qda;
1075 unsigned int max_qd = gfs2_tune_get(sdp, gt_quota_simul_sync);
1076 unsigned int num_qd;
1077 unsigned int x;
1078 int error = 0;
1079
1080 sdp->sd_quota_sync_gen++;
1081
1082 qda = kcalloc(max_qd, sizeof(struct gfs2_quota_data *), GFP_KERNEL);
1083 if (!qda)
1084 return -ENOMEM;
1085
1086 do {
1087 num_qd = 0;
1088
1089 for (;;) {
1090 error = qd_fish(sdp, qda + num_qd);
1091 if (error || !qda[num_qd])
1092 break;
1093 if (++num_qd == max_qd)
1094 break;
1095 }
1096
1097 if (num_qd) {
1098 if (!error)
1099 error = do_sync(num_qd, qda);
1100 if (!error)
1101 for (x = 0; x < num_qd; x++)
1102 qda[x]->qd_sync_gen =
1103 sdp->sd_quota_sync_gen;
1104
1105 for (x = 0; x < num_qd; x++)
1106 qd_unlock(qda[x]);
1107 }
1108 } while (!error && num_qd == max_qd);
1109
1110 kfree(qda);
1111
1112 return error;
1113}
1114
Steven Whitehousecd915492006-09-04 12:49:07 -04001115int gfs2_quota_refresh(struct gfs2_sbd *sdp, int user, u32 id)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001116{
1117 struct gfs2_quota_data *qd;
1118 struct gfs2_holder q_gh;
1119 int error;
1120
1121 error = qd_get(sdp, user, id, CREATE, &qd);
1122 if (error)
1123 return error;
1124
1125 error = do_glock(qd, FORCE, &q_gh);
1126 if (!error)
1127 gfs2_glock_dq_uninit(&q_gh);
1128
1129 qd_put(qd);
1130
1131 return error;
1132}
1133
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001134static void gfs2_quota_change_in(struct gfs2_quota_change_host *qc, const void *buf)
1135{
1136 const struct gfs2_quota_change *str = buf;
1137
1138 qc->qc_change = be64_to_cpu(str->qc_change);
1139 qc->qc_flags = be32_to_cpu(str->qc_flags);
1140 qc->qc_id = be32_to_cpu(str->qc_id);
1141}
1142
David Teiglandb3b94fa2006-01-16 16:50:04 +00001143int gfs2_quota_init(struct gfs2_sbd *sdp)
1144{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001145 struct gfs2_inode *ip = GFS2_I(sdp->sd_qc_inode);
Steven Whitehousec9e98882008-11-04 09:47:33 +00001146 unsigned int blocks = ip->i_disksize >> sdp->sd_sb.sb_bsize_shift;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001147 unsigned int x, slot = 0;
1148 unsigned int found = 0;
Steven Whitehousecd915492006-09-04 12:49:07 -04001149 u64 dblock;
1150 u32 extlen = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001151 int error;
1152
Steven Whitehousec9e98882008-11-04 09:47:33 +00001153 if (!ip->i_disksize || ip->i_disksize > (64 << 20) ||
1154 ip->i_disksize & (sdp->sd_sb.sb_bsize - 1)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001155 gfs2_consist_inode(ip);
Steven Whitehouse907b9bc2006-09-25 09:26:04 -04001156 return -EIO;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001157 }
1158 sdp->sd_quota_slots = blocks * sdp->sd_qc_per_block;
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001159 sdp->sd_quota_chunks = DIV_ROUND_UP(sdp->sd_quota_slots, 8 * PAGE_SIZE);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001160
1161 error = -ENOMEM;
1162
1163 sdp->sd_quota_bitmap = kcalloc(sdp->sd_quota_chunks,
Josef Bacik16c5f062008-04-09 09:33:41 -04001164 sizeof(unsigned char *), GFP_NOFS);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001165 if (!sdp->sd_quota_bitmap)
1166 return error;
1167
1168 for (x = 0; x < sdp->sd_quota_chunks; x++) {
Josef Bacik16c5f062008-04-09 09:33:41 -04001169 sdp->sd_quota_bitmap[x] = kzalloc(PAGE_SIZE, GFP_NOFS);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001170 if (!sdp->sd_quota_bitmap[x])
1171 goto fail;
1172 }
1173
1174 for (x = 0; x < blocks; x++) {
1175 struct buffer_head *bh;
1176 unsigned int y;
1177
1178 if (!extlen) {
1179 int new = 0;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001180 error = gfs2_extent_map(&ip->i_inode, x, &new, &dblock, &extlen);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001181 if (error)
1182 goto fail;
1183 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001184 error = -EIO;
Steven Whitehouse7276b3b2006-09-21 17:05:23 -04001185 bh = gfs2_meta_ra(ip->i_gl, dblock, extlen);
1186 if (!bh)
1187 goto fail;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001188 if (gfs2_metatype_check(sdp, bh, GFS2_METATYPE_QC)) {
1189 brelse(bh);
1190 goto fail;
1191 }
1192
Steven Whitehouse7276b3b2006-09-21 17:05:23 -04001193 for (y = 0; y < sdp->sd_qc_per_block && slot < sdp->sd_quota_slots;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001194 y++, slot++) {
Al Virob62f9632006-10-13 23:46:46 -04001195 struct gfs2_quota_change_host qc;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001196 struct gfs2_quota_data *qd;
1197
1198 gfs2_quota_change_in(&qc, bh->b_data +
1199 sizeof(struct gfs2_meta_header) +
1200 y * sizeof(struct gfs2_quota_change));
1201 if (!qc.qc_change)
1202 continue;
1203
1204 error = qd_alloc(sdp, (qc.qc_flags & GFS2_QCF_USER),
1205 qc.qc_id, &qd);
1206 if (error) {
1207 brelse(bh);
1208 goto fail;
1209 }
1210
1211 set_bit(QDF_CHANGE, &qd->qd_flags);
1212 qd->qd_change = qc.qc_change;
1213 qd->qd_slot = slot;
1214 qd->qd_slot_count = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001215
Abhijith Das0a7ab792009-01-07 16:03:37 -06001216 spin_lock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001217 gfs2_icbit_munge(sdp, sdp->sd_quota_bitmap, slot, 1);
1218 list_add(&qd->qd_list, &sdp->sd_quota_list);
1219 atomic_inc(&sdp->sd_quota_count);
Abhijith Das0a7ab792009-01-07 16:03:37 -06001220 spin_unlock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001221
1222 found++;
1223 }
1224
1225 brelse(bh);
1226 dblock++;
1227 extlen--;
1228 }
1229
1230 if (found)
1231 fs_info(sdp, "found %u quota changes\n", found);
1232
1233 return 0;
1234
Steven Whitehousea91ea692006-09-04 12:04:26 -04001235fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001236 gfs2_quota_cleanup(sdp);
1237 return error;
1238}
1239
David Teiglandb3b94fa2006-01-16 16:50:04 +00001240void gfs2_quota_cleanup(struct gfs2_sbd *sdp)
1241{
1242 struct list_head *head = &sdp->sd_quota_list;
1243 struct gfs2_quota_data *qd;
1244 unsigned int x;
1245
Abhijith Das0a7ab792009-01-07 16:03:37 -06001246 spin_lock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001247 while (!list_empty(head)) {
1248 qd = list_entry(head->prev, struct gfs2_quota_data, qd_list);
1249
Abhijith Das0a7ab792009-01-07 16:03:37 -06001250 if (atomic_read(&qd->qd_count) > 1 ||
1251 (atomic_read(&qd->qd_count) &&
1252 !test_bit(QDF_CHANGE, &qd->qd_flags))) {
Abhijith Das0a7ab792009-01-07 16:03:37 -06001253 list_move(&qd->qd_list, head);
1254 spin_unlock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001255 schedule();
Abhijith Das0a7ab792009-01-07 16:03:37 -06001256 spin_lock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001257 continue;
1258 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001259
Abhijith Das0a7ab792009-01-07 16:03:37 -06001260 list_del(&qd->qd_list);
1261 /* Also remove if this qd exists in the reclaim list */
1262 if (!list_empty(&qd->qd_reclaim)) {
1263 list_del_init(&qd->qd_reclaim);
1264 atomic_dec(&qd_lru_count);
1265 }
1266 atomic_dec(&sdp->sd_quota_count);
1267 spin_unlock(&qd_lru_lock);
1268
1269 if (!atomic_read(&qd->qd_count)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001270 gfs2_assert_warn(sdp, !qd->qd_change);
1271 gfs2_assert_warn(sdp, !qd->qd_slot_count);
1272 } else
1273 gfs2_assert_warn(sdp, qd->qd_slot_count == 1);
1274 gfs2_assert_warn(sdp, !qd->qd_bh_count);
1275
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001276 gfs2_glock_put(qd->qd_gl);
Steven Whitehouse37b2c832008-11-17 14:25:37 +00001277 kmem_cache_free(gfs2_quotad_cachep, qd);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001278
Abhijith Das0a7ab792009-01-07 16:03:37 -06001279 spin_lock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001280 }
Abhijith Das0a7ab792009-01-07 16:03:37 -06001281 spin_unlock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001282
1283 gfs2_assert_warn(sdp, !atomic_read(&sdp->sd_quota_count));
1284
1285 if (sdp->sd_quota_bitmap) {
1286 for (x = 0; x < sdp->sd_quota_chunks; x++)
1287 kfree(sdp->sd_quota_bitmap[x]);
1288 kfree(sdp->sd_quota_bitmap);
1289 }
1290}
1291
Steven Whitehouse37b2c832008-11-17 14:25:37 +00001292static void quotad_error(struct gfs2_sbd *sdp, const char *msg, int error)
1293{
1294 if (error == 0 || error == -EROFS)
1295 return;
1296 if (!test_bit(SDF_SHUTDOWN, &sdp->sd_flags))
1297 fs_err(sdp, "gfs2_quotad: %s error %d\n", msg, error);
1298}
1299
1300static void quotad_check_timeo(struct gfs2_sbd *sdp, const char *msg,
1301 int (*fxn)(struct gfs2_sbd *sdp),
1302 unsigned long t, unsigned long *timeo,
1303 unsigned int *new_timeo)
1304{
1305 if (t >= *timeo) {
1306 int error = fxn(sdp);
1307 quotad_error(sdp, msg, error);
1308 *timeo = gfs2_tune_get_i(&sdp->sd_tune, new_timeo) * HZ;
1309 } else {
1310 *timeo -= t;
1311 }
1312}
1313
Steven Whitehouse813e0c42008-11-18 13:38:48 +00001314static void quotad_check_trunc_list(struct gfs2_sbd *sdp)
1315{
1316 struct gfs2_inode *ip;
1317
1318 while(1) {
1319 ip = NULL;
1320 spin_lock(&sdp->sd_trunc_lock);
1321 if (!list_empty(&sdp->sd_trunc_list)) {
1322 ip = list_entry(sdp->sd_trunc_list.next,
1323 struct gfs2_inode, i_trunc_list);
1324 list_del_init(&ip->i_trunc_list);
1325 }
1326 spin_unlock(&sdp->sd_trunc_lock);
1327 if (ip == NULL)
1328 return;
1329 gfs2_glock_finish_truncate(ip);
1330 }
1331}
1332
Steven Whitehouse37b2c832008-11-17 14:25:37 +00001333/**
1334 * gfs2_quotad - Write cached quota changes into the quota file
1335 * @sdp: Pointer to GFS2 superblock
1336 *
1337 */
1338
1339int gfs2_quotad(void *data)
1340{
1341 struct gfs2_sbd *sdp = data;
1342 struct gfs2_tune *tune = &sdp->sd_tune;
1343 unsigned long statfs_timeo = 0;
1344 unsigned long quotad_timeo = 0;
1345 unsigned long t = 0;
1346 DEFINE_WAIT(wait);
Steven Whitehouse813e0c42008-11-18 13:38:48 +00001347 int empty;
Steven Whitehouse37b2c832008-11-17 14:25:37 +00001348
1349 while (!kthread_should_stop()) {
1350
1351 /* Update the master statfs file */
1352 quotad_check_timeo(sdp, "statfs", gfs2_statfs_sync, t,
1353 &statfs_timeo, &tune->gt_statfs_quantum);
1354
1355 /* Update quota file */
1356 quotad_check_timeo(sdp, "sync", gfs2_quota_sync, t,
1357 &quotad_timeo, &tune->gt_quota_quantum);
1358
Steven Whitehouse813e0c42008-11-18 13:38:48 +00001359 /* Check for & recover partially truncated inodes */
1360 quotad_check_trunc_list(sdp);
1361
Steven Whitehouse37b2c832008-11-17 14:25:37 +00001362 if (freezing(current))
1363 refrigerator();
1364 t = min(quotad_timeo, statfs_timeo);
1365
Steven Whitehouse7fa5d202009-03-31 15:49:08 +01001366 prepare_to_wait(&sdp->sd_quota_wait, &wait, TASK_INTERRUPTIBLE);
Steven Whitehouse813e0c42008-11-18 13:38:48 +00001367 spin_lock(&sdp->sd_trunc_lock);
1368 empty = list_empty(&sdp->sd_trunc_list);
1369 spin_unlock(&sdp->sd_trunc_lock);
1370 if (empty)
1371 t -= schedule_timeout(t);
1372 else
1373 t = 0;
Steven Whitehouse37b2c832008-11-17 14:25:37 +00001374 finish_wait(&sdp->sd_quota_wait, &wait);
1375 }
1376
1377 return 0;
1378}
1379