]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - fs/xfs/xfs_mount.c
xfs: create a shared header file for format-related information
[mirror_ubuntu-artful-kernel.git] / fs / xfs / xfs_mount.c
CommitLineData
1da177e4 1/*
7b718769
NS
2 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
1da177e4 4 *
7b718769
NS
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
1da177e4
LT
7 * published by the Free Software Foundation.
8 *
7b718769
NS
9 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
1da177e4 13 *
7b718769
NS
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
1da177e4 17 */
1da177e4 18#include "xfs.h"
a844f451 19#include "xfs_fs.h"
6ca1c906 20#include "xfs_format.h"
70a9883c 21#include "xfs_shared.h"
a844f451 22#include "xfs_bit.h"
1da177e4 23#include "xfs_log.h"
a844f451 24#include "xfs_inum.h"
1da177e4 25#include "xfs_trans.h"
211e4d43 26#include "xfs_trans_priv.h"
1da177e4
LT
27#include "xfs_sb.h"
28#include "xfs_ag.h"
1da177e4 29#include "xfs_mount.h"
2b9ab5ab
DC
30#include "xfs_da_btree.h"
31#include "xfs_dir2_format.h"
32#include "xfs_dir2.h"
1da177e4 33#include "xfs_bmap_btree.h"
a844f451 34#include "xfs_alloc_btree.h"
1da177e4 35#include "xfs_ialloc_btree.h"
1da177e4
LT
36#include "xfs_dinode.h"
37#include "xfs_inode.h"
a844f451
NS
38#include "xfs_btree.h"
39#include "xfs_ialloc.h"
1da177e4
LT
40#include "xfs_alloc.h"
41#include "xfs_rtalloc.h"
42#include "xfs_bmap.h"
43#include "xfs_error.h"
1da177e4
LT
44#include "xfs_quota.h"
45#include "xfs_fsops.h"
0b1b213f 46#include "xfs_trace.h"
6d8b79cf 47#include "xfs_icache.h"
04a1e6c5
DC
48#include "xfs_cksum.h"
49#include "xfs_buf_item.h"
0b1b213f 50
1da177e4 51
8d280b98 52#ifdef HAVE_PERCPU_SB
20f4ebf2 53STATIC void xfs_icsb_balance_counter(xfs_mount_t *, xfs_sb_field_t,
45af6c6d
CH
54 int);
55STATIC void xfs_icsb_balance_counter_locked(xfs_mount_t *, xfs_sb_field_t,
56 int);
36fbe6e6 57STATIC void xfs_icsb_disable_counter(xfs_mount_t *, xfs_sb_field_t);
8d280b98
DC
58#else
59
45af6c6d
CH
60#define xfs_icsb_balance_counter(mp, a, b) do { } while (0)
61#define xfs_icsb_balance_counter_locked(mp, a, b) do { } while (0)
8d280b98
DC
62#endif
63
27174203
CH
64static DEFINE_MUTEX(xfs_uuid_table_mutex);
65static int xfs_uuid_table_size;
66static uuid_t *xfs_uuid_table;
67
68/*
69 * See if the UUID is unique among mounted XFS filesystems.
70 * Mount fails if UUID is nil or a FS with the same UUID is already mounted.
71 */
72STATIC int
73xfs_uuid_mount(
74 struct xfs_mount *mp)
75{
76 uuid_t *uuid = &mp->m_sb.sb_uuid;
77 int hole, i;
78
79 if (mp->m_flags & XFS_MOUNT_NOUUID)
80 return 0;
81
82 if (uuid_is_nil(uuid)) {
0b932ccc 83 xfs_warn(mp, "Filesystem has nil UUID - can't mount");
27174203
CH
84 return XFS_ERROR(EINVAL);
85 }
86
87 mutex_lock(&xfs_uuid_table_mutex);
88 for (i = 0, hole = -1; i < xfs_uuid_table_size; i++) {
89 if (uuid_is_nil(&xfs_uuid_table[i])) {
90 hole = i;
91 continue;
92 }
93 if (uuid_equal(uuid, &xfs_uuid_table[i]))
94 goto out_duplicate;
95 }
96
97 if (hole < 0) {
98 xfs_uuid_table = kmem_realloc(xfs_uuid_table,
99 (xfs_uuid_table_size + 1) * sizeof(*xfs_uuid_table),
100 xfs_uuid_table_size * sizeof(*xfs_uuid_table),
101 KM_SLEEP);
102 hole = xfs_uuid_table_size++;
103 }
104 xfs_uuid_table[hole] = *uuid;
105 mutex_unlock(&xfs_uuid_table_mutex);
106
107 return 0;
108
109 out_duplicate:
110 mutex_unlock(&xfs_uuid_table_mutex);
021000e5 111 xfs_warn(mp, "Filesystem has duplicate UUID %pU - can't mount", uuid);
27174203
CH
112 return XFS_ERROR(EINVAL);
113}
114
115STATIC void
116xfs_uuid_unmount(
117 struct xfs_mount *mp)
118{
119 uuid_t *uuid = &mp->m_sb.sb_uuid;
120 int i;
121
122 if (mp->m_flags & XFS_MOUNT_NOUUID)
123 return;
124
125 mutex_lock(&xfs_uuid_table_mutex);
126 for (i = 0; i < xfs_uuid_table_size; i++) {
127 if (uuid_is_nil(&xfs_uuid_table[i]))
128 continue;
129 if (!uuid_equal(uuid, &xfs_uuid_table[i]))
130 continue;
131 memset(&xfs_uuid_table[i], 0, sizeof(uuid_t));
132 break;
133 }
134 ASSERT(i < xfs_uuid_table_size);
135 mutex_unlock(&xfs_uuid_table_mutex);
136}
137
138
e176579e
DC
139STATIC void
140__xfs_free_perag(
141 struct rcu_head *head)
142{
143 struct xfs_perag *pag = container_of(head, struct xfs_perag, rcu_head);
144
145 ASSERT(atomic_read(&pag->pag_ref) == 0);
146 kmem_free(pag);
147}
148
1da177e4 149/*
e176579e 150 * Free up the per-ag resources associated with the mount structure.
1da177e4 151 */
c962fb79 152STATIC void
ff4f038c 153xfs_free_perag(
745f6919 154 xfs_mount_t *mp)
1da177e4 155{
1c1c6ebc
DC
156 xfs_agnumber_t agno;
157 struct xfs_perag *pag;
158
159 for (agno = 0; agno < mp->m_sb.sb_agcount; agno++) {
160 spin_lock(&mp->m_perag_lock);
161 pag = radix_tree_delete(&mp->m_perag_tree, agno);
162 spin_unlock(&mp->m_perag_lock);
e176579e 163 ASSERT(pag);
f83282a8 164 ASSERT(atomic_read(&pag->pag_ref) == 0);
e176579e 165 call_rcu(&pag->rcu_head, __xfs_free_perag);
1da177e4 166 }
1da177e4
LT
167}
168
4cc929ee
NS
169/*
170 * Check size of device based on the (data/realtime) block count.
171 * Note: this check is used by the growfs code as well as mount.
172 */
173int
174xfs_sb_validate_fsb_count(
175 xfs_sb_t *sbp,
176 __uint64_t nblocks)
177{
178 ASSERT(PAGE_SHIFT >= sbp->sb_blocklog);
179 ASSERT(sbp->sb_blocklog >= BBSHIFT);
180
181#if XFS_BIG_BLKNOS /* Limited by ULONG_MAX of page cache index */
182 if (nblocks >> (PAGE_CACHE_SHIFT - sbp->sb_blocklog) > ULONG_MAX)
657a4cff 183 return EFBIG;
4cc929ee
NS
184#else /* Limited by UINT_MAX of sectors */
185 if (nblocks << (sbp->sb_blocklog - BBSHIFT) > UINT_MAX)
657a4cff 186 return EFBIG;
4cc929ee
NS
187#endif
188 return 0;
189}
1da177e4 190
1c1c6ebc 191int
c11e2c36 192xfs_initialize_perag(
c11e2c36 193 xfs_mount_t *mp,
1c1c6ebc
DC
194 xfs_agnumber_t agcount,
195 xfs_agnumber_t *maxagi)
1da177e4 196{
2d2194f6 197 xfs_agnumber_t index;
8b26c582 198 xfs_agnumber_t first_initialised = 0;
1da177e4
LT
199 xfs_perag_t *pag;
200 xfs_agino_t agino;
201 xfs_ino_t ino;
202 xfs_sb_t *sbp = &mp->m_sb;
8b26c582 203 int error = -ENOMEM;
1da177e4 204
1c1c6ebc
DC
205 /*
206 * Walk the current per-ag tree so we don't try to initialise AGs
207 * that already exist (growfs case). Allocate and insert all the
208 * AGs we don't find ready for initialisation.
209 */
210 for (index = 0; index < agcount; index++) {
211 pag = xfs_perag_get(mp, index);
212 if (pag) {
213 xfs_perag_put(pag);
214 continue;
215 }
8b26c582
DC
216 if (!first_initialised)
217 first_initialised = index;
fb3b504a 218
1c1c6ebc
DC
219 pag = kmem_zalloc(sizeof(*pag), KM_MAYFAIL);
220 if (!pag)
8b26c582 221 goto out_unwind;
fb3b504a
CH
222 pag->pag_agno = index;
223 pag->pag_mount = mp;
1a427ab0 224 spin_lock_init(&pag->pag_ici_lock);
69b491c2 225 mutex_init(&pag->pag_ici_reclaim_lock);
fb3b504a 226 INIT_RADIX_TREE(&pag->pag_ici_root, GFP_ATOMIC);
74f75a0c
DC
227 spin_lock_init(&pag->pag_buf_lock);
228 pag->pag_buf_tree = RB_ROOT;
fb3b504a 229
1c1c6ebc 230 if (radix_tree_preload(GFP_NOFS))
8b26c582 231 goto out_unwind;
fb3b504a 232
1c1c6ebc
DC
233 spin_lock(&mp->m_perag_lock);
234 if (radix_tree_insert(&mp->m_perag_tree, index, pag)) {
235 BUG();
236 spin_unlock(&mp->m_perag_lock);
8b26c582
DC
237 radix_tree_preload_end();
238 error = -EEXIST;
239 goto out_unwind;
1c1c6ebc
DC
240 }
241 spin_unlock(&mp->m_perag_lock);
242 radix_tree_preload_end();
243 }
244
fb3b504a
CH
245 /*
246 * If we mount with the inode64 option, or no inode overflows
247 * the legacy 32-bit address space clear the inode32 option.
1da177e4 248 */
fb3b504a
CH
249 agino = XFS_OFFBNO_TO_AGINO(mp, sbp->sb_agblocks - 1, 0);
250 ino = XFS_AGINO_TO_INO(mp, agcount - 1, agino);
251
252 if ((mp->m_flags & XFS_MOUNT_SMALL_INUMS) && ino > XFS_MAXINUMBER_32)
1da177e4 253 mp->m_flags |= XFS_MOUNT_32BITINODES;
fb3b504a 254 else
1da177e4 255 mp->m_flags &= ~XFS_MOUNT_32BITINODES;
1da177e4 256
2d2194f6
CM
257 if (mp->m_flags & XFS_MOUNT_32BITINODES)
258 index = xfs_set_inode32(mp);
259 else
260 index = xfs_set_inode64(mp);
fb3b504a 261
1c1c6ebc
DC
262 if (maxagi)
263 *maxagi = index;
264 return 0;
8b26c582
DC
265
266out_unwind:
267 kmem_free(pag);
268 for (; index > first_initialised; index--) {
269 pag = radix_tree_delete(&mp->m_perag_tree, index);
270 kmem_free(pag);
271 }
272 return error;
1da177e4
LT
273}
274
1da177e4
LT
275/*
276 * xfs_readsb
277 *
278 * Does the initial read of the superblock.
279 */
280int
ff55068c
DC
281xfs_readsb(
282 struct xfs_mount *mp,
283 int flags)
1da177e4
LT
284{
285 unsigned int sector_size;
04a1e6c5
DC
286 struct xfs_buf *bp;
287 struct xfs_sb *sbp = &mp->m_sb;
1da177e4 288 int error;
af34e09d 289 int loud = !(flags & XFS_MFSI_QUIET);
1da177e4
LT
290
291 ASSERT(mp->m_sb_bp == NULL);
292 ASSERT(mp->m_ddev_targp != NULL);
293
294 /*
295 * Allocate a (locked) buffer to hold the superblock.
296 * This will be kept around at all times to optimize
297 * access to the superblock.
298 */
299 sector_size = xfs_getsize_buftarg(mp->m_ddev_targp);
26af6552
DC
300
301reread:
e70b73f8 302 bp = xfs_buf_read_uncached(mp->m_ddev_targp, XFS_SB_DADDR,
98021821 303 BTOBB(sector_size), 0,
1813dd64
DC
304 loud ? &xfs_sb_buf_ops
305 : &xfs_sb_quiet_buf_ops);
26af6552 306 if (!bp) {
af34e09d
DC
307 if (loud)
308 xfs_warn(mp, "SB buffer read failed");
26af6552 309 return EIO;
1da177e4 310 }
eab4e633
DC
311 if (bp->b_error) {
312 error = bp->b_error;
313 if (loud)
e721f504 314 xfs_warn(mp, "SB validate failed with error %d.", error);
eab4e633
DC
315 goto release_buf;
316 }
1da177e4
LT
317
318 /*
319 * Initialize the mount structure from the superblock.
1da177e4 320 */
98021821 321 xfs_sb_from_disk(&mp->m_sb, XFS_BUF_TO_SBP(bp));
83e782e1 322 xfs_sb_quota_from_disk(&mp->m_sb);
ff55068c 323
1da177e4
LT
324 /*
325 * We must be able to do sector-sized and sector-aligned IO.
326 */
04a1e6c5 327 if (sector_size > sbp->sb_sectsize) {
af34e09d
DC
328 if (loud)
329 xfs_warn(mp, "device supports %u byte sectors (not %u)",
04a1e6c5 330 sector_size, sbp->sb_sectsize);
1da177e4 331 error = ENOSYS;
26af6552 332 goto release_buf;
1da177e4
LT
333 }
334
335 /*
336 * If device sector size is smaller than the superblock size,
337 * re-read the superblock so the buffer is correctly sized.
338 */
04a1e6c5 339 if (sector_size < sbp->sb_sectsize) {
1da177e4 340 xfs_buf_relse(bp);
04a1e6c5 341 sector_size = sbp->sb_sectsize;
26af6552 342 goto reread;
1da177e4
LT
343 }
344
5478eead
LM
345 /* Initialize per-cpu counters */
346 xfs_icsb_reinit_counters(mp);
8d280b98 347
04a1e6c5
DC
348 /* no need to be quiet anymore, so reset the buf ops */
349 bp->b_ops = &xfs_sb_buf_ops;
350
1da177e4 351 mp->m_sb_bp = bp;
26af6552 352 xfs_buf_unlock(bp);
1da177e4
LT
353 return 0;
354
26af6552
DC
355release_buf:
356 xfs_buf_relse(bp);
1da177e4
LT
357 return error;
358}
359
1da177e4 360/*
0771fb45 361 * Update alignment values based on mount options and sb values
1da177e4 362 */
0771fb45 363STATIC int
7884bc86 364xfs_update_alignment(xfs_mount_t *mp)
1da177e4 365{
1da177e4 366 xfs_sb_t *sbp = &(mp->m_sb);
1da177e4 367
4249023a 368 if (mp->m_dalign) {
1da177e4
LT
369 /*
370 * If stripe unit and stripe width are not multiples
371 * of the fs blocksize turn off alignment.
372 */
373 if ((BBTOB(mp->m_dalign) & mp->m_blockmask) ||
374 (BBTOB(mp->m_swidth) & mp->m_blockmask)) {
39a45d84
JL
375 xfs_warn(mp,
376 "alignment check failed: sunit/swidth vs. blocksize(%d)",
377 sbp->sb_blocksize);
378 return XFS_ERROR(EINVAL);
1da177e4
LT
379 } else {
380 /*
381 * Convert the stripe unit and width to FSBs.
382 */
383 mp->m_dalign = XFS_BB_TO_FSBT(mp, mp->m_dalign);
384 if (mp->m_dalign && (sbp->sb_agblocks % mp->m_dalign)) {
53487786 385 xfs_warn(mp,
39a45d84
JL
386 "alignment check failed: sunit/swidth vs. agsize(%d)",
387 sbp->sb_agblocks);
388 return XFS_ERROR(EINVAL);
1da177e4
LT
389 } else if (mp->m_dalign) {
390 mp->m_swidth = XFS_BB_TO_FSBT(mp, mp->m_swidth);
391 } else {
39a45d84
JL
392 xfs_warn(mp,
393 "alignment check failed: sunit(%d) less than bsize(%d)",
394 mp->m_dalign, sbp->sb_blocksize);
395 return XFS_ERROR(EINVAL);
1da177e4
LT
396 }
397 }
398
399 /*
400 * Update superblock with new values
401 * and log changes
402 */
62118709 403 if (xfs_sb_version_hasdalign(sbp)) {
1da177e4
LT
404 if (sbp->sb_unit != mp->m_dalign) {
405 sbp->sb_unit = mp->m_dalign;
7884bc86 406 mp->m_update_flags |= XFS_SB_UNIT;
1da177e4
LT
407 }
408 if (sbp->sb_width != mp->m_swidth) {
409 sbp->sb_width = mp->m_swidth;
7884bc86 410 mp->m_update_flags |= XFS_SB_WIDTH;
1da177e4 411 }
34d7f603
JL
412 } else {
413 xfs_warn(mp,
414 "cannot change alignment: superblock does not support data alignment");
415 return XFS_ERROR(EINVAL);
1da177e4
LT
416 }
417 } else if ((mp->m_flags & XFS_MOUNT_NOALIGN) != XFS_MOUNT_NOALIGN &&
62118709 418 xfs_sb_version_hasdalign(&mp->m_sb)) {
1da177e4
LT
419 mp->m_dalign = sbp->sb_unit;
420 mp->m_swidth = sbp->sb_width;
421 }
422
0771fb45
ES
423 return 0;
424}
1da177e4 425
0771fb45
ES
426/*
427 * Set the maximum inode count for this filesystem
428 */
429STATIC void
430xfs_set_maxicount(xfs_mount_t *mp)
431{
432 xfs_sb_t *sbp = &(mp->m_sb);
433 __uint64_t icount;
1da177e4 434
0771fb45
ES
435 if (sbp->sb_imax_pct) {
436 /*
437 * Make sure the maximum inode count is a multiple
438 * of the units we allocate inodes in.
1da177e4 439 */
1da177e4
LT
440 icount = sbp->sb_dblocks * sbp->sb_imax_pct;
441 do_div(icount, 100);
442 do_div(icount, mp->m_ialloc_blks);
443 mp->m_maxicount = (icount * mp->m_ialloc_blks) <<
444 sbp->sb_inopblog;
0771fb45 445 } else {
1da177e4 446 mp->m_maxicount = 0;
1da177e4 447 }
0771fb45
ES
448}
449
450/*
451 * Set the default minimum read and write sizes unless
452 * already specified in a mount option.
453 * We use smaller I/O sizes when the file system
454 * is being used for NFS service (wsync mount option).
455 */
456STATIC void
457xfs_set_rw_sizes(xfs_mount_t *mp)
458{
459 xfs_sb_t *sbp = &(mp->m_sb);
460 int readio_log, writeio_log;
1da177e4 461
1da177e4
LT
462 if (!(mp->m_flags & XFS_MOUNT_DFLT_IOSIZE)) {
463 if (mp->m_flags & XFS_MOUNT_WSYNC) {
464 readio_log = XFS_WSYNC_READIO_LOG;
465 writeio_log = XFS_WSYNC_WRITEIO_LOG;
466 } else {
467 readio_log = XFS_READIO_LOG_LARGE;
468 writeio_log = XFS_WRITEIO_LOG_LARGE;
469 }
470 } else {
471 readio_log = mp->m_readio_log;
472 writeio_log = mp->m_writeio_log;
473 }
474
1da177e4
LT
475 if (sbp->sb_blocklog > readio_log) {
476 mp->m_readio_log = sbp->sb_blocklog;
477 } else {
478 mp->m_readio_log = readio_log;
479 }
480 mp->m_readio_blocks = 1 << (mp->m_readio_log - sbp->sb_blocklog);
481 if (sbp->sb_blocklog > writeio_log) {
482 mp->m_writeio_log = sbp->sb_blocklog;
483 } else {
484 mp->m_writeio_log = writeio_log;
485 }
486 mp->m_writeio_blocks = 1 << (mp->m_writeio_log - sbp->sb_blocklog);
0771fb45 487}
1da177e4 488
055388a3
DC
489/*
490 * precalculate the low space thresholds for dynamic speculative preallocation.
491 */
492void
493xfs_set_low_space_thresholds(
494 struct xfs_mount *mp)
495{
496 int i;
497
498 for (i = 0; i < XFS_LOWSP_MAX; i++) {
499 __uint64_t space = mp->m_sb.sb_dblocks;
500
501 do_div(space, 100);
502 mp->m_low_space[i] = space * (i + 1);
503 }
504}
505
506
0771fb45
ES
507/*
508 * Set whether we're using inode alignment.
509 */
510STATIC void
511xfs_set_inoalignment(xfs_mount_t *mp)
512{
62118709 513 if (xfs_sb_version_hasalign(&mp->m_sb) &&
1da177e4
LT
514 mp->m_sb.sb_inoalignmt >=
515 XFS_B_TO_FSBT(mp, mp->m_inode_cluster_size))
516 mp->m_inoalign_mask = mp->m_sb.sb_inoalignmt - 1;
517 else
518 mp->m_inoalign_mask = 0;
519 /*
520 * If we are using stripe alignment, check whether
521 * the stripe unit is a multiple of the inode alignment
522 */
523 if (mp->m_dalign && mp->m_inoalign_mask &&
524 !(mp->m_dalign & mp->m_inoalign_mask))
525 mp->m_sinoalign = mp->m_dalign;
526 else
527 mp->m_sinoalign = 0;
0771fb45
ES
528}
529
530/*
0471f62e 531 * Check that the data (and log if separate) is an ok size.
0771fb45
ES
532 */
533STATIC int
4249023a 534xfs_check_sizes(xfs_mount_t *mp)
0771fb45
ES
535{
536 xfs_buf_t *bp;
537 xfs_daddr_t d;
0771fb45 538
1da177e4
LT
539 d = (xfs_daddr_t)XFS_FSB_TO_BB(mp, mp->m_sb.sb_dblocks);
540 if (XFS_BB_TO_FSB(mp, d) != mp->m_sb.sb_dblocks) {
0b932ccc 541 xfs_warn(mp, "filesystem size mismatch detected");
657a4cff 542 return XFS_ERROR(EFBIG);
1da177e4 543 }
e70b73f8 544 bp = xfs_buf_read_uncached(mp->m_ddev_targp,
1922c949 545 d - XFS_FSS_TO_BB(mp, 1),
c3f8fc73 546 XFS_FSS_TO_BB(mp, 1), 0, NULL);
1922c949 547 if (!bp) {
0b932ccc 548 xfs_warn(mp, "last sector read failed");
1922c949 549 return EIO;
1da177e4 550 }
1922c949 551 xfs_buf_relse(bp);
1da177e4 552
4249023a 553 if (mp->m_logdev_targp != mp->m_ddev_targp) {
1da177e4
LT
554 d = (xfs_daddr_t)XFS_FSB_TO_BB(mp, mp->m_sb.sb_logblocks);
555 if (XFS_BB_TO_FSB(mp, d) != mp->m_sb.sb_logblocks) {
0b932ccc 556 xfs_warn(mp, "log size mismatch detected");
657a4cff 557 return XFS_ERROR(EFBIG);
1da177e4 558 }
e70b73f8 559 bp = xfs_buf_read_uncached(mp->m_logdev_targp,
1922c949 560 d - XFS_FSB_TO_BB(mp, 1),
c3f8fc73 561 XFS_FSB_TO_BB(mp, 1), 0, NULL);
1922c949 562 if (!bp) {
0b932ccc 563 xfs_warn(mp, "log device read failed");
1922c949 564 return EIO;
0771fb45 565 }
1922c949 566 xfs_buf_relse(bp);
0771fb45
ES
567 }
568 return 0;
569}
570
7d095257
CH
571/*
572 * Clear the quotaflags in memory and in the superblock.
573 */
574int
575xfs_mount_reset_sbqflags(
576 struct xfs_mount *mp)
577{
578 int error;
579 struct xfs_trans *tp;
580
581 mp->m_qflags = 0;
582
583 /*
584 * It is OK to look at sb_qflags here in mount path,
585 * without m_sb_lock.
586 */
587 if (mp->m_sb.sb_qflags == 0)
588 return 0;
589 spin_lock(&mp->m_sb_lock);
590 mp->m_sb.sb_qflags = 0;
591 spin_unlock(&mp->m_sb_lock);
592
593 /*
594 * If the fs is readonly, let the incore superblock run
595 * with quotas off but don't flush the update out to disk
596 */
597 if (mp->m_flags & XFS_MOUNT_RDONLY)
598 return 0;
599
7d095257 600 tp = xfs_trans_alloc(mp, XFS_TRANS_QM_SBCHANGE);
3d3c8b52 601 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_qm_sbchange, 0, 0);
7d095257
CH
602 if (error) {
603 xfs_trans_cancel(tp, 0);
53487786 604 xfs_alert(mp, "%s: Superblock update failed!", __func__);
7d095257
CH
605 return error;
606 }
607
608 xfs_mod_sb(tp, XFS_SB_QFLAGS);
609 return xfs_trans_commit(tp, 0);
610}
611
d5db0f97
ES
612__uint64_t
613xfs_default_resblks(xfs_mount_t *mp)
614{
615 __uint64_t resblks;
616
617 /*
8babd8a2
DC
618 * We default to 5% or 8192 fsbs of space reserved, whichever is
619 * smaller. This is intended to cover concurrent allocation
620 * transactions when we initially hit enospc. These each require a 4
621 * block reservation. Hence by default we cover roughly 2000 concurrent
622 * allocation reservations.
d5db0f97
ES
623 */
624 resblks = mp->m_sb.sb_dblocks;
625 do_div(resblks, 20);
8babd8a2 626 resblks = min_t(__uint64_t, resblks, 8192);
d5db0f97
ES
627 return resblks;
628}
629
0771fb45 630/*
0771fb45
ES
631 * This function does the following on an initial mount of a file system:
632 * - reads the superblock from disk and init the mount struct
633 * - if we're a 32-bit kernel, do a size check on the superblock
634 * so we don't mount terabyte filesystems
635 * - init mount struct realtime fields
636 * - allocate inode hash table for fs
637 * - init directory manager
638 * - perform recovery and init the log manager
639 */
640int
641xfs_mountfs(
4249023a 642 xfs_mount_t *mp)
0771fb45
ES
643{
644 xfs_sb_t *sbp = &(mp->m_sb);
645 xfs_inode_t *rip;
0771fb45 646 __uint64_t resblks;
7d095257
CH
647 uint quotamount = 0;
648 uint quotaflags = 0;
0771fb45
ES
649 int error = 0;
650
ff55068c 651 xfs_sb_mount_common(mp, sbp);
0771fb45 652
ee1c0908 653 /*
e6957ea4
ES
654 * Check for a mismatched features2 values. Older kernels
655 * read & wrote into the wrong sb offset for sb_features2
656 * on some platforms due to xfs_sb_t not being 64bit size aligned
657 * when sb_features2 was added, which made older superblock
658 * reading/writing routines swap it as a 64-bit value.
ee1c0908 659 *
e6957ea4
ES
660 * For backwards compatibility, we make both slots equal.
661 *
662 * If we detect a mismatched field, we OR the set bits into the
663 * existing features2 field in case it has already been modified; we
664 * don't want to lose any features. We then update the bad location
665 * with the ORed value so that older kernels will see any features2
666 * flags, and mark the two fields as needing updates once the
667 * transaction subsystem is online.
ee1c0908 668 */
e6957ea4 669 if (xfs_sb_has_mismatched_features2(sbp)) {
0b932ccc 670 xfs_warn(mp, "correcting sb_features alignment problem");
ee1c0908 671 sbp->sb_features2 |= sbp->sb_bad_features2;
e6957ea4 672 sbp->sb_bad_features2 = sbp->sb_features2;
7884bc86 673 mp->m_update_flags |= XFS_SB_FEATURES2 | XFS_SB_BAD_FEATURES2;
e6957ea4
ES
674
675 /*
676 * Re-check for ATTR2 in case it was found in bad_features2
677 * slot.
678 */
7c12f296
TS
679 if (xfs_sb_version_hasattr2(&mp->m_sb) &&
680 !(mp->m_flags & XFS_MOUNT_NOATTR2))
e6957ea4 681 mp->m_flags |= XFS_MOUNT_ATTR2;
7c12f296
TS
682 }
683
684 if (xfs_sb_version_hasattr2(&mp->m_sb) &&
685 (mp->m_flags & XFS_MOUNT_NOATTR2)) {
686 xfs_sb_version_removeattr2(&mp->m_sb);
7884bc86 687 mp->m_update_flags |= XFS_SB_FEATURES2;
e6957ea4 688
7c12f296
TS
689 /* update sb_versionnum for the clearing of the morebits */
690 if (!sbp->sb_features2)
7884bc86 691 mp->m_update_flags |= XFS_SB_VERSIONNUM;
ee1c0908
DC
692 }
693
0771fb45
ES
694 /*
695 * Check if sb_agblocks is aligned at stripe boundary
696 * If sb_agblocks is NOT aligned turn off m_dalign since
697 * allocator alignment is within an ag, therefore ag has
698 * to be aligned at stripe boundary.
699 */
7884bc86 700 error = xfs_update_alignment(mp);
0771fb45 701 if (error)
f9057e3d 702 goto out;
0771fb45
ES
703
704 xfs_alloc_compute_maxlevels(mp);
705 xfs_bmap_compute_maxlevels(mp, XFS_DATA_FORK);
706 xfs_bmap_compute_maxlevels(mp, XFS_ATTR_FORK);
707 xfs_ialloc_compute_maxlevels(mp);
708
709 xfs_set_maxicount(mp);
710
27174203
CH
711 error = xfs_uuid_mount(mp);
712 if (error)
713 goto out;
1da177e4 714
0771fb45
ES
715 /*
716 * Set the minimum read and write sizes
717 */
718 xfs_set_rw_sizes(mp);
719
055388a3
DC
720 /* set the low space thresholds for dynamic preallocation */
721 xfs_set_low_space_thresholds(mp);
722
0771fb45
ES
723 /*
724 * Set the inode cluster size.
725 * This may still be overridden by the file system
726 * block size if it is larger than the chosen cluster size.
727 */
728 mp->m_inode_cluster_size = XFS_INODE_BIG_CLUSTER_SIZE;
729
730 /*
731 * Set inode alignment fields
732 */
733 xfs_set_inoalignment(mp);
734
735 /*
c2bfbc9b 736 * Check that the data (and log if separate) is an ok size.
0771fb45 737 */
4249023a 738 error = xfs_check_sizes(mp);
0771fb45 739 if (error)
f9057e3d 740 goto out_remove_uuid;
0771fb45 741
1da177e4
LT
742 /*
743 * Initialize realtime fields in the mount structure
744 */
0771fb45
ES
745 error = xfs_rtmount_init(mp);
746 if (error) {
0b932ccc 747 xfs_warn(mp, "RT mount failed");
f9057e3d 748 goto out_remove_uuid;
1da177e4
LT
749 }
750
1da177e4
LT
751 /*
752 * Copies the low order bits of the timestamp and the randomly
753 * set "sequence" number out of a UUID.
754 */
755 uuid_getnodeuniq(&sbp->sb_uuid, mp->m_fixedfsid);
756
1da177e4
LT
757 mp->m_dmevmask = 0; /* not persistent; set after each mount */
758
f6c2d1fa 759 xfs_dir_mount(mp);
1da177e4
LT
760
761 /*
762 * Initialize the attribute manager's entries.
763 */
764 mp->m_attr_magicpct = (mp->m_sb.sb_blocksize * 37) / 100;
765
766 /*
767 * Initialize the precomputed transaction reservations values.
768 */
769 xfs_trans_init(mp);
770
1da177e4
LT
771 /*
772 * Allocate and initialize the per-ag data.
773 */
1c1c6ebc 774 spin_lock_init(&mp->m_perag_lock);
9b98b6f3 775 INIT_RADIX_TREE(&mp->m_perag_tree, GFP_ATOMIC);
1c1c6ebc
DC
776 error = xfs_initialize_perag(mp, sbp->sb_agcount, &mp->m_maxagi);
777 if (error) {
0b932ccc 778 xfs_warn(mp, "Failed per-ag init: %d", error);
f9057e3d 779 goto out_remove_uuid;
1c1c6ebc 780 }
1da177e4 781
f9057e3d 782 if (!sbp->sb_logblocks) {
0b932ccc 783 xfs_warn(mp, "no log defined");
f9057e3d
CH
784 XFS_ERROR_REPORT("xfs_mountfs", XFS_ERRLEVEL_LOW, mp);
785 error = XFS_ERROR(EFSCORRUPTED);
786 goto out_free_perag;
787 }
788
1da177e4
LT
789 /*
790 * log's mount-time initialization. Perform 1st part recovery if needed
791 */
f9057e3d
CH
792 error = xfs_log_mount(mp, mp->m_logdev_targp,
793 XFS_FSB_TO_DADDR(mp, sbp->sb_logstart),
794 XFS_FSB_TO_BB(mp, sbp->sb_logblocks));
795 if (error) {
0b932ccc 796 xfs_warn(mp, "log mount failed");
d4f3512b 797 goto out_fail_wait;
1da177e4
LT
798 }
799
92821e2b
DC
800 /*
801 * Now the log is mounted, we know if it was an unclean shutdown or
802 * not. If it was, with the first phase of recovery has completed, we
803 * have consistent AG blocks on disk. We have not recovered EFIs yet,
804 * but they are recovered transactionally in the second recovery phase
805 * later.
806 *
807 * Hence we can safely re-initialise incore superblock counters from
808 * the per-ag data. These may not be correct if the filesystem was not
809 * cleanly unmounted, so we need to wait for recovery to finish before
810 * doing this.
811 *
812 * If the filesystem was cleanly unmounted, then we can trust the
813 * values in the superblock to be correct and we don't need to do
814 * anything here.
815 *
816 * If we are currently making the filesystem, the initialisation will
817 * fail as the perag data is in an undefined state.
818 */
92821e2b
DC
819 if (xfs_sb_version_haslazysbcount(&mp->m_sb) &&
820 !XFS_LAST_UNMOUNT_WAS_CLEAN(mp) &&
821 !mp->m_sb.sb_inprogress) {
822 error = xfs_initialize_perag_data(mp, sbp->sb_agcount);
f9057e3d 823 if (error)
d4f3512b 824 goto out_fail_wait;
92821e2b 825 }
f9057e3d 826
1da177e4
LT
827 /*
828 * Get and sanity-check the root inode.
829 * Save the pointer to it in the mount structure.
830 */
7b6259e7 831 error = xfs_iget(mp, NULL, sbp->sb_rootino, 0, XFS_ILOCK_EXCL, &rip);
1da177e4 832 if (error) {
0b932ccc 833 xfs_warn(mp, "failed to read root inode");
f9057e3d 834 goto out_log_dealloc;
1da177e4
LT
835 }
836
837 ASSERT(rip != NULL);
1da177e4 838
abbede1b 839 if (unlikely(!S_ISDIR(rip->i_d.di_mode))) {
0b932ccc 840 xfs_warn(mp, "corrupted root inode %llu: not a directory",
b6574520 841 (unsigned long long)rip->i_ino);
1da177e4
LT
842 xfs_iunlock(rip, XFS_ILOCK_EXCL);
843 XFS_ERROR_REPORT("xfs_mountfs_int(2)", XFS_ERRLEVEL_LOW,
844 mp);
845 error = XFS_ERROR(EFSCORRUPTED);
f9057e3d 846 goto out_rele_rip;
1da177e4
LT
847 }
848 mp->m_rootip = rip; /* save it */
849
850 xfs_iunlock(rip, XFS_ILOCK_EXCL);
851
852 /*
853 * Initialize realtime inode pointers in the mount structure
854 */
0771fb45
ES
855 error = xfs_rtmount_inodes(mp);
856 if (error) {
1da177e4
LT
857 /*
858 * Free up the root inode.
859 */
0b932ccc 860 xfs_warn(mp, "failed to read RT inodes");
f9057e3d 861 goto out_rele_rip;
1da177e4
LT
862 }
863
864 /*
7884bc86
CH
865 * If this is a read-only mount defer the superblock updates until
866 * the next remount into writeable mode. Otherwise we would never
867 * perform the update e.g. for the root filesystem.
1da177e4 868 */
7884bc86
CH
869 if (mp->m_update_flags && !(mp->m_flags & XFS_MOUNT_RDONLY)) {
870 error = xfs_mount_log_sb(mp, mp->m_update_flags);
e5720eec 871 if (error) {
0b932ccc 872 xfs_warn(mp, "failed to write sb changes");
b93b6e43 873 goto out_rtunmount;
e5720eec
DC
874 }
875 }
1da177e4
LT
876
877 /*
878 * Initialise the XFS quota management subsystem for this mount
879 */
7d095257
CH
880 if (XFS_IS_QUOTA_RUNNING(mp)) {
881 error = xfs_qm_newmount(mp, &quotamount, &quotaflags);
882 if (error)
883 goto out_rtunmount;
884 } else {
885 ASSERT(!XFS_IS_QUOTA_ON(mp));
886
887 /*
888 * If a file system had quotas running earlier, but decided to
889 * mount without -o uquota/pquota/gquota options, revoke the
890 * quotachecked license.
891 */
892 if (mp->m_sb.sb_qflags & XFS_ALL_QUOTA_ACCT) {
0b932ccc 893 xfs_notice(mp, "resetting quota flags");
7d095257
CH
894 error = xfs_mount_reset_sbqflags(mp);
895 if (error)
896 return error;
897 }
898 }
1da177e4
LT
899
900 /*
901 * Finish recovering the file system. This part needed to be
902 * delayed until after the root and real-time bitmap inodes
903 * were consistently read in.
904 */
4249023a 905 error = xfs_log_mount_finish(mp);
1da177e4 906 if (error) {
0b932ccc 907 xfs_warn(mp, "log mount finish failed");
b93b6e43 908 goto out_rtunmount;
1da177e4
LT
909 }
910
911 /*
912 * Complete the quota initialisation, post-log-replay component.
913 */
7d095257
CH
914 if (quotamount) {
915 ASSERT(mp->m_qflags == 0);
916 mp->m_qflags = quotaflags;
917
918 xfs_qm_mount_quotas(mp);
919 }
920
84e1e99f
DC
921 /*
922 * Now we are mounted, reserve a small amount of unused space for
923 * privileged transactions. This is needed so that transaction
924 * space required for critical operations can dip into this pool
925 * when at ENOSPC. This is needed for operations like create with
926 * attr, unwritten extent conversion at ENOSPC, etc. Data allocations
927 * are not allowed to use this reserved space.
8babd8a2
DC
928 *
929 * This may drive us straight to ENOSPC on mount, but that implies
930 * we were already there on the last unmount. Warn if this occurs.
84e1e99f 931 */
d5db0f97
ES
932 if (!(mp->m_flags & XFS_MOUNT_RDONLY)) {
933 resblks = xfs_default_resblks(mp);
934 error = xfs_reserve_blocks(mp, &resblks, NULL);
935 if (error)
0b932ccc
DC
936 xfs_warn(mp,
937 "Unable to allocate reserve blocks. Continuing without reserve pool.");
d5db0f97 938 }
84e1e99f 939
1da177e4
LT
940 return 0;
941
b93b6e43
CH
942 out_rtunmount:
943 xfs_rtunmount_inodes(mp);
f9057e3d 944 out_rele_rip:
43355099 945 IRELE(rip);
f9057e3d 946 out_log_dealloc:
21b699c8 947 xfs_log_unmount(mp);
d4f3512b
DC
948 out_fail_wait:
949 if (mp->m_logdev_targp && mp->m_logdev_targp != mp->m_ddev_targp)
950 xfs_wait_buftarg(mp->m_logdev_targp);
951 xfs_wait_buftarg(mp->m_ddev_targp);
f9057e3d 952 out_free_perag:
ff4f038c 953 xfs_free_perag(mp);
f9057e3d 954 out_remove_uuid:
27174203 955 xfs_uuid_unmount(mp);
f9057e3d 956 out:
1da177e4
LT
957 return error;
958}
959
960/*
1da177e4
LT
961 * This flushes out the inodes,dquots and the superblock, unmounts the
962 * log and makes sure that incore structures are freed.
963 */
41b5c2e7
CH
964void
965xfs_unmountfs(
966 struct xfs_mount *mp)
1da177e4 967{
41b5c2e7
CH
968 __uint64_t resblks;
969 int error;
1da177e4 970
579b62fa
BF
971 cancel_delayed_work_sync(&mp->m_eofblocks_work);
972
7d095257 973 xfs_qm_unmount_quotas(mp);
b93b6e43 974 xfs_rtunmount_inodes(mp);
77508ec8
CH
975 IRELE(mp->m_rootip);
976
641c56fb
DC
977 /*
978 * We can potentially deadlock here if we have an inode cluster
9da096fd 979 * that has been freed has its buffer still pinned in memory because
641c56fb
DC
980 * the transaction is still sitting in a iclog. The stale inodes
981 * on that buffer will have their flush locks held until the
982 * transaction hits the disk and the callbacks run. the inode
983 * flush takes the flush lock unconditionally and with nothing to
984 * push out the iclog we will never get that unlocked. hence we
985 * need to force the log first.
986 */
a14a348b 987 xfs_log_force(mp, XFS_LOG_SYNC);
c854363e
DC
988
989 /*
211e4d43
CH
990 * Flush all pending changes from the AIL.
991 */
992 xfs_ail_push_all_sync(mp->m_ail);
993
994 /*
995 * And reclaim all inodes. At this point there should be no dirty
7e18530b
DC
996 * inodes and none should be pinned or locked, but use synchronous
997 * reclaim just to be sure. We can stop background inode reclaim
998 * here as well if it is still running.
c854363e 999 */
7e18530b 1000 cancel_delayed_work_sync(&mp->m_reclaim_work);
c854363e 1001 xfs_reclaim_inodes(mp, SYNC_WAIT);
1da177e4 1002
7d095257 1003 xfs_qm_unmount(mp);
a357a121 1004
84e1e99f
DC
1005 /*
1006 * Unreserve any blocks we have so that when we unmount we don't account
1007 * the reserved free space as used. This is really only necessary for
1008 * lazy superblock counting because it trusts the incore superblock
9da096fd 1009 * counters to be absolutely correct on clean unmount.
84e1e99f
DC
1010 *
1011 * We don't bother correcting this elsewhere for lazy superblock
1012 * counting because on mount of an unclean filesystem we reconstruct the
1013 * correct counter value and this is irrelevant.
1014 *
1015 * For non-lazy counter filesystems, this doesn't matter at all because
1016 * we only every apply deltas to the superblock and hence the incore
1017 * value does not matter....
1018 */
1019 resblks = 0;
714082bc
DC
1020 error = xfs_reserve_blocks(mp, &resblks, NULL);
1021 if (error)
0b932ccc 1022 xfs_warn(mp, "Unable to free reserved block pool. "
714082bc
DC
1023 "Freespace may not be correct on next mount.");
1024
adab0f67 1025 error = xfs_log_sbcount(mp);
e5720eec 1026 if (error)
0b932ccc 1027 xfs_warn(mp, "Unable to update superblock counters. "
e5720eec 1028 "Freespace may not be correct on next mount.");
87c7bec7 1029
21b699c8 1030 xfs_log_unmount(mp);
27174203 1031 xfs_uuid_unmount(mp);
1da177e4 1032
1550d0b0 1033#if defined(DEBUG)
0ce4cfd4 1034 xfs_errortag_clearall(mp, 0);
1da177e4 1035#endif
ff4f038c 1036 xfs_free_perag(mp);
1da177e4
LT
1037}
1038
92821e2b
DC
1039int
1040xfs_fs_writable(xfs_mount_t *mp)
1041{
d9457dc0 1042 return !(mp->m_super->s_writers.frozen || XFS_FORCED_SHUTDOWN(mp) ||
bd186aa9 1043 (mp->m_flags & XFS_MOUNT_RDONLY));
92821e2b
DC
1044}
1045
1046/*
b2ce3974
AE
1047 * xfs_log_sbcount
1048 *
adab0f67 1049 * Sync the superblock counters to disk.
b2ce3974
AE
1050 *
1051 * Note this code can be called during the process of freezing, so
adab0f67 1052 * we may need to use the transaction allocator which does not
b2ce3974 1053 * block when the transaction subsystem is in its frozen state.
92821e2b
DC
1054 */
1055int
adab0f67 1056xfs_log_sbcount(xfs_mount_t *mp)
92821e2b
DC
1057{
1058 xfs_trans_t *tp;
1059 int error;
1060
1061 if (!xfs_fs_writable(mp))
1062 return 0;
1063
d4d90b57 1064 xfs_icsb_sync_counters(mp, 0);
92821e2b
DC
1065
1066 /*
1067 * we don't need to do this if we are updating the superblock
1068 * counters on every modification.
1069 */
1070 if (!xfs_sb_version_haslazysbcount(&mp->m_sb))
1071 return 0;
1072
b2ce3974 1073 tp = _xfs_trans_alloc(mp, XFS_TRANS_SB_COUNT, KM_SLEEP);
3d3c8b52 1074 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_sb, 0, 0);
92821e2b
DC
1075 if (error) {
1076 xfs_trans_cancel(tp, 0);
1077 return error;
1078 }
1079
1080 xfs_mod_sb(tp, XFS_SB_IFREE | XFS_SB_ICOUNT | XFS_SB_FDBLOCKS);
adab0f67 1081 xfs_trans_set_sync(tp);
e5720eec
DC
1082 error = xfs_trans_commit(tp, 0);
1083 return error;
92821e2b
DC
1084}
1085
1da177e4 1086/*
99e738b7 1087 * xfs_mod_incore_sb_unlocked() is a utility routine commonly used to apply
1da177e4
LT
1088 * a delta to a specified field in the in-core superblock. Simply
1089 * switch on the field indicated and apply the delta to that field.
1090 * Fields are not allowed to dip below zero, so if the delta would
1091 * do this do not apply it and return EINVAL.
1092 *
3685c2a1 1093 * The m_sb_lock must be held when this routine is called.
1da177e4 1094 */
d96f8f89 1095STATIC int
20f4ebf2
DC
1096xfs_mod_incore_sb_unlocked(
1097 xfs_mount_t *mp,
1098 xfs_sb_field_t field,
1099 int64_t delta,
1100 int rsvd)
1da177e4
LT
1101{
1102 int scounter; /* short counter for 32 bit fields */
1103 long long lcounter; /* long counter for 64 bit fields */
1104 long long res_used, rem;
1105
1106 /*
1107 * With the in-core superblock spin lock held, switch
1108 * on the indicated field. Apply the delta to the
1109 * proper field. If the fields value would dip below
1110 * 0, then do not apply the delta and return EINVAL.
1111 */
1112 switch (field) {
1113 case XFS_SBS_ICOUNT:
1114 lcounter = (long long)mp->m_sb.sb_icount;
1115 lcounter += delta;
1116 if (lcounter < 0) {
1117 ASSERT(0);
014c2544 1118 return XFS_ERROR(EINVAL);
1da177e4
LT
1119 }
1120 mp->m_sb.sb_icount = lcounter;
014c2544 1121 return 0;
1da177e4
LT
1122 case XFS_SBS_IFREE:
1123 lcounter = (long long)mp->m_sb.sb_ifree;
1124 lcounter += delta;
1125 if (lcounter < 0) {
1126 ASSERT(0);
014c2544 1127 return XFS_ERROR(EINVAL);
1da177e4
LT
1128 }
1129 mp->m_sb.sb_ifree = lcounter;
014c2544 1130 return 0;
1da177e4 1131 case XFS_SBS_FDBLOCKS:
4be536de
DC
1132 lcounter = (long long)
1133 mp->m_sb.sb_fdblocks - XFS_ALLOC_SET_ASIDE(mp);
1da177e4
LT
1134 res_used = (long long)(mp->m_resblks - mp->m_resblks_avail);
1135
1136 if (delta > 0) { /* Putting blocks back */
1137 if (res_used > delta) {
1138 mp->m_resblks_avail += delta;
1139 } else {
1140 rem = delta - res_used;
1141 mp->m_resblks_avail = mp->m_resblks;
1142 lcounter += rem;
1143 }
1144 } else { /* Taking blocks away */
1da177e4 1145 lcounter += delta;
8babd8a2
DC
1146 if (lcounter >= 0) {
1147 mp->m_sb.sb_fdblocks = lcounter +
1148 XFS_ALLOC_SET_ASIDE(mp);
1149 return 0;
1150 }
1da177e4 1151
8babd8a2
DC
1152 /*
1153 * We are out of blocks, use any available reserved
1154 * blocks if were allowed to.
1155 */
1156 if (!rsvd)
1157 return XFS_ERROR(ENOSPC);
1da177e4 1158
8babd8a2
DC
1159 lcounter = (long long)mp->m_resblks_avail + delta;
1160 if (lcounter >= 0) {
1161 mp->m_resblks_avail = lcounter;
1162 return 0;
1da177e4 1163 }
8babd8a2
DC
1164 printk_once(KERN_WARNING
1165 "Filesystem \"%s\": reserve blocks depleted! "
1166 "Consider increasing reserve pool size.",
1167 mp->m_fsname);
1168 return XFS_ERROR(ENOSPC);
1da177e4
LT
1169 }
1170
4be536de 1171 mp->m_sb.sb_fdblocks = lcounter + XFS_ALLOC_SET_ASIDE(mp);
014c2544 1172 return 0;
1da177e4
LT
1173 case XFS_SBS_FREXTENTS:
1174 lcounter = (long long)mp->m_sb.sb_frextents;
1175 lcounter += delta;
1176 if (lcounter < 0) {
014c2544 1177 return XFS_ERROR(ENOSPC);
1da177e4
LT
1178 }
1179 mp->m_sb.sb_frextents = lcounter;
014c2544 1180 return 0;
1da177e4
LT
1181 case XFS_SBS_DBLOCKS:
1182 lcounter = (long long)mp->m_sb.sb_dblocks;
1183 lcounter += delta;
1184 if (lcounter < 0) {
1185 ASSERT(0);
014c2544 1186 return XFS_ERROR(EINVAL);
1da177e4
LT
1187 }
1188 mp->m_sb.sb_dblocks = lcounter;
014c2544 1189 return 0;
1da177e4
LT
1190 case XFS_SBS_AGCOUNT:
1191 scounter = mp->m_sb.sb_agcount;
1192 scounter += delta;
1193 if (scounter < 0) {
1194 ASSERT(0);
014c2544 1195 return XFS_ERROR(EINVAL);
1da177e4
LT
1196 }
1197 mp->m_sb.sb_agcount = scounter;
014c2544 1198 return 0;
1da177e4
LT
1199 case XFS_SBS_IMAX_PCT:
1200 scounter = mp->m_sb.sb_imax_pct;
1201 scounter += delta;
1202 if (scounter < 0) {
1203 ASSERT(0);
014c2544 1204 return XFS_ERROR(EINVAL);
1da177e4
LT
1205 }
1206 mp->m_sb.sb_imax_pct = scounter;
014c2544 1207 return 0;
1da177e4
LT
1208 case XFS_SBS_REXTSIZE:
1209 scounter = mp->m_sb.sb_rextsize;
1210 scounter += delta;
1211 if (scounter < 0) {
1212 ASSERT(0);
014c2544 1213 return XFS_ERROR(EINVAL);
1da177e4
LT
1214 }
1215 mp->m_sb.sb_rextsize = scounter;
014c2544 1216 return 0;
1da177e4
LT
1217 case XFS_SBS_RBMBLOCKS:
1218 scounter = mp->m_sb.sb_rbmblocks;
1219 scounter += delta;
1220 if (scounter < 0) {
1221 ASSERT(0);
014c2544 1222 return XFS_ERROR(EINVAL);
1da177e4
LT
1223 }
1224 mp->m_sb.sb_rbmblocks = scounter;
014c2544 1225 return 0;
1da177e4
LT
1226 case XFS_SBS_RBLOCKS:
1227 lcounter = (long long)mp->m_sb.sb_rblocks;
1228 lcounter += delta;
1229 if (lcounter < 0) {
1230 ASSERT(0);
014c2544 1231 return XFS_ERROR(EINVAL);
1da177e4
LT
1232 }
1233 mp->m_sb.sb_rblocks = lcounter;
014c2544 1234 return 0;
1da177e4
LT
1235 case XFS_SBS_REXTENTS:
1236 lcounter = (long long)mp->m_sb.sb_rextents;
1237 lcounter += delta;
1238 if (lcounter < 0) {
1239 ASSERT(0);
014c2544 1240 return XFS_ERROR(EINVAL);
1da177e4
LT
1241 }
1242 mp->m_sb.sb_rextents = lcounter;
014c2544 1243 return 0;
1da177e4
LT
1244 case XFS_SBS_REXTSLOG:
1245 scounter = mp->m_sb.sb_rextslog;
1246 scounter += delta;
1247 if (scounter < 0) {
1248 ASSERT(0);
014c2544 1249 return XFS_ERROR(EINVAL);
1da177e4
LT
1250 }
1251 mp->m_sb.sb_rextslog = scounter;
014c2544 1252 return 0;
1da177e4
LT
1253 default:
1254 ASSERT(0);
014c2544 1255 return XFS_ERROR(EINVAL);
1da177e4
LT
1256 }
1257}
1258
1259/*
1260 * xfs_mod_incore_sb() is used to change a field in the in-core
1261 * superblock structure by the specified delta. This modification
3685c2a1 1262 * is protected by the m_sb_lock. Just use the xfs_mod_incore_sb_unlocked()
1da177e4
LT
1263 * routine to do the work.
1264 */
1265int
20f4ebf2 1266xfs_mod_incore_sb(
96540c78
CH
1267 struct xfs_mount *mp,
1268 xfs_sb_field_t field,
1269 int64_t delta,
1270 int rsvd)
1da177e4 1271{
96540c78 1272 int status;
1da177e4 1273
8d280b98 1274#ifdef HAVE_PERCPU_SB
96540c78 1275 ASSERT(field < XFS_SBS_ICOUNT || field > XFS_SBS_FDBLOCKS);
8d280b98 1276#endif
96540c78
CH
1277 spin_lock(&mp->m_sb_lock);
1278 status = xfs_mod_incore_sb_unlocked(mp, field, delta, rsvd);
1279 spin_unlock(&mp->m_sb_lock);
8d280b98 1280
014c2544 1281 return status;
1da177e4
LT
1282}
1283
1284/*
1b040712 1285 * Change more than one field in the in-core superblock structure at a time.
1da177e4 1286 *
1b040712
CH
1287 * The fields and changes to those fields are specified in the array of
1288 * xfs_mod_sb structures passed in. Either all of the specified deltas
1289 * will be applied or none of them will. If any modified field dips below 0,
1290 * then all modifications will be backed out and EINVAL will be returned.
1291 *
1292 * Note that this function may not be used for the superblock values that
1293 * are tracked with the in-memory per-cpu counters - a direct call to
1294 * xfs_icsb_modify_counters is required for these.
1da177e4
LT
1295 */
1296int
1b040712
CH
1297xfs_mod_incore_sb_batch(
1298 struct xfs_mount *mp,
1299 xfs_mod_sb_t *msb,
1300 uint nmsb,
1301 int rsvd)
1da177e4 1302{
45c51b99 1303 xfs_mod_sb_t *msbp;
1b040712 1304 int error = 0;
1da177e4
LT
1305
1306 /*
1b040712
CH
1307 * Loop through the array of mod structures and apply each individually.
1308 * If any fail, then back out all those which have already been applied.
1309 * Do all of this within the scope of the m_sb_lock so that all of the
1310 * changes will be atomic.
1da177e4 1311 */
3685c2a1 1312 spin_lock(&mp->m_sb_lock);
45c51b99 1313 for (msbp = msb; msbp < (msb + nmsb); msbp++) {
1b040712
CH
1314 ASSERT(msbp->msb_field < XFS_SBS_ICOUNT ||
1315 msbp->msb_field > XFS_SBS_FDBLOCKS);
8d280b98 1316
1b040712
CH
1317 error = xfs_mod_incore_sb_unlocked(mp, msbp->msb_field,
1318 msbp->msb_delta, rsvd);
1319 if (error)
1320 goto unwind;
1da177e4 1321 }
1b040712
CH
1322 spin_unlock(&mp->m_sb_lock);
1323 return 0;
1da177e4 1324
1b040712
CH
1325unwind:
1326 while (--msbp >= msb) {
1327 error = xfs_mod_incore_sb_unlocked(mp, msbp->msb_field,
1328 -msbp->msb_delta, rsvd);
1329 ASSERT(error == 0);
1da177e4 1330 }
3685c2a1 1331 spin_unlock(&mp->m_sb_lock);
1b040712 1332 return error;
1da177e4
LT
1333}
1334
1335/*
1336 * xfs_getsb() is called to obtain the buffer for the superblock.
1337 * The buffer is returned locked and read in from disk.
1338 * The buffer should be released with a call to xfs_brelse().
1339 *
1340 * If the flags parameter is BUF_TRYLOCK, then we'll only return
1341 * the superblock buffer if it can be locked without sleeping.
1342 * If it can't then we'll return NULL.
1343 */
0c842ad4 1344struct xfs_buf *
1da177e4 1345xfs_getsb(
0c842ad4
CH
1346 struct xfs_mount *mp,
1347 int flags)
1da177e4 1348{
0c842ad4 1349 struct xfs_buf *bp = mp->m_sb_bp;
1da177e4 1350
0c842ad4
CH
1351 if (!xfs_buf_trylock(bp)) {
1352 if (flags & XBF_TRYLOCK)
1da177e4 1353 return NULL;
0c842ad4 1354 xfs_buf_lock(bp);
1da177e4 1355 }
0c842ad4 1356
72790aa1 1357 xfs_buf_hold(bp);
1da177e4 1358 ASSERT(XFS_BUF_ISDONE(bp));
014c2544 1359 return bp;
1da177e4
LT
1360}
1361
1362/*
1363 * Used to free the superblock along various error paths.
1364 */
1365void
1366xfs_freesb(
26af6552 1367 struct xfs_mount *mp)
1da177e4 1368{
26af6552 1369 struct xfs_buf *bp = mp->m_sb_bp;
1da177e4 1370
26af6552 1371 xfs_buf_lock(bp);
1da177e4 1372 mp->m_sb_bp = NULL;
26af6552 1373 xfs_buf_relse(bp);
1da177e4
LT
1374}
1375
1da177e4
LT
1376/*
1377 * Used to log changes to the superblock unit and width fields which could
e6957ea4
ES
1378 * be altered by the mount options, as well as any potential sb_features2
1379 * fixup. Only the first superblock is updated.
1da177e4 1380 */
7884bc86 1381int
ee1c0908 1382xfs_mount_log_sb(
1da177e4
LT
1383 xfs_mount_t *mp,
1384 __int64_t fields)
1385{
1386 xfs_trans_t *tp;
e5720eec 1387 int error;
1da177e4 1388
ee1c0908 1389 ASSERT(fields & (XFS_SB_UNIT | XFS_SB_WIDTH | XFS_SB_UUID |
4b166de0
DC
1390 XFS_SB_FEATURES2 | XFS_SB_BAD_FEATURES2 |
1391 XFS_SB_VERSIONNUM));
1da177e4
LT
1392
1393 tp = xfs_trans_alloc(mp, XFS_TRANS_SB_UNIT);
3d3c8b52 1394 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_sb, 0, 0);
e5720eec 1395 if (error) {
1da177e4 1396 xfs_trans_cancel(tp, 0);
e5720eec 1397 return error;
1da177e4
LT
1398 }
1399 xfs_mod_sb(tp, fields);
e5720eec
DC
1400 error = xfs_trans_commit(tp, 0);
1401 return error;
1da177e4 1402}
8d280b98 1403
dda35b8f
CH
1404/*
1405 * If the underlying (data/log/rt) device is readonly, there are some
1406 * operations that cannot proceed.
1407 */
1408int
1409xfs_dev_is_read_only(
1410 struct xfs_mount *mp,
1411 char *message)
1412{
1413 if (xfs_readonly_buftarg(mp->m_ddev_targp) ||
1414 xfs_readonly_buftarg(mp->m_logdev_targp) ||
1415 (mp->m_rtdev_targp && xfs_readonly_buftarg(mp->m_rtdev_targp))) {
0b932ccc
DC
1416 xfs_notice(mp, "%s required on read-only device.", message);
1417 xfs_notice(mp, "write access unavailable, cannot proceed.");
dda35b8f
CH
1418 return EROFS;
1419 }
1420 return 0;
1421}
8d280b98
DC
1422
1423#ifdef HAVE_PERCPU_SB
1424/*
1425 * Per-cpu incore superblock counters
1426 *
1427 * Simple concept, difficult implementation
1428 *
1429 * Basically, replace the incore superblock counters with a distributed per cpu
1430 * counter for contended fields (e.g. free block count).
1431 *
1432 * Difficulties arise in that the incore sb is used for ENOSPC checking, and
1433 * hence needs to be accurately read when we are running low on space. Hence
1434 * there is a method to enable and disable the per-cpu counters based on how
1435 * much "stuff" is available in them.
1436 *
1437 * Basically, a counter is enabled if there is enough free resource to justify
1438 * running a per-cpu fast-path. If the per-cpu counter runs out (i.e. a local
1439 * ENOSPC), then we disable the counters to synchronise all callers and
1440 * re-distribute the available resources.
1441 *
1442 * If, once we redistributed the available resources, we still get a failure,
1443 * we disable the per-cpu counter and go through the slow path.
1444 *
1445 * The slow path is the current xfs_mod_incore_sb() function. This means that
9da096fd 1446 * when we disable a per-cpu counter, we need to drain its resources back to
8d280b98
DC
1447 * the global superblock. We do this after disabling the counter to prevent
1448 * more threads from queueing up on the counter.
1449 *
1450 * Essentially, this means that we still need a lock in the fast path to enable
1451 * synchronisation between the global counters and the per-cpu counters. This
1452 * is not a problem because the lock will be local to a CPU almost all the time
1453 * and have little contention except when we get to ENOSPC conditions.
1454 *
1455 * Basically, this lock becomes a barrier that enables us to lock out the fast
1456 * path while we do things like enabling and disabling counters and
1457 * synchronising the counters.
1458 *
1459 * Locking rules:
1460 *
3685c2a1 1461 * 1. m_sb_lock before picking up per-cpu locks
8d280b98 1462 * 2. per-cpu locks always picked up via for_each_online_cpu() order
3685c2a1 1463 * 3. accurate counter sync requires m_sb_lock + per cpu locks
8d280b98 1464 * 4. modifying per-cpu counters requires holding per-cpu lock
3685c2a1
ES
1465 * 5. modifying global counters requires holding m_sb_lock
1466 * 6. enabling or disabling a counter requires holding the m_sb_lock
8d280b98
DC
1467 * and _none_ of the per-cpu locks.
1468 *
1469 * Disabled counters are only ever re-enabled by a balance operation
1470 * that results in more free resources per CPU than a given threshold.
1471 * To ensure counters don't remain disabled, they are rebalanced when
1472 * the global resource goes above a higher threshold (i.e. some hysteresis
1473 * is present to prevent thrashing).
e8234a68
DC
1474 */
1475
5a67e4c5 1476#ifdef CONFIG_HOTPLUG_CPU
e8234a68
DC
1477/*
1478 * hot-plug CPU notifier support.
8d280b98 1479 *
5a67e4c5
CS
1480 * We need a notifier per filesystem as we need to be able to identify
1481 * the filesystem to balance the counters out. This is achieved by
1482 * having a notifier block embedded in the xfs_mount_t and doing pointer
1483 * magic to get the mount pointer from the notifier block address.
8d280b98 1484 */
e8234a68
DC
1485STATIC int
1486xfs_icsb_cpu_notify(
1487 struct notifier_block *nfb,
1488 unsigned long action,
1489 void *hcpu)
1490{
1491 xfs_icsb_cnts_t *cntp;
1492 xfs_mount_t *mp;
e8234a68
DC
1493
1494 mp = (xfs_mount_t *)container_of(nfb, xfs_mount_t, m_icsb_notifier);
1495 cntp = (xfs_icsb_cnts_t *)
1496 per_cpu_ptr(mp->m_sb_cnts, (unsigned long)hcpu);
1497 switch (action) {
1498 case CPU_UP_PREPARE:
8bb78442 1499 case CPU_UP_PREPARE_FROZEN:
e8234a68
DC
1500 /* Easy Case - initialize the area and locks, and
1501 * then rebalance when online does everything else for us. */
01e1b69c 1502 memset(cntp, 0, sizeof(xfs_icsb_cnts_t));
e8234a68
DC
1503 break;
1504 case CPU_ONLINE:
8bb78442 1505 case CPU_ONLINE_FROZEN:
03135cf7 1506 xfs_icsb_lock(mp);
45af6c6d
CH
1507 xfs_icsb_balance_counter(mp, XFS_SBS_ICOUNT, 0);
1508 xfs_icsb_balance_counter(mp, XFS_SBS_IFREE, 0);
1509 xfs_icsb_balance_counter(mp, XFS_SBS_FDBLOCKS, 0);
03135cf7 1510 xfs_icsb_unlock(mp);
e8234a68
DC
1511 break;
1512 case CPU_DEAD:
8bb78442 1513 case CPU_DEAD_FROZEN:
e8234a68
DC
1514 /* Disable all the counters, then fold the dead cpu's
1515 * count into the total on the global superblock and
1516 * re-enable the counters. */
03135cf7 1517 xfs_icsb_lock(mp);
3685c2a1 1518 spin_lock(&mp->m_sb_lock);
e8234a68
DC
1519 xfs_icsb_disable_counter(mp, XFS_SBS_ICOUNT);
1520 xfs_icsb_disable_counter(mp, XFS_SBS_IFREE);
1521 xfs_icsb_disable_counter(mp, XFS_SBS_FDBLOCKS);
1522
1523 mp->m_sb.sb_icount += cntp->icsb_icount;
1524 mp->m_sb.sb_ifree += cntp->icsb_ifree;
1525 mp->m_sb.sb_fdblocks += cntp->icsb_fdblocks;
1526
01e1b69c 1527 memset(cntp, 0, sizeof(xfs_icsb_cnts_t));
e8234a68 1528
45af6c6d
CH
1529 xfs_icsb_balance_counter_locked(mp, XFS_SBS_ICOUNT, 0);
1530 xfs_icsb_balance_counter_locked(mp, XFS_SBS_IFREE, 0);
1531 xfs_icsb_balance_counter_locked(mp, XFS_SBS_FDBLOCKS, 0);
3685c2a1 1532 spin_unlock(&mp->m_sb_lock);
03135cf7 1533 xfs_icsb_unlock(mp);
e8234a68
DC
1534 break;
1535 }
1536
1537 return NOTIFY_OK;
1538}
5a67e4c5 1539#endif /* CONFIG_HOTPLUG_CPU */
e8234a68 1540
8d280b98
DC
1541int
1542xfs_icsb_init_counters(
1543 xfs_mount_t *mp)
1544{
1545 xfs_icsb_cnts_t *cntp;
1546 int i;
1547
1548 mp->m_sb_cnts = alloc_percpu(xfs_icsb_cnts_t);
1549 if (mp->m_sb_cnts == NULL)
1550 return -ENOMEM;
1551
1552 for_each_online_cpu(i) {
1553 cntp = (xfs_icsb_cnts_t *)per_cpu_ptr(mp->m_sb_cnts, i);
01e1b69c 1554 memset(cntp, 0, sizeof(xfs_icsb_cnts_t));
8d280b98 1555 }
20b64285
DC
1556
1557 mutex_init(&mp->m_icsb_mutex);
1558
8d280b98
DC
1559 /*
1560 * start with all counters disabled so that the
1561 * initial balance kicks us off correctly
1562 */
1563 mp->m_icsb_counters = -1;
46677e67
RW
1564
1565#ifdef CONFIG_HOTPLUG_CPU
1566 mp->m_icsb_notifier.notifier_call = xfs_icsb_cpu_notify;
1567 mp->m_icsb_notifier.priority = 0;
1568 register_hotcpu_notifier(&mp->m_icsb_notifier);
1569#endif /* CONFIG_HOTPLUG_CPU */
1570
8d280b98
DC
1571 return 0;
1572}
1573
5478eead
LM
1574void
1575xfs_icsb_reinit_counters(
1576 xfs_mount_t *mp)
1577{
1578 xfs_icsb_lock(mp);
1579 /*
1580 * start with all counters disabled so that the
1581 * initial balance kicks us off correctly
1582 */
1583 mp->m_icsb_counters = -1;
45af6c6d
CH
1584 xfs_icsb_balance_counter(mp, XFS_SBS_ICOUNT, 0);
1585 xfs_icsb_balance_counter(mp, XFS_SBS_IFREE, 0);
1586 xfs_icsb_balance_counter(mp, XFS_SBS_FDBLOCKS, 0);
5478eead
LM
1587 xfs_icsb_unlock(mp);
1588}
1589
c962fb79 1590void
8d280b98
DC
1591xfs_icsb_destroy_counters(
1592 xfs_mount_t *mp)
1593{
e8234a68 1594 if (mp->m_sb_cnts) {
5a67e4c5 1595 unregister_hotcpu_notifier(&mp->m_icsb_notifier);
8d280b98 1596 free_percpu(mp->m_sb_cnts);
e8234a68 1597 }
03135cf7 1598 mutex_destroy(&mp->m_icsb_mutex);
8d280b98
DC
1599}
1600
b8f82a4a 1601STATIC void
01e1b69c
DC
1602xfs_icsb_lock_cntr(
1603 xfs_icsb_cnts_t *icsbp)
1604{
1605 while (test_and_set_bit(XFS_ICSB_FLAG_LOCK, &icsbp->icsb_flags)) {
1606 ndelay(1000);
1607 }
1608}
1609
b8f82a4a 1610STATIC void
01e1b69c
DC
1611xfs_icsb_unlock_cntr(
1612 xfs_icsb_cnts_t *icsbp)
1613{
1614 clear_bit(XFS_ICSB_FLAG_LOCK, &icsbp->icsb_flags);
1615}
1616
8d280b98 1617
b8f82a4a 1618STATIC void
8d280b98
DC
1619xfs_icsb_lock_all_counters(
1620 xfs_mount_t *mp)
1621{
1622 xfs_icsb_cnts_t *cntp;
1623 int i;
1624
1625 for_each_online_cpu(i) {
1626 cntp = (xfs_icsb_cnts_t *)per_cpu_ptr(mp->m_sb_cnts, i);
01e1b69c 1627 xfs_icsb_lock_cntr(cntp);
8d280b98
DC
1628 }
1629}
1630
b8f82a4a 1631STATIC void
8d280b98
DC
1632xfs_icsb_unlock_all_counters(
1633 xfs_mount_t *mp)
1634{
1635 xfs_icsb_cnts_t *cntp;
1636 int i;
1637
1638 for_each_online_cpu(i) {
1639 cntp = (xfs_icsb_cnts_t *)per_cpu_ptr(mp->m_sb_cnts, i);
01e1b69c 1640 xfs_icsb_unlock_cntr(cntp);
8d280b98
DC
1641 }
1642}
1643
1644STATIC void
1645xfs_icsb_count(
1646 xfs_mount_t *mp,
1647 xfs_icsb_cnts_t *cnt,
1648 int flags)
1649{
1650 xfs_icsb_cnts_t *cntp;
1651 int i;
1652
1653 memset(cnt, 0, sizeof(xfs_icsb_cnts_t));
1654
1655 if (!(flags & XFS_ICSB_LAZY_COUNT))
1656 xfs_icsb_lock_all_counters(mp);
1657
1658 for_each_online_cpu(i) {
1659 cntp = (xfs_icsb_cnts_t *)per_cpu_ptr(mp->m_sb_cnts, i);
1660 cnt->icsb_icount += cntp->icsb_icount;
1661 cnt->icsb_ifree += cntp->icsb_ifree;
1662 cnt->icsb_fdblocks += cntp->icsb_fdblocks;
1663 }
1664
1665 if (!(flags & XFS_ICSB_LAZY_COUNT))
1666 xfs_icsb_unlock_all_counters(mp);
1667}
1668
1669STATIC int
1670xfs_icsb_counter_disabled(
1671 xfs_mount_t *mp,
1672 xfs_sb_field_t field)
1673{
1674 ASSERT((field >= XFS_SBS_ICOUNT) && (field <= XFS_SBS_FDBLOCKS));
1675 return test_bit(field, &mp->m_icsb_counters);
1676}
1677
36fbe6e6 1678STATIC void
8d280b98
DC
1679xfs_icsb_disable_counter(
1680 xfs_mount_t *mp,
1681 xfs_sb_field_t field)
1682{
1683 xfs_icsb_cnts_t cnt;
1684
1685 ASSERT((field >= XFS_SBS_ICOUNT) && (field <= XFS_SBS_FDBLOCKS));
1686
20b64285
DC
1687 /*
1688 * If we are already disabled, then there is nothing to do
1689 * here. We check before locking all the counters to avoid
1690 * the expensive lock operation when being called in the
1691 * slow path and the counter is already disabled. This is
1692 * safe because the only time we set or clear this state is under
1693 * the m_icsb_mutex.
1694 */
1695 if (xfs_icsb_counter_disabled(mp, field))
36fbe6e6 1696 return;
20b64285 1697
8d280b98
DC
1698 xfs_icsb_lock_all_counters(mp);
1699 if (!test_and_set_bit(field, &mp->m_icsb_counters)) {
1700 /* drain back to superblock */
1701
ce46193b 1702 xfs_icsb_count(mp, &cnt, XFS_ICSB_LAZY_COUNT);
8d280b98
DC
1703 switch(field) {
1704 case XFS_SBS_ICOUNT:
1705 mp->m_sb.sb_icount = cnt.icsb_icount;
1706 break;
1707 case XFS_SBS_IFREE:
1708 mp->m_sb.sb_ifree = cnt.icsb_ifree;
1709 break;
1710 case XFS_SBS_FDBLOCKS:
1711 mp->m_sb.sb_fdblocks = cnt.icsb_fdblocks;
1712 break;
1713 default:
1714 BUG();
1715 }
1716 }
1717
1718 xfs_icsb_unlock_all_counters(mp);
8d280b98
DC
1719}
1720
1721STATIC void
1722xfs_icsb_enable_counter(
1723 xfs_mount_t *mp,
1724 xfs_sb_field_t field,
1725 uint64_t count,
1726 uint64_t resid)
1727{
1728 xfs_icsb_cnts_t *cntp;
1729 int i;
1730
1731 ASSERT((field >= XFS_SBS_ICOUNT) && (field <= XFS_SBS_FDBLOCKS));
1732
1733 xfs_icsb_lock_all_counters(mp);
1734 for_each_online_cpu(i) {
1735 cntp = per_cpu_ptr(mp->m_sb_cnts, i);
1736 switch (field) {
1737 case XFS_SBS_ICOUNT:
1738 cntp->icsb_icount = count + resid;
1739 break;
1740 case XFS_SBS_IFREE:
1741 cntp->icsb_ifree = count + resid;
1742 break;
1743 case XFS_SBS_FDBLOCKS:
1744 cntp->icsb_fdblocks = count + resid;
1745 break;
1746 default:
1747 BUG();
1748 break;
1749 }
1750 resid = 0;
1751 }
1752 clear_bit(field, &mp->m_icsb_counters);
1753 xfs_icsb_unlock_all_counters(mp);
1754}
1755
dbcabad1 1756void
d4d90b57 1757xfs_icsb_sync_counters_locked(
8d280b98
DC
1758 xfs_mount_t *mp,
1759 int flags)
1760{
1761 xfs_icsb_cnts_t cnt;
8d280b98 1762
8d280b98
DC
1763 xfs_icsb_count(mp, &cnt, flags);
1764
8d280b98
DC
1765 if (!xfs_icsb_counter_disabled(mp, XFS_SBS_ICOUNT))
1766 mp->m_sb.sb_icount = cnt.icsb_icount;
1767 if (!xfs_icsb_counter_disabled(mp, XFS_SBS_IFREE))
1768 mp->m_sb.sb_ifree = cnt.icsb_ifree;
1769 if (!xfs_icsb_counter_disabled(mp, XFS_SBS_FDBLOCKS))
1770 mp->m_sb.sb_fdblocks = cnt.icsb_fdblocks;
8d280b98
DC
1771}
1772
1773/*
1774 * Accurate update of per-cpu counters to incore superblock
1775 */
d4d90b57 1776void
8d280b98 1777xfs_icsb_sync_counters(
d4d90b57
CH
1778 xfs_mount_t *mp,
1779 int flags)
8d280b98 1780{
d4d90b57
CH
1781 spin_lock(&mp->m_sb_lock);
1782 xfs_icsb_sync_counters_locked(mp, flags);
1783 spin_unlock(&mp->m_sb_lock);
8d280b98
DC
1784}
1785
1786/*
1787 * Balance and enable/disable counters as necessary.
1788 *
20b64285
DC
1789 * Thresholds for re-enabling counters are somewhat magic. inode counts are
1790 * chosen to be the same number as single on disk allocation chunk per CPU, and
1791 * free blocks is something far enough zero that we aren't going thrash when we
1792 * get near ENOSPC. We also need to supply a minimum we require per cpu to
1793 * prevent looping endlessly when xfs_alloc_space asks for more than will
1794 * be distributed to a single CPU but each CPU has enough blocks to be
1795 * reenabled.
1796 *
1797 * Note that we can be called when counters are already disabled.
1798 * xfs_icsb_disable_counter() optimises the counter locking in this case to
1799 * prevent locking every per-cpu counter needlessly.
8d280b98 1800 */
20b64285
DC
1801
1802#define XFS_ICSB_INO_CNTR_REENABLE (uint64_t)64
4be536de 1803#define XFS_ICSB_FDBLK_CNTR_REENABLE(mp) \
20b64285 1804 (uint64_t)(512 + XFS_ALLOC_SET_ASIDE(mp))
8d280b98 1805STATIC void
45af6c6d 1806xfs_icsb_balance_counter_locked(
8d280b98
DC
1807 xfs_mount_t *mp,
1808 xfs_sb_field_t field,
20b64285 1809 int min_per_cpu)
8d280b98 1810{
6fdf8ccc 1811 uint64_t count, resid;
8d280b98 1812 int weight = num_online_cpus();
20b64285 1813 uint64_t min = (uint64_t)min_per_cpu;
8d280b98 1814
8d280b98
DC
1815 /* disable counter and sync counter */
1816 xfs_icsb_disable_counter(mp, field);
1817
1818 /* update counters - first CPU gets residual*/
1819 switch (field) {
1820 case XFS_SBS_ICOUNT:
1821 count = mp->m_sb.sb_icount;
1822 resid = do_div(count, weight);
20b64285 1823 if (count < max(min, XFS_ICSB_INO_CNTR_REENABLE))
45af6c6d 1824 return;
8d280b98
DC
1825 break;
1826 case XFS_SBS_IFREE:
1827 count = mp->m_sb.sb_ifree;
1828 resid = do_div(count, weight);
20b64285 1829 if (count < max(min, XFS_ICSB_INO_CNTR_REENABLE))
45af6c6d 1830 return;
8d280b98
DC
1831 break;
1832 case XFS_SBS_FDBLOCKS:
1833 count = mp->m_sb.sb_fdblocks;
1834 resid = do_div(count, weight);
20b64285 1835 if (count < max(min, XFS_ICSB_FDBLK_CNTR_REENABLE(mp)))
45af6c6d 1836 return;
8d280b98
DC
1837 break;
1838 default:
1839 BUG();
6fdf8ccc 1840 count = resid = 0; /* quiet, gcc */
8d280b98
DC
1841 break;
1842 }
1843
1844 xfs_icsb_enable_counter(mp, field, count, resid);
45af6c6d
CH
1845}
1846
1847STATIC void
1848xfs_icsb_balance_counter(
1849 xfs_mount_t *mp,
1850 xfs_sb_field_t fields,
1851 int min_per_cpu)
1852{
1853 spin_lock(&mp->m_sb_lock);
1854 xfs_icsb_balance_counter_locked(mp, fields, min_per_cpu);
1855 spin_unlock(&mp->m_sb_lock);
8d280b98
DC
1856}
1857
1b040712 1858int
20b64285 1859xfs_icsb_modify_counters(
8d280b98
DC
1860 xfs_mount_t *mp,
1861 xfs_sb_field_t field,
20f4ebf2 1862 int64_t delta,
20b64285 1863 int rsvd)
8d280b98
DC
1864{
1865 xfs_icsb_cnts_t *icsbp;
1866 long long lcounter; /* long counter for 64 bit fields */
7a9e02d6 1867 int ret = 0;
8d280b98 1868
20b64285 1869 might_sleep();
8d280b98 1870again:
7a9e02d6
CL
1871 preempt_disable();
1872 icsbp = this_cpu_ptr(mp->m_sb_cnts);
20b64285
DC
1873
1874 /*
1875 * if the counter is disabled, go to slow path
1876 */
8d280b98
DC
1877 if (unlikely(xfs_icsb_counter_disabled(mp, field)))
1878 goto slow_path;
20b64285
DC
1879 xfs_icsb_lock_cntr(icsbp);
1880 if (unlikely(xfs_icsb_counter_disabled(mp, field))) {
1881 xfs_icsb_unlock_cntr(icsbp);
1882 goto slow_path;
1883 }
8d280b98
DC
1884
1885 switch (field) {
1886 case XFS_SBS_ICOUNT:
1887 lcounter = icsbp->icsb_icount;
1888 lcounter += delta;
1889 if (unlikely(lcounter < 0))
20b64285 1890 goto balance_counter;
8d280b98
DC
1891 icsbp->icsb_icount = lcounter;
1892 break;
1893
1894 case XFS_SBS_IFREE:
1895 lcounter = icsbp->icsb_ifree;
1896 lcounter += delta;
1897 if (unlikely(lcounter < 0))
20b64285 1898 goto balance_counter;
8d280b98
DC
1899 icsbp->icsb_ifree = lcounter;
1900 break;
1901
1902 case XFS_SBS_FDBLOCKS:
1903 BUG_ON((mp->m_resblks - mp->m_resblks_avail) != 0);
1904
4be536de 1905 lcounter = icsbp->icsb_fdblocks - XFS_ALLOC_SET_ASIDE(mp);
8d280b98
DC
1906 lcounter += delta;
1907 if (unlikely(lcounter < 0))
20b64285 1908 goto balance_counter;
4be536de 1909 icsbp->icsb_fdblocks = lcounter + XFS_ALLOC_SET_ASIDE(mp);
8d280b98
DC
1910 break;
1911 default:
1912 BUG();
1913 break;
1914 }
01e1b69c 1915 xfs_icsb_unlock_cntr(icsbp);
7a9e02d6 1916 preempt_enable();
8d280b98
DC
1917 return 0;
1918
8d280b98 1919slow_path:
7a9e02d6 1920 preempt_enable();
8d280b98 1921
20b64285
DC
1922 /*
1923 * serialise with a mutex so we don't burn lots of cpu on
1924 * the superblock lock. We still need to hold the superblock
1925 * lock, however, when we modify the global structures.
1926 */
03135cf7 1927 xfs_icsb_lock(mp);
20b64285
DC
1928
1929 /*
1930 * Now running atomically.
1931 *
1932 * If the counter is enabled, someone has beaten us to rebalancing.
1933 * Drop the lock and try again in the fast path....
1934 */
1935 if (!(xfs_icsb_counter_disabled(mp, field))) {
03135cf7 1936 xfs_icsb_unlock(mp);
8d280b98 1937 goto again;
8d280b98
DC
1938 }
1939
20b64285
DC
1940 /*
1941 * The counter is currently disabled. Because we are
1942 * running atomically here, we know a rebalance cannot
1943 * be in progress. Hence we can go straight to operating
1944 * on the global superblock. We do not call xfs_mod_incore_sb()
3685c2a1 1945 * here even though we need to get the m_sb_lock. Doing so
20b64285 1946 * will cause us to re-enter this function and deadlock.
3685c2a1 1947 * Hence we get the m_sb_lock ourselves and then call
20b64285
DC
1948 * xfs_mod_incore_sb_unlocked() as the unlocked path operates
1949 * directly on the global counters.
1950 */
3685c2a1 1951 spin_lock(&mp->m_sb_lock);
8d280b98 1952 ret = xfs_mod_incore_sb_unlocked(mp, field, delta, rsvd);
3685c2a1 1953 spin_unlock(&mp->m_sb_lock);
8d280b98 1954
20b64285
DC
1955 /*
1956 * Now that we've modified the global superblock, we
1957 * may be able to re-enable the distributed counters
1958 * (e.g. lots of space just got freed). After that
1959 * we are done.
1960 */
1961 if (ret != ENOSPC)
45af6c6d 1962 xfs_icsb_balance_counter(mp, field, 0);
03135cf7 1963 xfs_icsb_unlock(mp);
8d280b98 1964 return ret;
8d280b98 1965
20b64285
DC
1966balance_counter:
1967 xfs_icsb_unlock_cntr(icsbp);
7a9e02d6 1968 preempt_enable();
8d280b98 1969
20b64285
DC
1970 /*
1971 * We may have multiple threads here if multiple per-cpu
1972 * counters run dry at the same time. This will mean we can
1973 * do more balances than strictly necessary but it is not
1974 * the common slowpath case.
1975 */
03135cf7 1976 xfs_icsb_lock(mp);
20b64285
DC
1977
1978 /*
1979 * running atomically.
1980 *
1981 * This will leave the counter in the correct state for future
1982 * accesses. After the rebalance, we simply try again and our retry
1983 * will either succeed through the fast path or slow path without
1984 * another balance operation being required.
1985 */
45af6c6d 1986 xfs_icsb_balance_counter(mp, field, delta);
03135cf7 1987 xfs_icsb_unlock(mp);
20b64285 1988 goto again;
8d280b98 1989}
20b64285 1990
8d280b98 1991#endif