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