xfs: drop dmapi hooks
[sfrench/cifs-2.6.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_types.h"
21 #include "xfs_bit.h"
22 #include "xfs_log.h"
23 #include "xfs_inum.h"
24 #include "xfs_trans.h"
25 #include "xfs_sb.h"
26 #include "xfs_ag.h"
27 #include "xfs_dir2.h"
28 #include "xfs_mount.h"
29 #include "xfs_bmap_btree.h"
30 #include "xfs_alloc_btree.h"
31 #include "xfs_ialloc_btree.h"
32 #include "xfs_dir2_sf.h"
33 #include "xfs_attr_sf.h"
34 #include "xfs_dinode.h"
35 #include "xfs_inode.h"
36 #include "xfs_btree.h"
37 #include "xfs_ialloc.h"
38 #include "xfs_alloc.h"
39 #include "xfs_rtalloc.h"
40 #include "xfs_bmap.h"
41 #include "xfs_error.h"
42 #include "xfs_rw.h"
43 #include "xfs_quota.h"
44 #include "xfs_fsops.h"
45 #include "xfs_utils.h"
46 #include "xfs_trace.h"
47
48
49 STATIC void     xfs_unmountfs_wait(xfs_mount_t *);
50
51
52 #ifdef HAVE_PERCPU_SB
53 STATIC void     xfs_icsb_balance_counter(xfs_mount_t *, xfs_sb_field_t,
54                                                 int);
55 STATIC void     xfs_icsb_balance_counter_locked(xfs_mount_t *, xfs_sb_field_t,
56                                                 int);
57 STATIC int      xfs_icsb_modify_counters(xfs_mount_t *, xfs_sb_field_t,
58                                                 int64_t, int);
59 STATIC void     xfs_icsb_disable_counter(xfs_mount_t *, xfs_sb_field_t);
60
61 #else
62
63 #define xfs_icsb_balance_counter(mp, a, b)              do { } while (0)
64 #define xfs_icsb_balance_counter_locked(mp, a, b)       do { } while (0)
65 #define xfs_icsb_modify_counters(mp, a, b, c)           do { } while (0)
66
67 #endif
68
69 static const struct {
70         short offset;
71         short type;     /* 0 = integer
72                          * 1 = binary / string (no translation)
73                          */
74 } xfs_sb_info[] = {
75     { offsetof(xfs_sb_t, sb_magicnum),   0 },
76     { offsetof(xfs_sb_t, sb_blocksize),  0 },
77     { offsetof(xfs_sb_t, sb_dblocks),    0 },
78     { offsetof(xfs_sb_t, sb_rblocks),    0 },
79     { offsetof(xfs_sb_t, sb_rextents),   0 },
80     { offsetof(xfs_sb_t, sb_uuid),       1 },
81     { offsetof(xfs_sb_t, sb_logstart),   0 },
82     { offsetof(xfs_sb_t, sb_rootino),    0 },
83     { offsetof(xfs_sb_t, sb_rbmino),     0 },
84     { offsetof(xfs_sb_t, sb_rsumino),    0 },
85     { offsetof(xfs_sb_t, sb_rextsize),   0 },
86     { offsetof(xfs_sb_t, sb_agblocks),   0 },
87     { offsetof(xfs_sb_t, sb_agcount),    0 },
88     { offsetof(xfs_sb_t, sb_rbmblocks),  0 },
89     { offsetof(xfs_sb_t, sb_logblocks),  0 },
90     { offsetof(xfs_sb_t, sb_versionnum), 0 },
91     { offsetof(xfs_sb_t, sb_sectsize),   0 },
92     { offsetof(xfs_sb_t, sb_inodesize),  0 },
93     { offsetof(xfs_sb_t, sb_inopblock),  0 },
94     { offsetof(xfs_sb_t, sb_fname[0]),   1 },
95     { offsetof(xfs_sb_t, sb_blocklog),   0 },
96     { offsetof(xfs_sb_t, sb_sectlog),    0 },
97     { offsetof(xfs_sb_t, sb_inodelog),   0 },
98     { offsetof(xfs_sb_t, sb_inopblog),   0 },
99     { offsetof(xfs_sb_t, sb_agblklog),   0 },
100     { offsetof(xfs_sb_t, sb_rextslog),   0 },
101     { offsetof(xfs_sb_t, sb_inprogress), 0 },
102     { offsetof(xfs_sb_t, sb_imax_pct),   0 },
103     { offsetof(xfs_sb_t, sb_icount),     0 },
104     { offsetof(xfs_sb_t, sb_ifree),      0 },
105     { offsetof(xfs_sb_t, sb_fdblocks),   0 },
106     { offsetof(xfs_sb_t, sb_frextents),  0 },
107     { offsetof(xfs_sb_t, sb_uquotino),   0 },
108     { offsetof(xfs_sb_t, sb_gquotino),   0 },
109     { offsetof(xfs_sb_t, sb_qflags),     0 },
110     { offsetof(xfs_sb_t, sb_flags),      0 },
111     { offsetof(xfs_sb_t, sb_shared_vn),  0 },
112     { offsetof(xfs_sb_t, sb_inoalignmt), 0 },
113     { offsetof(xfs_sb_t, sb_unit),       0 },
114     { offsetof(xfs_sb_t, sb_width),      0 },
115     { offsetof(xfs_sb_t, sb_dirblklog),  0 },
116     { offsetof(xfs_sb_t, sb_logsectlog), 0 },
117     { offsetof(xfs_sb_t, sb_logsectsize),0 },
118     { offsetof(xfs_sb_t, sb_logsunit),   0 },
119     { offsetof(xfs_sb_t, sb_features2),  0 },
120     { offsetof(xfs_sb_t, sb_bad_features2), 0 },
121     { sizeof(xfs_sb_t),                  0 }
122 };
123
124 static DEFINE_MUTEX(xfs_uuid_table_mutex);
125 static int xfs_uuid_table_size;
126 static uuid_t *xfs_uuid_table;
127
128 /*
129  * See if the UUID is unique among mounted XFS filesystems.
130  * Mount fails if UUID is nil or a FS with the same UUID is already mounted.
131  */
132 STATIC int
133 xfs_uuid_mount(
134         struct xfs_mount        *mp)
135 {
136         uuid_t                  *uuid = &mp->m_sb.sb_uuid;
137         int                     hole, i;
138
139         if (mp->m_flags & XFS_MOUNT_NOUUID)
140                 return 0;
141
142         if (uuid_is_nil(uuid)) {
143                 cmn_err(CE_WARN,
144                         "XFS: Filesystem %s has nil UUID - can't mount",
145                         mp->m_fsname);
146                 return XFS_ERROR(EINVAL);
147         }
148
149         mutex_lock(&xfs_uuid_table_mutex);
150         for (i = 0, hole = -1; i < xfs_uuid_table_size; i++) {
151                 if (uuid_is_nil(&xfs_uuid_table[i])) {
152                         hole = i;
153                         continue;
154                 }
155                 if (uuid_equal(uuid, &xfs_uuid_table[i]))
156                         goto out_duplicate;
157         }
158
159         if (hole < 0) {
160                 xfs_uuid_table = kmem_realloc(xfs_uuid_table,
161                         (xfs_uuid_table_size + 1) * sizeof(*xfs_uuid_table),
162                         xfs_uuid_table_size  * sizeof(*xfs_uuid_table),
163                         KM_SLEEP);
164                 hole = xfs_uuid_table_size++;
165         }
166         xfs_uuid_table[hole] = *uuid;
167         mutex_unlock(&xfs_uuid_table_mutex);
168
169         return 0;
170
171  out_duplicate:
172         mutex_unlock(&xfs_uuid_table_mutex);
173         cmn_err(CE_WARN, "XFS: Filesystem %s has duplicate UUID - can't mount",
174                          mp->m_fsname);
175         return XFS_ERROR(EINVAL);
176 }
177
178 STATIC void
179 xfs_uuid_unmount(
180         struct xfs_mount        *mp)
181 {
182         uuid_t                  *uuid = &mp->m_sb.sb_uuid;
183         int                     i;
184
185         if (mp->m_flags & XFS_MOUNT_NOUUID)
186                 return;
187
188         mutex_lock(&xfs_uuid_table_mutex);
189         for (i = 0; i < xfs_uuid_table_size; i++) {
190                 if (uuid_is_nil(&xfs_uuid_table[i]))
191                         continue;
192                 if (!uuid_equal(uuid, &xfs_uuid_table[i]))
193                         continue;
194                 memset(&xfs_uuid_table[i], 0, sizeof(uuid_t));
195                 break;
196         }
197         ASSERT(i < xfs_uuid_table_size);
198         mutex_unlock(&xfs_uuid_table_mutex);
199 }
200
201
202 /*
203  * Reference counting access wrappers to the perag structures.
204  */
205 struct xfs_perag *
206 xfs_perag_get(struct xfs_mount *mp, xfs_agnumber_t agno)
207 {
208         struct xfs_perag        *pag;
209         int                     ref = 0;
210
211         spin_lock(&mp->m_perag_lock);
212         pag = radix_tree_lookup(&mp->m_perag_tree, agno);
213         if (pag) {
214                 ASSERT(atomic_read(&pag->pag_ref) >= 0);
215                 /* catch leaks in the positive direction during testing */
216                 ASSERT(atomic_read(&pag->pag_ref) < 1000);
217                 ref = atomic_inc_return(&pag->pag_ref);
218         }
219         spin_unlock(&mp->m_perag_lock);
220         trace_xfs_perag_get(mp, agno, ref, _RET_IP_);
221         return pag;
222 }
223
224 void
225 xfs_perag_put(struct xfs_perag *pag)
226 {
227         int     ref;
228
229         ASSERT(atomic_read(&pag->pag_ref) > 0);
230         ref = atomic_dec_return(&pag->pag_ref);
231         trace_xfs_perag_put(pag->pag_mount, pag->pag_agno, ref, _RET_IP_);
232 }
233
234 /*
235  * Free up the resources associated with a mount structure.  Assume that
236  * the structure was initially zeroed, so we can tell which fields got
237  * initialized.
238  */
239 STATIC void
240 xfs_free_perag(
241         xfs_mount_t     *mp)
242 {
243         xfs_agnumber_t  agno;
244         struct xfs_perag *pag;
245
246         for (agno = 0; agno < mp->m_sb.sb_agcount; agno++) {
247                 spin_lock(&mp->m_perag_lock);
248                 pag = radix_tree_delete(&mp->m_perag_tree, agno);
249                 ASSERT(pag);
250                 ASSERT(atomic_read(&pag->pag_ref) == 0);
251                 spin_unlock(&mp->m_perag_lock);
252                 kmem_free(pag);
253         }
254 }
255
256 /*
257  * Check size of device based on the (data/realtime) block count.
258  * Note: this check is used by the growfs code as well as mount.
259  */
260 int
261 xfs_sb_validate_fsb_count(
262         xfs_sb_t        *sbp,
263         __uint64_t      nblocks)
264 {
265         ASSERT(PAGE_SHIFT >= sbp->sb_blocklog);
266         ASSERT(sbp->sb_blocklog >= BBSHIFT);
267
268 #if XFS_BIG_BLKNOS     /* Limited by ULONG_MAX of page cache index */
269         if (nblocks >> (PAGE_CACHE_SHIFT - sbp->sb_blocklog) > ULONG_MAX)
270                 return EFBIG;
271 #else                  /* Limited by UINT_MAX of sectors */
272         if (nblocks << (sbp->sb_blocklog - BBSHIFT) > UINT_MAX)
273                 return EFBIG;
274 #endif
275         return 0;
276 }
277
278 /*
279  * Check the validity of the SB found.
280  */
281 STATIC int
282 xfs_mount_validate_sb(
283         xfs_mount_t     *mp,
284         xfs_sb_t        *sbp,
285         int             flags)
286 {
287         /*
288          * If the log device and data device have the
289          * same device number, the log is internal.
290          * Consequently, the sb_logstart should be non-zero.  If
291          * we have a zero sb_logstart in this case, we may be trying to mount
292          * a volume filesystem in a non-volume manner.
293          */
294         if (sbp->sb_magicnum != XFS_SB_MAGIC) {
295                 xfs_fs_mount_cmn_err(flags, "bad magic number");
296                 return XFS_ERROR(EWRONGFS);
297         }
298
299         if (!xfs_sb_good_version(sbp)) {
300                 xfs_fs_mount_cmn_err(flags, "bad version");
301                 return XFS_ERROR(EWRONGFS);
302         }
303
304         if (unlikely(
305             sbp->sb_logstart == 0 && mp->m_logdev_targp == mp->m_ddev_targp)) {
306                 xfs_fs_mount_cmn_err(flags,
307                         "filesystem is marked as having an external log; "
308                         "specify logdev on the\nmount command line.");
309                 return XFS_ERROR(EINVAL);
310         }
311
312         if (unlikely(
313             sbp->sb_logstart != 0 && mp->m_logdev_targp != mp->m_ddev_targp)) {
314                 xfs_fs_mount_cmn_err(flags,
315                         "filesystem is marked as having an internal log; "
316                         "do not specify logdev on\nthe mount command line.");
317                 return XFS_ERROR(EINVAL);
318         }
319
320         /*
321          * More sanity checking. These were stolen directly from
322          * xfs_repair.
323          */
324         if (unlikely(
325             sbp->sb_agcount <= 0                                        ||
326             sbp->sb_sectsize < XFS_MIN_SECTORSIZE                       ||
327             sbp->sb_sectsize > XFS_MAX_SECTORSIZE                       ||
328             sbp->sb_sectlog < XFS_MIN_SECTORSIZE_LOG                    ||
329             sbp->sb_sectlog > XFS_MAX_SECTORSIZE_LOG                    ||
330             sbp->sb_sectsize != (1 << sbp->sb_sectlog)                  ||
331             sbp->sb_blocksize < XFS_MIN_BLOCKSIZE                       ||
332             sbp->sb_blocksize > XFS_MAX_BLOCKSIZE                       ||
333             sbp->sb_blocklog < XFS_MIN_BLOCKSIZE_LOG                    ||
334             sbp->sb_blocklog > XFS_MAX_BLOCKSIZE_LOG                    ||
335             sbp->sb_blocksize != (1 << sbp->sb_blocklog)                ||
336             sbp->sb_inodesize < XFS_DINODE_MIN_SIZE                     ||
337             sbp->sb_inodesize > XFS_DINODE_MAX_SIZE                     ||
338             sbp->sb_inodelog < XFS_DINODE_MIN_LOG                       ||
339             sbp->sb_inodelog > XFS_DINODE_MAX_LOG                       ||
340             sbp->sb_inodesize != (1 << sbp->sb_inodelog)                ||
341             (sbp->sb_blocklog - sbp->sb_inodelog != sbp->sb_inopblog)   ||
342             (sbp->sb_rextsize * sbp->sb_blocksize > XFS_MAX_RTEXTSIZE)  ||
343             (sbp->sb_rextsize * sbp->sb_blocksize < XFS_MIN_RTEXTSIZE)  ||
344             (sbp->sb_imax_pct > 100 /* zero sb_imax_pct is valid */))) {
345                 xfs_fs_mount_cmn_err(flags, "SB sanity check 1 failed");
346                 return XFS_ERROR(EFSCORRUPTED);
347         }
348
349         /*
350          * Sanity check AG count, size fields against data size field
351          */
352         if (unlikely(
353             sbp->sb_dblocks == 0 ||
354             sbp->sb_dblocks >
355              (xfs_drfsbno_t)sbp->sb_agcount * sbp->sb_agblocks ||
356             sbp->sb_dblocks < (xfs_drfsbno_t)(sbp->sb_agcount - 1) *
357                               sbp->sb_agblocks + XFS_MIN_AG_BLOCKS)) {
358                 xfs_fs_mount_cmn_err(flags, "SB sanity check 2 failed");
359                 return XFS_ERROR(EFSCORRUPTED);
360         }
361
362         /*
363          * Until this is fixed only page-sized or smaller data blocks work.
364          */
365         if (unlikely(sbp->sb_blocksize > PAGE_SIZE)) {
366                 xfs_fs_mount_cmn_err(flags,
367                         "file system with blocksize %d bytes",
368                         sbp->sb_blocksize);
369                 xfs_fs_mount_cmn_err(flags,
370                         "only pagesize (%ld) or less will currently work.",
371                         PAGE_SIZE);
372                 return XFS_ERROR(ENOSYS);
373         }
374
375         /*
376          * Currently only very few inode sizes are supported.
377          */
378         switch (sbp->sb_inodesize) {
379         case 256:
380         case 512:
381         case 1024:
382         case 2048:
383                 break;
384         default:
385                 xfs_fs_mount_cmn_err(flags,
386                         "inode size of %d bytes not supported",
387                         sbp->sb_inodesize);
388                 return XFS_ERROR(ENOSYS);
389         }
390
391         if (xfs_sb_validate_fsb_count(sbp, sbp->sb_dblocks) ||
392             xfs_sb_validate_fsb_count(sbp, sbp->sb_rblocks)) {
393                 xfs_fs_mount_cmn_err(flags,
394                         "file system too large to be mounted on this system.");
395                 return XFS_ERROR(EFBIG);
396         }
397
398         if (unlikely(sbp->sb_inprogress)) {
399                 xfs_fs_mount_cmn_err(flags, "file system busy");
400                 return XFS_ERROR(EFSCORRUPTED);
401         }
402
403         /*
404          * Version 1 directory format has never worked on Linux.
405          */
406         if (unlikely(!xfs_sb_version_hasdirv2(sbp))) {
407                 xfs_fs_mount_cmn_err(flags,
408                         "file system using version 1 directory format");
409                 return XFS_ERROR(ENOSYS);
410         }
411
412         return 0;
413 }
414
415 int
416 xfs_initialize_perag(
417         xfs_mount_t     *mp,
418         xfs_agnumber_t  agcount,
419         xfs_agnumber_t  *maxagi)
420 {
421         xfs_agnumber_t  index, max_metadata;
422         xfs_agnumber_t  first_initialised = 0;
423         xfs_perag_t     *pag;
424         xfs_agino_t     agino;
425         xfs_ino_t       ino;
426         xfs_sb_t        *sbp = &mp->m_sb;
427         int             error = -ENOMEM;
428
429         /*
430          * Walk the current per-ag tree so we don't try to initialise AGs
431          * that already exist (growfs case). Allocate and insert all the
432          * AGs we don't find ready for initialisation.
433          */
434         for (index = 0; index < agcount; index++) {
435                 pag = xfs_perag_get(mp, index);
436                 if (pag) {
437                         xfs_perag_put(pag);
438                         continue;
439                 }
440                 if (!first_initialised)
441                         first_initialised = index;
442
443                 pag = kmem_zalloc(sizeof(*pag), KM_MAYFAIL);
444                 if (!pag)
445                         goto out_unwind;
446                 pag->pag_agno = index;
447                 pag->pag_mount = mp;
448                 rwlock_init(&pag->pag_ici_lock);
449                 INIT_RADIX_TREE(&pag->pag_ici_root, GFP_ATOMIC);
450
451                 if (radix_tree_preload(GFP_NOFS))
452                         goto out_unwind;
453
454                 spin_lock(&mp->m_perag_lock);
455                 if (radix_tree_insert(&mp->m_perag_tree, index, pag)) {
456                         BUG();
457                         spin_unlock(&mp->m_perag_lock);
458                         radix_tree_preload_end();
459                         error = -EEXIST;
460                         goto out_unwind;
461                 }
462                 spin_unlock(&mp->m_perag_lock);
463                 radix_tree_preload_end();
464         }
465
466         /*
467          * If we mount with the inode64 option, or no inode overflows
468          * the legacy 32-bit address space clear the inode32 option.
469          */
470         agino = XFS_OFFBNO_TO_AGINO(mp, sbp->sb_agblocks - 1, 0);
471         ino = XFS_AGINO_TO_INO(mp, agcount - 1, agino);
472
473         if ((mp->m_flags & XFS_MOUNT_SMALL_INUMS) && ino > XFS_MAXINUMBER_32)
474                 mp->m_flags |= XFS_MOUNT_32BITINODES;
475         else
476                 mp->m_flags &= ~XFS_MOUNT_32BITINODES;
477
478         if (mp->m_flags & XFS_MOUNT_32BITINODES) {
479                 /*
480                  * Calculate how much should be reserved for inodes to meet
481                  * the max inode percentage.
482                  */
483                 if (mp->m_maxicount) {
484                         __uint64_t      icount;
485
486                         icount = sbp->sb_dblocks * sbp->sb_imax_pct;
487                         do_div(icount, 100);
488                         icount += sbp->sb_agblocks - 1;
489                         do_div(icount, sbp->sb_agblocks);
490                         max_metadata = icount;
491                 } else {
492                         max_metadata = agcount;
493                 }
494
495                 for (index = 0; index < agcount; index++) {
496                         ino = XFS_AGINO_TO_INO(mp, index, agino);
497                         if (ino > XFS_MAXINUMBER_32) {
498                                 index++;
499                                 break;
500                         }
501
502                         pag = xfs_perag_get(mp, index);
503                         pag->pagi_inodeok = 1;
504                         if (index < max_metadata)
505                                 pag->pagf_metadata = 1;
506                         xfs_perag_put(pag);
507                 }
508         } else {
509                 for (index = 0; index < agcount; index++) {
510                         pag = xfs_perag_get(mp, index);
511                         pag->pagi_inodeok = 1;
512                         xfs_perag_put(pag);
513                 }
514         }
515
516         if (maxagi)
517                 *maxagi = index;
518         return 0;
519
520 out_unwind:
521         kmem_free(pag);
522         for (; index > first_initialised; index--) {
523                 pag = radix_tree_delete(&mp->m_perag_tree, index);
524                 kmem_free(pag);
525         }
526         return error;
527 }
528
529 void
530 xfs_sb_from_disk(
531         xfs_sb_t        *to,
532         xfs_dsb_t       *from)
533 {
534         to->sb_magicnum = be32_to_cpu(from->sb_magicnum);
535         to->sb_blocksize = be32_to_cpu(from->sb_blocksize);
536         to->sb_dblocks = be64_to_cpu(from->sb_dblocks);
537         to->sb_rblocks = be64_to_cpu(from->sb_rblocks);
538         to->sb_rextents = be64_to_cpu(from->sb_rextents);
539         memcpy(&to->sb_uuid, &from->sb_uuid, sizeof(to->sb_uuid));
540         to->sb_logstart = be64_to_cpu(from->sb_logstart);
541         to->sb_rootino = be64_to_cpu(from->sb_rootino);
542         to->sb_rbmino = be64_to_cpu(from->sb_rbmino);
543         to->sb_rsumino = be64_to_cpu(from->sb_rsumino);
544         to->sb_rextsize = be32_to_cpu(from->sb_rextsize);
545         to->sb_agblocks = be32_to_cpu(from->sb_agblocks);
546         to->sb_agcount = be32_to_cpu(from->sb_agcount);
547         to->sb_rbmblocks = be32_to_cpu(from->sb_rbmblocks);
548         to->sb_logblocks = be32_to_cpu(from->sb_logblocks);
549         to->sb_versionnum = be16_to_cpu(from->sb_versionnum);
550         to->sb_sectsize = be16_to_cpu(from->sb_sectsize);
551         to->sb_inodesize = be16_to_cpu(from->sb_inodesize);
552         to->sb_inopblock = be16_to_cpu(from->sb_inopblock);
553         memcpy(&to->sb_fname, &from->sb_fname, sizeof(to->sb_fname));
554         to->sb_blocklog = from->sb_blocklog;
555         to->sb_sectlog = from->sb_sectlog;
556         to->sb_inodelog = from->sb_inodelog;
557         to->sb_inopblog = from->sb_inopblog;
558         to->sb_agblklog = from->sb_agblklog;
559         to->sb_rextslog = from->sb_rextslog;
560         to->sb_inprogress = from->sb_inprogress;
561         to->sb_imax_pct = from->sb_imax_pct;
562         to->sb_icount = be64_to_cpu(from->sb_icount);
563         to->sb_ifree = be64_to_cpu(from->sb_ifree);
564         to->sb_fdblocks = be64_to_cpu(from->sb_fdblocks);
565         to->sb_frextents = be64_to_cpu(from->sb_frextents);
566         to->sb_uquotino = be64_to_cpu(from->sb_uquotino);
567         to->sb_gquotino = be64_to_cpu(from->sb_gquotino);
568         to->sb_qflags = be16_to_cpu(from->sb_qflags);
569         to->sb_flags = from->sb_flags;
570         to->sb_shared_vn = from->sb_shared_vn;
571         to->sb_inoalignmt = be32_to_cpu(from->sb_inoalignmt);
572         to->sb_unit = be32_to_cpu(from->sb_unit);
573         to->sb_width = be32_to_cpu(from->sb_width);
574         to->sb_dirblklog = from->sb_dirblklog;
575         to->sb_logsectlog = from->sb_logsectlog;
576         to->sb_logsectsize = be16_to_cpu(from->sb_logsectsize);
577         to->sb_logsunit = be32_to_cpu(from->sb_logsunit);
578         to->sb_features2 = be32_to_cpu(from->sb_features2);
579         to->sb_bad_features2 = be32_to_cpu(from->sb_bad_features2);
580 }
581
582 /*
583  * Copy in core superblock to ondisk one.
584  *
585  * The fields argument is mask of superblock fields to copy.
586  */
587 void
588 xfs_sb_to_disk(
589         xfs_dsb_t       *to,
590         xfs_sb_t        *from,
591         __int64_t       fields)
592 {
593         xfs_caddr_t     to_ptr = (xfs_caddr_t)to;
594         xfs_caddr_t     from_ptr = (xfs_caddr_t)from;
595         xfs_sb_field_t  f;
596         int             first;
597         int             size;
598
599         ASSERT(fields);
600         if (!fields)
601                 return;
602
603         while (fields) {
604                 f = (xfs_sb_field_t)xfs_lowbit64((__uint64_t)fields);
605                 first = xfs_sb_info[f].offset;
606                 size = xfs_sb_info[f + 1].offset - first;
607
608                 ASSERT(xfs_sb_info[f].type == 0 || xfs_sb_info[f].type == 1);
609
610                 if (size == 1 || xfs_sb_info[f].type == 1) {
611                         memcpy(to_ptr + first, from_ptr + first, size);
612                 } else {
613                         switch (size) {
614                         case 2:
615                                 *(__be16 *)(to_ptr + first) =
616                                         cpu_to_be16(*(__u16 *)(from_ptr + first));
617                                 break;
618                         case 4:
619                                 *(__be32 *)(to_ptr + first) =
620                                         cpu_to_be32(*(__u32 *)(from_ptr + first));
621                                 break;
622                         case 8:
623                                 *(__be64 *)(to_ptr + first) =
624                                         cpu_to_be64(*(__u64 *)(from_ptr + first));
625                                 break;
626                         default:
627                                 ASSERT(0);
628                         }
629                 }
630
631                 fields &= ~(1LL << f);
632         }
633 }
634
635 /*
636  * xfs_readsb
637  *
638  * Does the initial read of the superblock.
639  */
640 int
641 xfs_readsb(xfs_mount_t *mp, int flags)
642 {
643         unsigned int    sector_size;
644         unsigned int    extra_flags;
645         xfs_buf_t       *bp;
646         int             error;
647
648         ASSERT(mp->m_sb_bp == NULL);
649         ASSERT(mp->m_ddev_targp != NULL);
650
651         /*
652          * Allocate a (locked) buffer to hold the superblock.
653          * This will be kept around at all times to optimize
654          * access to the superblock.
655          */
656         sector_size = xfs_getsize_buftarg(mp->m_ddev_targp);
657         extra_flags = XBF_LOCK | XBF_FS_MANAGED | XBF_MAPPED;
658
659         bp = xfs_buf_read(mp->m_ddev_targp, XFS_SB_DADDR, BTOBB(sector_size),
660                           extra_flags);
661         if (!bp || XFS_BUF_ISERROR(bp)) {
662                 xfs_fs_mount_cmn_err(flags, "SB read failed");
663                 error = bp ? XFS_BUF_GETERROR(bp) : ENOMEM;
664                 goto fail;
665         }
666         ASSERT(XFS_BUF_ISBUSY(bp));
667         ASSERT(XFS_BUF_VALUSEMA(bp) <= 0);
668
669         /*
670          * Initialize the mount structure from the superblock.
671          * But first do some basic consistency checking.
672          */
673         xfs_sb_from_disk(&mp->m_sb, XFS_BUF_TO_SBP(bp));
674
675         error = xfs_mount_validate_sb(mp, &(mp->m_sb), flags);
676         if (error) {
677                 xfs_fs_mount_cmn_err(flags, "SB validate failed");
678                 goto fail;
679         }
680
681         /*
682          * We must be able to do sector-sized and sector-aligned IO.
683          */
684         if (sector_size > mp->m_sb.sb_sectsize) {
685                 xfs_fs_mount_cmn_err(flags,
686                         "device supports only %u byte sectors (not %u)",
687                         sector_size, mp->m_sb.sb_sectsize);
688                 error = ENOSYS;
689                 goto fail;
690         }
691
692         /*
693          * If device sector size is smaller than the superblock size,
694          * re-read the superblock so the buffer is correctly sized.
695          */
696         if (sector_size < mp->m_sb.sb_sectsize) {
697                 XFS_BUF_UNMANAGE(bp);
698                 xfs_buf_relse(bp);
699                 sector_size = mp->m_sb.sb_sectsize;
700                 bp = xfs_buf_read(mp->m_ddev_targp, XFS_SB_DADDR,
701                                   BTOBB(sector_size), extra_flags);
702                 if (!bp || XFS_BUF_ISERROR(bp)) {
703                         xfs_fs_mount_cmn_err(flags, "SB re-read failed");
704                         error = bp ? XFS_BUF_GETERROR(bp) : ENOMEM;
705                         goto fail;
706                 }
707                 ASSERT(XFS_BUF_ISBUSY(bp));
708                 ASSERT(XFS_BUF_VALUSEMA(bp) <= 0);
709         }
710
711         /* Initialize per-cpu counters */
712         xfs_icsb_reinit_counters(mp);
713
714         mp->m_sb_bp = bp;
715         xfs_buf_relse(bp);
716         ASSERT(XFS_BUF_VALUSEMA(bp) > 0);
717         return 0;
718
719  fail:
720         if (bp) {
721                 XFS_BUF_UNMANAGE(bp);
722                 xfs_buf_relse(bp);
723         }
724         return error;
725 }
726
727
728 /*
729  * xfs_mount_common
730  *
731  * Mount initialization code establishing various mount
732  * fields from the superblock associated with the given
733  * mount structure
734  */
735 STATIC void
736 xfs_mount_common(xfs_mount_t *mp, xfs_sb_t *sbp)
737 {
738         mp->m_agfrotor = mp->m_agirotor = 0;
739         spin_lock_init(&mp->m_agirotor_lock);
740         mp->m_maxagi = mp->m_sb.sb_agcount;
741         mp->m_blkbit_log = sbp->sb_blocklog + XFS_NBBYLOG;
742         mp->m_blkbb_log = sbp->sb_blocklog - BBSHIFT;
743         mp->m_sectbb_log = sbp->sb_sectlog - BBSHIFT;
744         mp->m_agno_log = xfs_highbit32(sbp->sb_agcount - 1) + 1;
745         mp->m_agino_log = sbp->sb_inopblog + sbp->sb_agblklog;
746         mp->m_blockmask = sbp->sb_blocksize - 1;
747         mp->m_blockwsize = sbp->sb_blocksize >> XFS_WORDLOG;
748         mp->m_blockwmask = mp->m_blockwsize - 1;
749
750         mp->m_alloc_mxr[0] = xfs_allocbt_maxrecs(mp, sbp->sb_blocksize, 1);
751         mp->m_alloc_mxr[1] = xfs_allocbt_maxrecs(mp, sbp->sb_blocksize, 0);
752         mp->m_alloc_mnr[0] = mp->m_alloc_mxr[0] / 2;
753         mp->m_alloc_mnr[1] = mp->m_alloc_mxr[1] / 2;
754
755         mp->m_inobt_mxr[0] = xfs_inobt_maxrecs(mp, sbp->sb_blocksize, 1);
756         mp->m_inobt_mxr[1] = xfs_inobt_maxrecs(mp, sbp->sb_blocksize, 0);
757         mp->m_inobt_mnr[0] = mp->m_inobt_mxr[0] / 2;
758         mp->m_inobt_mnr[1] = mp->m_inobt_mxr[1] / 2;
759
760         mp->m_bmap_dmxr[0] = xfs_bmbt_maxrecs(mp, sbp->sb_blocksize, 1);
761         mp->m_bmap_dmxr[1] = xfs_bmbt_maxrecs(mp, sbp->sb_blocksize, 0);
762         mp->m_bmap_dmnr[0] = mp->m_bmap_dmxr[0] / 2;
763         mp->m_bmap_dmnr[1] = mp->m_bmap_dmxr[1] / 2;
764
765         mp->m_bsize = XFS_FSB_TO_BB(mp, 1);
766         mp->m_ialloc_inos = (int)MAX((__uint16_t)XFS_INODES_PER_CHUNK,
767                                         sbp->sb_inopblock);
768         mp->m_ialloc_blks = mp->m_ialloc_inos >> sbp->sb_inopblog;
769 }
770
771 /*
772  * xfs_initialize_perag_data
773  *
774  * Read in each per-ag structure so we can count up the number of
775  * allocated inodes, free inodes and used filesystem blocks as this
776  * information is no longer persistent in the superblock. Once we have
777  * this information, write it into the in-core superblock structure.
778  */
779 STATIC int
780 xfs_initialize_perag_data(xfs_mount_t *mp, xfs_agnumber_t agcount)
781 {
782         xfs_agnumber_t  index;
783         xfs_perag_t     *pag;
784         xfs_sb_t        *sbp = &mp->m_sb;
785         uint64_t        ifree = 0;
786         uint64_t        ialloc = 0;
787         uint64_t        bfree = 0;
788         uint64_t        bfreelst = 0;
789         uint64_t        btree = 0;
790         int             error;
791
792         for (index = 0; index < agcount; index++) {
793                 /*
794                  * read the agf, then the agi. This gets us
795                  * all the information we need and populates the
796                  * per-ag structures for us.
797                  */
798                 error = xfs_alloc_pagf_init(mp, NULL, index, 0);
799                 if (error)
800                         return error;
801
802                 error = xfs_ialloc_pagi_init(mp, NULL, index);
803                 if (error)
804                         return error;
805                 pag = xfs_perag_get(mp, index);
806                 ifree += pag->pagi_freecount;
807                 ialloc += pag->pagi_count;
808                 bfree += pag->pagf_freeblks;
809                 bfreelst += pag->pagf_flcount;
810                 btree += pag->pagf_btreeblks;
811                 xfs_perag_put(pag);
812         }
813         /*
814          * Overwrite incore superblock counters with just-read data
815          */
816         spin_lock(&mp->m_sb_lock);
817         sbp->sb_ifree = ifree;
818         sbp->sb_icount = ialloc;
819         sbp->sb_fdblocks = bfree + bfreelst + btree;
820         spin_unlock(&mp->m_sb_lock);
821
822         /* Fixup the per-cpu counters as well. */
823         xfs_icsb_reinit_counters(mp);
824
825         return 0;
826 }
827
828 /*
829  * Update alignment values based on mount options and sb values
830  */
831 STATIC int
832 xfs_update_alignment(xfs_mount_t *mp)
833 {
834         xfs_sb_t        *sbp = &(mp->m_sb);
835
836         if (mp->m_dalign) {
837                 /*
838                  * If stripe unit and stripe width are not multiples
839                  * of the fs blocksize turn off alignment.
840                  */
841                 if ((BBTOB(mp->m_dalign) & mp->m_blockmask) ||
842                     (BBTOB(mp->m_swidth) & mp->m_blockmask)) {
843                         if (mp->m_flags & XFS_MOUNT_RETERR) {
844                                 cmn_err(CE_WARN,
845                                         "XFS: alignment check 1 failed");
846                                 return XFS_ERROR(EINVAL);
847                         }
848                         mp->m_dalign = mp->m_swidth = 0;
849                 } else {
850                         /*
851                          * Convert the stripe unit and width to FSBs.
852                          */
853                         mp->m_dalign = XFS_BB_TO_FSBT(mp, mp->m_dalign);
854                         if (mp->m_dalign && (sbp->sb_agblocks % mp->m_dalign)) {
855                                 if (mp->m_flags & XFS_MOUNT_RETERR) {
856                                         return XFS_ERROR(EINVAL);
857                                 }
858                                 xfs_fs_cmn_err(CE_WARN, mp,
859 "stripe alignment turned off: sunit(%d)/swidth(%d) incompatible with agsize(%d)",
860                                         mp->m_dalign, mp->m_swidth,
861                                         sbp->sb_agblocks);
862
863                                 mp->m_dalign = 0;
864                                 mp->m_swidth = 0;
865                         } else if (mp->m_dalign) {
866                                 mp->m_swidth = XFS_BB_TO_FSBT(mp, mp->m_swidth);
867                         } else {
868                                 if (mp->m_flags & XFS_MOUNT_RETERR) {
869                                         xfs_fs_cmn_err(CE_WARN, mp,
870 "stripe alignment turned off: sunit(%d) less than bsize(%d)",
871                                                 mp->m_dalign,
872                                                 mp->m_blockmask +1);
873                                         return XFS_ERROR(EINVAL);
874                                 }
875                                 mp->m_swidth = 0;
876                         }
877                 }
878
879                 /*
880                  * Update superblock with new values
881                  * and log changes
882                  */
883                 if (xfs_sb_version_hasdalign(sbp)) {
884                         if (sbp->sb_unit != mp->m_dalign) {
885                                 sbp->sb_unit = mp->m_dalign;
886                                 mp->m_update_flags |= XFS_SB_UNIT;
887                         }
888                         if (sbp->sb_width != mp->m_swidth) {
889                                 sbp->sb_width = mp->m_swidth;
890                                 mp->m_update_flags |= XFS_SB_WIDTH;
891                         }
892                 }
893         } else if ((mp->m_flags & XFS_MOUNT_NOALIGN) != XFS_MOUNT_NOALIGN &&
894                     xfs_sb_version_hasdalign(&mp->m_sb)) {
895                         mp->m_dalign = sbp->sb_unit;
896                         mp->m_swidth = sbp->sb_width;
897         }
898
899         return 0;
900 }
901
902 /*
903  * Set the maximum inode count for this filesystem
904  */
905 STATIC void
906 xfs_set_maxicount(xfs_mount_t *mp)
907 {
908         xfs_sb_t        *sbp = &(mp->m_sb);
909         __uint64_t      icount;
910
911         if (sbp->sb_imax_pct) {
912                 /*
913                  * Make sure the maximum inode count is a multiple
914                  * of the units we allocate inodes in.
915                  */
916                 icount = sbp->sb_dblocks * sbp->sb_imax_pct;
917                 do_div(icount, 100);
918                 do_div(icount, mp->m_ialloc_blks);
919                 mp->m_maxicount = (icount * mp->m_ialloc_blks)  <<
920                                    sbp->sb_inopblog;
921         } else {
922                 mp->m_maxicount = 0;
923         }
924 }
925
926 /*
927  * Set the default minimum read and write sizes unless
928  * already specified in a mount option.
929  * We use smaller I/O sizes when the file system
930  * is being used for NFS service (wsync mount option).
931  */
932 STATIC void
933 xfs_set_rw_sizes(xfs_mount_t *mp)
934 {
935         xfs_sb_t        *sbp = &(mp->m_sb);
936         int             readio_log, writeio_log;
937
938         if (!(mp->m_flags & XFS_MOUNT_DFLT_IOSIZE)) {
939                 if (mp->m_flags & XFS_MOUNT_WSYNC) {
940                         readio_log = XFS_WSYNC_READIO_LOG;
941                         writeio_log = XFS_WSYNC_WRITEIO_LOG;
942                 } else {
943                         readio_log = XFS_READIO_LOG_LARGE;
944                         writeio_log = XFS_WRITEIO_LOG_LARGE;
945                 }
946         } else {
947                 readio_log = mp->m_readio_log;
948                 writeio_log = mp->m_writeio_log;
949         }
950
951         if (sbp->sb_blocklog > readio_log) {
952                 mp->m_readio_log = sbp->sb_blocklog;
953         } else {
954                 mp->m_readio_log = readio_log;
955         }
956         mp->m_readio_blocks = 1 << (mp->m_readio_log - sbp->sb_blocklog);
957         if (sbp->sb_blocklog > writeio_log) {
958                 mp->m_writeio_log = sbp->sb_blocklog;
959         } else {
960                 mp->m_writeio_log = writeio_log;
961         }
962         mp->m_writeio_blocks = 1 << (mp->m_writeio_log - sbp->sb_blocklog);
963 }
964
965 /*
966  * Set whether we're using inode alignment.
967  */
968 STATIC void
969 xfs_set_inoalignment(xfs_mount_t *mp)
970 {
971         if (xfs_sb_version_hasalign(&mp->m_sb) &&
972             mp->m_sb.sb_inoalignmt >=
973             XFS_B_TO_FSBT(mp, mp->m_inode_cluster_size))
974                 mp->m_inoalign_mask = mp->m_sb.sb_inoalignmt - 1;
975         else
976                 mp->m_inoalign_mask = 0;
977         /*
978          * If we are using stripe alignment, check whether
979          * the stripe unit is a multiple of the inode alignment
980          */
981         if (mp->m_dalign && mp->m_inoalign_mask &&
982             !(mp->m_dalign & mp->m_inoalign_mask))
983                 mp->m_sinoalign = mp->m_dalign;
984         else
985                 mp->m_sinoalign = 0;
986 }
987
988 /*
989  * Check that the data (and log if separate) are an ok size.
990  */
991 STATIC int
992 xfs_check_sizes(xfs_mount_t *mp)
993 {
994         xfs_buf_t       *bp;
995         xfs_daddr_t     d;
996         int             error;
997
998         d = (xfs_daddr_t)XFS_FSB_TO_BB(mp, mp->m_sb.sb_dblocks);
999         if (XFS_BB_TO_FSB(mp, d) != mp->m_sb.sb_dblocks) {
1000                 cmn_err(CE_WARN, "XFS: size check 1 failed");
1001                 return XFS_ERROR(EFBIG);
1002         }
1003         error = xfs_read_buf(mp, mp->m_ddev_targp,
1004                              d - XFS_FSS_TO_BB(mp, 1),
1005                              XFS_FSS_TO_BB(mp, 1), 0, &bp);
1006         if (!error) {
1007                 xfs_buf_relse(bp);
1008         } else {
1009                 cmn_err(CE_WARN, "XFS: size check 2 failed");
1010                 if (error == ENOSPC)
1011                         error = XFS_ERROR(EFBIG);
1012                 return error;
1013         }
1014
1015         if (mp->m_logdev_targp != mp->m_ddev_targp) {
1016                 d = (xfs_daddr_t)XFS_FSB_TO_BB(mp, mp->m_sb.sb_logblocks);
1017                 if (XFS_BB_TO_FSB(mp, d) != mp->m_sb.sb_logblocks) {
1018                         cmn_err(CE_WARN, "XFS: size check 3 failed");
1019                         return XFS_ERROR(EFBIG);
1020                 }
1021                 error = xfs_read_buf(mp, mp->m_logdev_targp,
1022                                      d - XFS_FSB_TO_BB(mp, 1),
1023                                      XFS_FSB_TO_BB(mp, 1), 0, &bp);
1024                 if (!error) {
1025                         xfs_buf_relse(bp);
1026                 } else {
1027                         cmn_err(CE_WARN, "XFS: size check 3 failed");
1028                         if (error == ENOSPC)
1029                                 error = XFS_ERROR(EFBIG);
1030                         return error;
1031                 }
1032         }
1033         return 0;
1034 }
1035
1036 /*
1037  * Clear the quotaflags in memory and in the superblock.
1038  */
1039 int
1040 xfs_mount_reset_sbqflags(
1041         struct xfs_mount        *mp)
1042 {
1043         int                     error;
1044         struct xfs_trans        *tp;
1045
1046         mp->m_qflags = 0;
1047
1048         /*
1049          * It is OK to look at sb_qflags here in mount path,
1050          * without m_sb_lock.
1051          */
1052         if (mp->m_sb.sb_qflags == 0)
1053                 return 0;
1054         spin_lock(&mp->m_sb_lock);
1055         mp->m_sb.sb_qflags = 0;
1056         spin_unlock(&mp->m_sb_lock);
1057
1058         /*
1059          * If the fs is readonly, let the incore superblock run
1060          * with quotas off but don't flush the update out to disk
1061          */
1062         if (mp->m_flags & XFS_MOUNT_RDONLY)
1063                 return 0;
1064
1065 #ifdef QUOTADEBUG
1066         xfs_fs_cmn_err(CE_NOTE, mp, "Writing superblock quota changes");
1067 #endif
1068
1069         tp = xfs_trans_alloc(mp, XFS_TRANS_QM_SBCHANGE);
1070         error = xfs_trans_reserve(tp, 0, mp->m_sb.sb_sectsize + 128, 0, 0,
1071                                       XFS_DEFAULT_LOG_COUNT);
1072         if (error) {
1073                 xfs_trans_cancel(tp, 0);
1074                 xfs_fs_cmn_err(CE_ALERT, mp,
1075                         "xfs_mount_reset_sbqflags: Superblock update failed!");
1076                 return error;
1077         }
1078
1079         xfs_mod_sb(tp, XFS_SB_QFLAGS);
1080         return xfs_trans_commit(tp, 0);
1081 }
1082
1083 __uint64_t
1084 xfs_default_resblks(xfs_mount_t *mp)
1085 {
1086         __uint64_t resblks;
1087
1088         /*
1089          * We default to 5% or 8192 fsbs of space reserved, whichever is
1090          * smaller.  This is intended to cover concurrent allocation
1091          * transactions when we initially hit enospc. These each require a 4
1092          * block reservation. Hence by default we cover roughly 2000 concurrent
1093          * allocation reservations.
1094          */
1095         resblks = mp->m_sb.sb_dblocks;
1096         do_div(resblks, 20);
1097         resblks = min_t(__uint64_t, resblks, 8192);
1098         return resblks;
1099 }
1100
1101 /*
1102  * This function does the following on an initial mount of a file system:
1103  *      - reads the superblock from disk and init the mount struct
1104  *      - if we're a 32-bit kernel, do a size check on the superblock
1105  *              so we don't mount terabyte filesystems
1106  *      - init mount struct realtime fields
1107  *      - allocate inode hash table for fs
1108  *      - init directory manager
1109  *      - perform recovery and init the log manager
1110  */
1111 int
1112 xfs_mountfs(
1113         xfs_mount_t     *mp)
1114 {
1115         xfs_sb_t        *sbp = &(mp->m_sb);
1116         xfs_inode_t     *rip;
1117         __uint64_t      resblks;
1118         uint            quotamount = 0;
1119         uint            quotaflags = 0;
1120         int             error = 0;
1121
1122         xfs_mount_common(mp, sbp);
1123
1124         /*
1125          * Check for a mismatched features2 values.  Older kernels
1126          * read & wrote into the wrong sb offset for sb_features2
1127          * on some platforms due to xfs_sb_t not being 64bit size aligned
1128          * when sb_features2 was added, which made older superblock
1129          * reading/writing routines swap it as a 64-bit value.
1130          *
1131          * For backwards compatibility, we make both slots equal.
1132          *
1133          * If we detect a mismatched field, we OR the set bits into the
1134          * existing features2 field in case it has already been modified; we
1135          * don't want to lose any features.  We then update the bad location
1136          * with the ORed value so that older kernels will see any features2
1137          * flags, and mark the two fields as needing updates once the
1138          * transaction subsystem is online.
1139          */
1140         if (xfs_sb_has_mismatched_features2(sbp)) {
1141                 cmn_err(CE_WARN,
1142                         "XFS: correcting sb_features alignment problem");
1143                 sbp->sb_features2 |= sbp->sb_bad_features2;
1144                 sbp->sb_bad_features2 = sbp->sb_features2;
1145                 mp->m_update_flags |= XFS_SB_FEATURES2 | XFS_SB_BAD_FEATURES2;
1146
1147                 /*
1148                  * Re-check for ATTR2 in case it was found in bad_features2
1149                  * slot.
1150                  */
1151                 if (xfs_sb_version_hasattr2(&mp->m_sb) &&
1152                    !(mp->m_flags & XFS_MOUNT_NOATTR2))
1153                         mp->m_flags |= XFS_MOUNT_ATTR2;
1154         }
1155
1156         if (xfs_sb_version_hasattr2(&mp->m_sb) &&
1157            (mp->m_flags & XFS_MOUNT_NOATTR2)) {
1158                 xfs_sb_version_removeattr2(&mp->m_sb);
1159                 mp->m_update_flags |= XFS_SB_FEATURES2;
1160
1161                 /* update sb_versionnum for the clearing of the morebits */
1162                 if (!sbp->sb_features2)
1163                         mp->m_update_flags |= XFS_SB_VERSIONNUM;
1164         }
1165
1166         /*
1167          * Check if sb_agblocks is aligned at stripe boundary
1168          * If sb_agblocks is NOT aligned turn off m_dalign since
1169          * allocator alignment is within an ag, therefore ag has
1170          * to be aligned at stripe boundary.
1171          */
1172         error = xfs_update_alignment(mp);
1173         if (error)
1174                 goto out;
1175
1176         xfs_alloc_compute_maxlevels(mp);
1177         xfs_bmap_compute_maxlevels(mp, XFS_DATA_FORK);
1178         xfs_bmap_compute_maxlevels(mp, XFS_ATTR_FORK);
1179         xfs_ialloc_compute_maxlevels(mp);
1180
1181         xfs_set_maxicount(mp);
1182
1183         mp->m_maxioffset = xfs_max_file_offset(sbp->sb_blocklog);
1184
1185         error = xfs_uuid_mount(mp);
1186         if (error)
1187                 goto out;
1188
1189         /*
1190          * Set the minimum read and write sizes
1191          */
1192         xfs_set_rw_sizes(mp);
1193
1194         /*
1195          * Set the inode cluster size.
1196          * This may still be overridden by the file system
1197          * block size if it is larger than the chosen cluster size.
1198          */
1199         mp->m_inode_cluster_size = XFS_INODE_BIG_CLUSTER_SIZE;
1200
1201         /*
1202          * Set inode alignment fields
1203          */
1204         xfs_set_inoalignment(mp);
1205
1206         /*
1207          * Check that the data (and log if separate) are an ok size.
1208          */
1209         error = xfs_check_sizes(mp);
1210         if (error)
1211                 goto out_remove_uuid;
1212
1213         /*
1214          * Initialize realtime fields in the mount structure
1215          */
1216         error = xfs_rtmount_init(mp);
1217         if (error) {
1218                 cmn_err(CE_WARN, "XFS: RT mount failed");
1219                 goto out_remove_uuid;
1220         }
1221
1222         /*
1223          *  Copies the low order bits of the timestamp and the randomly
1224          *  set "sequence" number out of a UUID.
1225          */
1226         uuid_getnodeuniq(&sbp->sb_uuid, mp->m_fixedfsid);
1227
1228         mp->m_dmevmask = 0;     /* not persistent; set after each mount */
1229
1230         xfs_dir_mount(mp);
1231
1232         /*
1233          * Initialize the attribute manager's entries.
1234          */
1235         mp->m_attr_magicpct = (mp->m_sb.sb_blocksize * 37) / 100;
1236
1237         /*
1238          * Initialize the precomputed transaction reservations values.
1239          */
1240         xfs_trans_init(mp);
1241
1242         /*
1243          * Allocate and initialize the per-ag data.
1244          */
1245         spin_lock_init(&mp->m_perag_lock);
1246         INIT_RADIX_TREE(&mp->m_perag_tree, GFP_ATOMIC);
1247         error = xfs_initialize_perag(mp, sbp->sb_agcount, &mp->m_maxagi);
1248         if (error) {
1249                 cmn_err(CE_WARN, "XFS: Failed per-ag init: %d", error);
1250                 goto out_remove_uuid;
1251         }
1252
1253         if (!sbp->sb_logblocks) {
1254                 cmn_err(CE_WARN, "XFS: no log defined");
1255                 XFS_ERROR_REPORT("xfs_mountfs", XFS_ERRLEVEL_LOW, mp);
1256                 error = XFS_ERROR(EFSCORRUPTED);
1257                 goto out_free_perag;
1258         }
1259
1260         /*
1261          * log's mount-time initialization. Perform 1st part recovery if needed
1262          */
1263         error = xfs_log_mount(mp, mp->m_logdev_targp,
1264                               XFS_FSB_TO_DADDR(mp, sbp->sb_logstart),
1265                               XFS_FSB_TO_BB(mp, sbp->sb_logblocks));
1266         if (error) {
1267                 cmn_err(CE_WARN, "XFS: log mount failed");
1268                 goto out_free_perag;
1269         }
1270
1271         /*
1272          * Now the log is mounted, we know if it was an unclean shutdown or
1273          * not. If it was, with the first phase of recovery has completed, we
1274          * have consistent AG blocks on disk. We have not recovered EFIs yet,
1275          * but they are recovered transactionally in the second recovery phase
1276          * later.
1277          *
1278          * Hence we can safely re-initialise incore superblock counters from
1279          * the per-ag data. These may not be correct if the filesystem was not
1280          * cleanly unmounted, so we need to wait for recovery to finish before
1281          * doing this.
1282          *
1283          * If the filesystem was cleanly unmounted, then we can trust the
1284          * values in the superblock to be correct and we don't need to do
1285          * anything here.
1286          *
1287          * If we are currently making the filesystem, the initialisation will
1288          * fail as the perag data is in an undefined state.
1289          */
1290         if (xfs_sb_version_haslazysbcount(&mp->m_sb) &&
1291             !XFS_LAST_UNMOUNT_WAS_CLEAN(mp) &&
1292              !mp->m_sb.sb_inprogress) {
1293                 error = xfs_initialize_perag_data(mp, sbp->sb_agcount);
1294                 if (error)
1295                         goto out_free_perag;
1296         }
1297
1298         /*
1299          * Get and sanity-check the root inode.
1300          * Save the pointer to it in the mount structure.
1301          */
1302         error = xfs_iget(mp, NULL, sbp->sb_rootino, 0, XFS_ILOCK_EXCL, &rip);
1303         if (error) {
1304                 cmn_err(CE_WARN, "XFS: failed to read root inode");
1305                 goto out_log_dealloc;
1306         }
1307
1308         ASSERT(rip != NULL);
1309
1310         if (unlikely((rip->i_d.di_mode & S_IFMT) != S_IFDIR)) {
1311                 cmn_err(CE_WARN, "XFS: corrupted root inode");
1312                 cmn_err(CE_WARN, "Device %s - root %llu is not a directory",
1313                         XFS_BUFTARG_NAME(mp->m_ddev_targp),
1314                         (unsigned long long)rip->i_ino);
1315                 xfs_iunlock(rip, XFS_ILOCK_EXCL);
1316                 XFS_ERROR_REPORT("xfs_mountfs_int(2)", XFS_ERRLEVEL_LOW,
1317                                  mp);
1318                 error = XFS_ERROR(EFSCORRUPTED);
1319                 goto out_rele_rip;
1320         }
1321         mp->m_rootip = rip;     /* save it */
1322
1323         xfs_iunlock(rip, XFS_ILOCK_EXCL);
1324
1325         /*
1326          * Initialize realtime inode pointers in the mount structure
1327          */
1328         error = xfs_rtmount_inodes(mp);
1329         if (error) {
1330                 /*
1331                  * Free up the root inode.
1332                  */
1333                 cmn_err(CE_WARN, "XFS: failed to read RT inodes");
1334                 goto out_rele_rip;
1335         }
1336
1337         /*
1338          * If this is a read-only mount defer the superblock updates until
1339          * the next remount into writeable mode.  Otherwise we would never
1340          * perform the update e.g. for the root filesystem.
1341          */
1342         if (mp->m_update_flags && !(mp->m_flags & XFS_MOUNT_RDONLY)) {
1343                 error = xfs_mount_log_sb(mp, mp->m_update_flags);
1344                 if (error) {
1345                         cmn_err(CE_WARN, "XFS: failed to write sb changes");
1346                         goto out_rtunmount;
1347                 }
1348         }
1349
1350         /*
1351          * Initialise the XFS quota management subsystem for this mount
1352          */
1353         if (XFS_IS_QUOTA_RUNNING(mp)) {
1354                 error = xfs_qm_newmount(mp, &quotamount, &quotaflags);
1355                 if (error)
1356                         goto out_rtunmount;
1357         } else {
1358                 ASSERT(!XFS_IS_QUOTA_ON(mp));
1359
1360                 /*
1361                  * If a file system had quotas running earlier, but decided to
1362                  * mount without -o uquota/pquota/gquota options, revoke the
1363                  * quotachecked license.
1364                  */
1365                 if (mp->m_sb.sb_qflags & XFS_ALL_QUOTA_ACCT) {
1366                         cmn_err(CE_NOTE,
1367                                 "XFS: resetting qflags for filesystem %s",
1368                                 mp->m_fsname);
1369
1370                         error = xfs_mount_reset_sbqflags(mp);
1371                         if (error)
1372                                 return error;
1373                 }
1374         }
1375
1376         /*
1377          * Finish recovering the file system.  This part needed to be
1378          * delayed until after the root and real-time bitmap inodes
1379          * were consistently read in.
1380          */
1381         error = xfs_log_mount_finish(mp);
1382         if (error) {
1383                 cmn_err(CE_WARN, "XFS: log mount finish failed");
1384                 goto out_rtunmount;
1385         }
1386
1387         /*
1388          * Complete the quota initialisation, post-log-replay component.
1389          */
1390         if (quotamount) {
1391                 ASSERT(mp->m_qflags == 0);
1392                 mp->m_qflags = quotaflags;
1393
1394                 xfs_qm_mount_quotas(mp);
1395         }
1396
1397         /*
1398          * Now we are mounted, reserve a small amount of unused space for
1399          * privileged transactions. This is needed so that transaction
1400          * space required for critical operations can dip into this pool
1401          * when at ENOSPC. This is needed for operations like create with
1402          * attr, unwritten extent conversion at ENOSPC, etc. Data allocations
1403          * are not allowed to use this reserved space.
1404          *
1405          * This may drive us straight to ENOSPC on mount, but that implies
1406          * we were already there on the last unmount. Warn if this occurs.
1407          */
1408         if (!(mp->m_flags & XFS_MOUNT_RDONLY)) {
1409                 resblks = xfs_default_resblks(mp);
1410                 error = xfs_reserve_blocks(mp, &resblks, NULL);
1411                 if (error)
1412                         cmn_err(CE_WARN, "XFS: Unable to allocate reserve "
1413                                 "blocks. Continuing without a reserve pool.");
1414         }
1415
1416         return 0;
1417
1418  out_rtunmount:
1419         xfs_rtunmount_inodes(mp);
1420  out_rele_rip:
1421         IRELE(rip);
1422  out_log_dealloc:
1423         xfs_log_unmount(mp);
1424  out_free_perag:
1425         xfs_free_perag(mp);
1426  out_remove_uuid:
1427         xfs_uuid_unmount(mp);
1428  out:
1429         return error;
1430 }
1431
1432 /*
1433  * This flushes out the inodes,dquots and the superblock, unmounts the
1434  * log and makes sure that incore structures are freed.
1435  */
1436 void
1437 xfs_unmountfs(
1438         struct xfs_mount        *mp)
1439 {
1440         __uint64_t              resblks;
1441         int                     error;
1442
1443         xfs_qm_unmount_quotas(mp);
1444         xfs_rtunmount_inodes(mp);
1445         IRELE(mp->m_rootip);
1446
1447         /*
1448          * We can potentially deadlock here if we have an inode cluster
1449          * that has been freed has its buffer still pinned in memory because
1450          * the transaction is still sitting in a iclog. The stale inodes
1451          * on that buffer will have their flush locks held until the
1452          * transaction hits the disk and the callbacks run. the inode
1453          * flush takes the flush lock unconditionally and with nothing to
1454          * push out the iclog we will never get that unlocked. hence we
1455          * need to force the log first.
1456          */
1457         xfs_log_force(mp, XFS_LOG_SYNC);
1458
1459         /*
1460          * Do a delwri reclaim pass first so that as many dirty inodes are
1461          * queued up for IO as possible. Then flush the buffers before making
1462          * a synchronous path to catch all the remaining inodes are reclaimed.
1463          * This makes the reclaim process as quick as possible by avoiding
1464          * synchronous writeout and blocking on inodes already in the delwri
1465          * state as much as possible.
1466          */
1467         xfs_reclaim_inodes(mp, 0);
1468         XFS_bflush(mp->m_ddev_targp);
1469         xfs_reclaim_inodes(mp, SYNC_WAIT);
1470
1471         xfs_qm_unmount(mp);
1472
1473         /*
1474          * Flush out the log synchronously so that we know for sure
1475          * that nothing is pinned.  This is important because bflush()
1476          * will skip pinned buffers.
1477          */
1478         xfs_log_force(mp, XFS_LOG_SYNC);
1479
1480         xfs_binval(mp->m_ddev_targp);
1481         if (mp->m_rtdev_targp) {
1482                 xfs_binval(mp->m_rtdev_targp);
1483         }
1484
1485         /*
1486          * Unreserve any blocks we have so that when we unmount we don't account
1487          * the reserved free space as used. This is really only necessary for
1488          * lazy superblock counting because it trusts the incore superblock
1489          * counters to be absolutely correct on clean unmount.
1490          *
1491          * We don't bother correcting this elsewhere for lazy superblock
1492          * counting because on mount of an unclean filesystem we reconstruct the
1493          * correct counter value and this is irrelevant.
1494          *
1495          * For non-lazy counter filesystems, this doesn't matter at all because
1496          * we only every apply deltas to the superblock and hence the incore
1497          * value does not matter....
1498          */
1499         resblks = 0;
1500         error = xfs_reserve_blocks(mp, &resblks, NULL);
1501         if (error)
1502                 cmn_err(CE_WARN, "XFS: Unable to free reserved block pool. "
1503                                 "Freespace may not be correct on next mount.");
1504
1505         error = xfs_log_sbcount(mp, 1);
1506         if (error)
1507                 cmn_err(CE_WARN, "XFS: Unable to update superblock counters. "
1508                                 "Freespace may not be correct on next mount.");
1509         xfs_unmountfs_writesb(mp);
1510         xfs_unmountfs_wait(mp);                 /* wait for async bufs */
1511         xfs_log_unmount_write(mp);
1512         xfs_log_unmount(mp);
1513         xfs_uuid_unmount(mp);
1514
1515 #if defined(DEBUG)
1516         xfs_errortag_clearall(mp, 0);
1517 #endif
1518         xfs_free_perag(mp);
1519 }
1520
1521 STATIC void
1522 xfs_unmountfs_wait(xfs_mount_t *mp)
1523 {
1524         if (mp->m_logdev_targp != mp->m_ddev_targp)
1525                 xfs_wait_buftarg(mp->m_logdev_targp);
1526         if (mp->m_rtdev_targp)
1527                 xfs_wait_buftarg(mp->m_rtdev_targp);
1528         xfs_wait_buftarg(mp->m_ddev_targp);
1529 }
1530
1531 int
1532 xfs_fs_writable(xfs_mount_t *mp)
1533 {
1534         return !(xfs_test_for_freeze(mp) || XFS_FORCED_SHUTDOWN(mp) ||
1535                 (mp->m_flags & XFS_MOUNT_RDONLY));
1536 }
1537
1538 /*
1539  * xfs_log_sbcount
1540  *
1541  * Called either periodically to keep the on disk superblock values
1542  * roughly up to date or from unmount to make sure the values are
1543  * correct on a clean unmount.
1544  *
1545  * Note this code can be called during the process of freezing, so
1546  * we may need to use the transaction allocator which does not not
1547  * block when the transaction subsystem is in its frozen state.
1548  */
1549 int
1550 xfs_log_sbcount(
1551         xfs_mount_t     *mp,
1552         uint            sync)
1553 {
1554         xfs_trans_t     *tp;
1555         int             error;
1556
1557         if (!xfs_fs_writable(mp))
1558                 return 0;
1559
1560         xfs_icsb_sync_counters(mp, 0);
1561
1562         /*
1563          * we don't need to do this if we are updating the superblock
1564          * counters on every modification.
1565          */
1566         if (!xfs_sb_version_haslazysbcount(&mp->m_sb))
1567                 return 0;
1568
1569         tp = _xfs_trans_alloc(mp, XFS_TRANS_SB_COUNT, KM_SLEEP);
1570         error = xfs_trans_reserve(tp, 0, mp->m_sb.sb_sectsize + 128, 0, 0,
1571                                         XFS_DEFAULT_LOG_COUNT);
1572         if (error) {
1573                 xfs_trans_cancel(tp, 0);
1574                 return error;
1575         }
1576
1577         xfs_mod_sb(tp, XFS_SB_IFREE | XFS_SB_ICOUNT | XFS_SB_FDBLOCKS);
1578         if (sync)
1579                 xfs_trans_set_sync(tp);
1580         error = xfs_trans_commit(tp, 0);
1581         return error;
1582 }
1583
1584 int
1585 xfs_unmountfs_writesb(xfs_mount_t *mp)
1586 {
1587         xfs_buf_t       *sbp;
1588         int             error = 0;
1589
1590         /*
1591          * skip superblock write if fs is read-only, or
1592          * if we are doing a forced umount.
1593          */
1594         if (!((mp->m_flags & XFS_MOUNT_RDONLY) ||
1595                 XFS_FORCED_SHUTDOWN(mp))) {
1596
1597                 sbp = xfs_getsb(mp, 0);
1598
1599                 XFS_BUF_UNDONE(sbp);
1600                 XFS_BUF_UNREAD(sbp);
1601                 XFS_BUF_UNDELAYWRITE(sbp);
1602                 XFS_BUF_WRITE(sbp);
1603                 XFS_BUF_UNASYNC(sbp);
1604                 ASSERT(XFS_BUF_TARGET(sbp) == mp->m_ddev_targp);
1605                 xfsbdstrat(mp, sbp);
1606                 error = xfs_iowait(sbp);
1607                 if (error)
1608                         xfs_ioerror_alert("xfs_unmountfs_writesb",
1609                                           mp, sbp, XFS_BUF_ADDR(sbp));
1610                 xfs_buf_relse(sbp);
1611         }
1612         return error;
1613 }
1614
1615 /*
1616  * xfs_mod_sb() can be used to copy arbitrary changes to the
1617  * in-core superblock into the superblock buffer to be logged.
1618  * It does not provide the higher level of locking that is
1619  * needed to protect the in-core superblock from concurrent
1620  * access.
1621  */
1622 void
1623 xfs_mod_sb(xfs_trans_t *tp, __int64_t fields)
1624 {
1625         xfs_buf_t       *bp;
1626         int             first;
1627         int             last;
1628         xfs_mount_t     *mp;
1629         xfs_sb_field_t  f;
1630
1631         ASSERT(fields);
1632         if (!fields)
1633                 return;
1634         mp = tp->t_mountp;
1635         bp = xfs_trans_getsb(tp, mp, 0);
1636         first = sizeof(xfs_sb_t);
1637         last = 0;
1638
1639         /* translate/copy */
1640
1641         xfs_sb_to_disk(XFS_BUF_TO_SBP(bp), &mp->m_sb, fields);
1642
1643         /* find modified range */
1644         f = (xfs_sb_field_t)xfs_highbit64((__uint64_t)fields);
1645         ASSERT((1LL << f) & XFS_SB_MOD_BITS);
1646         last = xfs_sb_info[f + 1].offset - 1;
1647
1648         f = (xfs_sb_field_t)xfs_lowbit64((__uint64_t)fields);
1649         ASSERT((1LL << f) & XFS_SB_MOD_BITS);
1650         first = xfs_sb_info[f].offset;
1651
1652         xfs_trans_log_buf(tp, bp, first, last);
1653 }
1654
1655
1656 /*
1657  * xfs_mod_incore_sb_unlocked() is a utility routine common used to apply
1658  * a delta to a specified field in the in-core superblock.  Simply
1659  * switch on the field indicated and apply the delta to that field.
1660  * Fields are not allowed to dip below zero, so if the delta would
1661  * do this do not apply it and return EINVAL.
1662  *
1663  * The m_sb_lock must be held when this routine is called.
1664  */
1665 STATIC int
1666 xfs_mod_incore_sb_unlocked(
1667         xfs_mount_t     *mp,
1668         xfs_sb_field_t  field,
1669         int64_t         delta,
1670         int             rsvd)
1671 {
1672         int             scounter;       /* short counter for 32 bit fields */
1673         long long       lcounter;       /* long counter for 64 bit fields */
1674         long long       res_used, rem;
1675
1676         /*
1677          * With the in-core superblock spin lock held, switch
1678          * on the indicated field.  Apply the delta to the
1679          * proper field.  If the fields value would dip below
1680          * 0, then do not apply the delta and return EINVAL.
1681          */
1682         switch (field) {
1683         case XFS_SBS_ICOUNT:
1684                 lcounter = (long long)mp->m_sb.sb_icount;
1685                 lcounter += delta;
1686                 if (lcounter < 0) {
1687                         ASSERT(0);
1688                         return XFS_ERROR(EINVAL);
1689                 }
1690                 mp->m_sb.sb_icount = lcounter;
1691                 return 0;
1692         case XFS_SBS_IFREE:
1693                 lcounter = (long long)mp->m_sb.sb_ifree;
1694                 lcounter += delta;
1695                 if (lcounter < 0) {
1696                         ASSERT(0);
1697                         return XFS_ERROR(EINVAL);
1698                 }
1699                 mp->m_sb.sb_ifree = lcounter;
1700                 return 0;
1701         case XFS_SBS_FDBLOCKS:
1702                 lcounter = (long long)
1703                         mp->m_sb.sb_fdblocks - XFS_ALLOC_SET_ASIDE(mp);
1704                 res_used = (long long)(mp->m_resblks - mp->m_resblks_avail);
1705
1706                 if (delta > 0) {                /* Putting blocks back */
1707                         if (res_used > delta) {
1708                                 mp->m_resblks_avail += delta;
1709                         } else {
1710                                 rem = delta - res_used;
1711                                 mp->m_resblks_avail = mp->m_resblks;
1712                                 lcounter += rem;
1713                         }
1714                 } else {                                /* Taking blocks away */
1715                         lcounter += delta;
1716                         if (lcounter >= 0) {
1717                                 mp->m_sb.sb_fdblocks = lcounter +
1718                                                         XFS_ALLOC_SET_ASIDE(mp);
1719                                 return 0;
1720                         }
1721
1722                         /*
1723                          * We are out of blocks, use any available reserved
1724                          * blocks if were allowed to.
1725                          */
1726                         if (!rsvd)
1727                                 return XFS_ERROR(ENOSPC);
1728
1729                         lcounter = (long long)mp->m_resblks_avail + delta;
1730                         if (lcounter >= 0) {
1731                                 mp->m_resblks_avail = lcounter;
1732                                 return 0;
1733                         }
1734                         printk_once(KERN_WARNING
1735                                 "Filesystem \"%s\": reserve blocks depleted! "
1736                                 "Consider increasing reserve pool size.",
1737                                 mp->m_fsname);
1738                         return XFS_ERROR(ENOSPC);
1739                 }
1740
1741                 mp->m_sb.sb_fdblocks = lcounter + XFS_ALLOC_SET_ASIDE(mp);
1742                 return 0;
1743         case XFS_SBS_FREXTENTS:
1744                 lcounter = (long long)mp->m_sb.sb_frextents;
1745                 lcounter += delta;
1746                 if (lcounter < 0) {
1747                         return XFS_ERROR(ENOSPC);
1748                 }
1749                 mp->m_sb.sb_frextents = lcounter;
1750                 return 0;
1751         case XFS_SBS_DBLOCKS:
1752                 lcounter = (long long)mp->m_sb.sb_dblocks;
1753                 lcounter += delta;
1754                 if (lcounter < 0) {
1755                         ASSERT(0);
1756                         return XFS_ERROR(EINVAL);
1757                 }
1758                 mp->m_sb.sb_dblocks = lcounter;
1759                 return 0;
1760         case XFS_SBS_AGCOUNT:
1761                 scounter = mp->m_sb.sb_agcount;
1762                 scounter += delta;
1763                 if (scounter < 0) {
1764                         ASSERT(0);
1765                         return XFS_ERROR(EINVAL);
1766                 }
1767                 mp->m_sb.sb_agcount = scounter;
1768                 return 0;
1769         case XFS_SBS_IMAX_PCT:
1770                 scounter = mp->m_sb.sb_imax_pct;
1771                 scounter += delta;
1772                 if (scounter < 0) {
1773                         ASSERT(0);
1774                         return XFS_ERROR(EINVAL);
1775                 }
1776                 mp->m_sb.sb_imax_pct = scounter;
1777                 return 0;
1778         case XFS_SBS_REXTSIZE:
1779                 scounter = mp->m_sb.sb_rextsize;
1780                 scounter += delta;
1781                 if (scounter < 0) {
1782                         ASSERT(0);
1783                         return XFS_ERROR(EINVAL);
1784                 }
1785                 mp->m_sb.sb_rextsize = scounter;
1786                 return 0;
1787         case XFS_SBS_RBMBLOCKS:
1788                 scounter = mp->m_sb.sb_rbmblocks;
1789                 scounter += delta;
1790                 if (scounter < 0) {
1791                         ASSERT(0);
1792                         return XFS_ERROR(EINVAL);
1793                 }
1794                 mp->m_sb.sb_rbmblocks = scounter;
1795                 return 0;
1796         case XFS_SBS_RBLOCKS:
1797                 lcounter = (long long)mp->m_sb.sb_rblocks;
1798                 lcounter += delta;
1799                 if (lcounter < 0) {
1800                         ASSERT(0);
1801                         return XFS_ERROR(EINVAL);
1802                 }
1803                 mp->m_sb.sb_rblocks = lcounter;
1804                 return 0;
1805         case XFS_SBS_REXTENTS:
1806                 lcounter = (long long)mp->m_sb.sb_rextents;
1807                 lcounter += delta;
1808                 if (lcounter < 0) {
1809                         ASSERT(0);
1810                         return XFS_ERROR(EINVAL);
1811                 }
1812                 mp->m_sb.sb_rextents = lcounter;
1813                 return 0;
1814         case XFS_SBS_REXTSLOG:
1815                 scounter = mp->m_sb.sb_rextslog;
1816                 scounter += delta;
1817                 if (scounter < 0) {
1818                         ASSERT(0);
1819                         return XFS_ERROR(EINVAL);
1820                 }
1821                 mp->m_sb.sb_rextslog = scounter;
1822                 return 0;
1823         default:
1824                 ASSERT(0);
1825                 return XFS_ERROR(EINVAL);
1826         }
1827 }
1828
1829 /*
1830  * xfs_mod_incore_sb() is used to change a field in the in-core
1831  * superblock structure by the specified delta.  This modification
1832  * is protected by the m_sb_lock.  Just use the xfs_mod_incore_sb_unlocked()
1833  * routine to do the work.
1834  */
1835 int
1836 xfs_mod_incore_sb(
1837         xfs_mount_t     *mp,
1838         xfs_sb_field_t  field,
1839         int64_t         delta,
1840         int             rsvd)
1841 {
1842         int     status;
1843
1844         /* check for per-cpu counters */
1845         switch (field) {
1846 #ifdef HAVE_PERCPU_SB
1847         case XFS_SBS_ICOUNT:
1848         case XFS_SBS_IFREE:
1849         case XFS_SBS_FDBLOCKS:
1850                 if (!(mp->m_flags & XFS_MOUNT_NO_PERCPU_SB)) {
1851                         status = xfs_icsb_modify_counters(mp, field,
1852                                                         delta, rsvd);
1853                         break;
1854                 }
1855                 /* FALLTHROUGH */
1856 #endif
1857         default:
1858                 spin_lock(&mp->m_sb_lock);
1859                 status = xfs_mod_incore_sb_unlocked(mp, field, delta, rsvd);
1860                 spin_unlock(&mp->m_sb_lock);
1861                 break;
1862         }
1863
1864         return status;
1865 }
1866
1867 /*
1868  * xfs_mod_incore_sb_batch() is used to change more than one field
1869  * in the in-core superblock structure at a time.  This modification
1870  * is protected by a lock internal to this module.  The fields and
1871  * changes to those fields are specified in the array of xfs_mod_sb
1872  * structures passed in.
1873  *
1874  * Either all of the specified deltas will be applied or none of
1875  * them will.  If any modified field dips below 0, then all modifications
1876  * will be backed out and EINVAL will be returned.
1877  */
1878 int
1879 xfs_mod_incore_sb_batch(xfs_mount_t *mp, xfs_mod_sb_t *msb, uint nmsb, int rsvd)
1880 {
1881         int             status=0;
1882         xfs_mod_sb_t    *msbp;
1883
1884         /*
1885          * Loop through the array of mod structures and apply each
1886          * individually.  If any fail, then back out all those
1887          * which have already been applied.  Do all of this within
1888          * the scope of the m_sb_lock so that all of the changes will
1889          * be atomic.
1890          */
1891         spin_lock(&mp->m_sb_lock);
1892         msbp = &msb[0];
1893         for (msbp = &msbp[0]; msbp < (msb + nmsb); msbp++) {
1894                 /*
1895                  * Apply the delta at index n.  If it fails, break
1896                  * from the loop so we'll fall into the undo loop
1897                  * below.
1898                  */
1899                 switch (msbp->msb_field) {
1900 #ifdef HAVE_PERCPU_SB
1901                 case XFS_SBS_ICOUNT:
1902                 case XFS_SBS_IFREE:
1903                 case XFS_SBS_FDBLOCKS:
1904                         if (!(mp->m_flags & XFS_MOUNT_NO_PERCPU_SB)) {
1905                                 spin_unlock(&mp->m_sb_lock);
1906                                 status = xfs_icsb_modify_counters(mp,
1907                                                         msbp->msb_field,
1908                                                         msbp->msb_delta, rsvd);
1909                                 spin_lock(&mp->m_sb_lock);
1910                                 break;
1911                         }
1912                         /* FALLTHROUGH */
1913 #endif
1914                 default:
1915                         status = xfs_mod_incore_sb_unlocked(mp,
1916                                                 msbp->msb_field,
1917                                                 msbp->msb_delta, rsvd);
1918                         break;
1919                 }
1920
1921                 if (status != 0) {
1922                         break;
1923                 }
1924         }
1925
1926         /*
1927          * If we didn't complete the loop above, then back out
1928          * any changes made to the superblock.  If you add code
1929          * between the loop above and here, make sure that you
1930          * preserve the value of status. Loop back until
1931          * we step below the beginning of the array.  Make sure
1932          * we don't touch anything back there.
1933          */
1934         if (status != 0) {
1935                 msbp--;
1936                 while (msbp >= msb) {
1937                         switch (msbp->msb_field) {
1938 #ifdef HAVE_PERCPU_SB
1939                         case XFS_SBS_ICOUNT:
1940                         case XFS_SBS_IFREE:
1941                         case XFS_SBS_FDBLOCKS:
1942                                 if (!(mp->m_flags & XFS_MOUNT_NO_PERCPU_SB)) {
1943                                         spin_unlock(&mp->m_sb_lock);
1944                                         status = xfs_icsb_modify_counters(mp,
1945                                                         msbp->msb_field,
1946                                                         -(msbp->msb_delta),
1947                                                         rsvd);
1948                                         spin_lock(&mp->m_sb_lock);
1949                                         break;
1950                                 }
1951                                 /* FALLTHROUGH */
1952 #endif
1953                         default:
1954                                 status = xfs_mod_incore_sb_unlocked(mp,
1955                                                         msbp->msb_field,
1956                                                         -(msbp->msb_delta),
1957                                                         rsvd);
1958                                 break;
1959                         }
1960                         ASSERT(status == 0);
1961                         msbp--;
1962                 }
1963         }
1964         spin_unlock(&mp->m_sb_lock);
1965         return status;
1966 }
1967
1968 /*
1969  * xfs_getsb() is called to obtain the buffer for the superblock.
1970  * The buffer is returned locked and read in from disk.
1971  * The buffer should be released with a call to xfs_brelse().
1972  *
1973  * If the flags parameter is BUF_TRYLOCK, then we'll only return
1974  * the superblock buffer if it can be locked without sleeping.
1975  * If it can't then we'll return NULL.
1976  */
1977 xfs_buf_t *
1978 xfs_getsb(
1979         xfs_mount_t     *mp,
1980         int             flags)
1981 {
1982         xfs_buf_t       *bp;
1983
1984         ASSERT(mp->m_sb_bp != NULL);
1985         bp = mp->m_sb_bp;
1986         if (flags & XBF_TRYLOCK) {
1987                 if (!XFS_BUF_CPSEMA(bp)) {
1988                         return NULL;
1989                 }
1990         } else {
1991                 XFS_BUF_PSEMA(bp, PRIBIO);
1992         }
1993         XFS_BUF_HOLD(bp);
1994         ASSERT(XFS_BUF_ISDONE(bp));
1995         return bp;
1996 }
1997
1998 /*
1999  * Used to free the superblock along various error paths.
2000  */
2001 void
2002 xfs_freesb(
2003         xfs_mount_t     *mp)
2004 {
2005         xfs_buf_t       *bp;
2006
2007         /*
2008          * Use xfs_getsb() so that the buffer will be locked
2009          * when we call xfs_buf_relse().
2010          */
2011         bp = xfs_getsb(mp, 0);
2012         XFS_BUF_UNMANAGE(bp);
2013         xfs_buf_relse(bp);
2014         mp->m_sb_bp = NULL;
2015 }
2016
2017 /*
2018  * Used to log changes to the superblock unit and width fields which could
2019  * be altered by the mount options, as well as any potential sb_features2
2020  * fixup. Only the first superblock is updated.
2021  */
2022 int
2023 xfs_mount_log_sb(
2024         xfs_mount_t     *mp,
2025         __int64_t       fields)
2026 {
2027         xfs_trans_t     *tp;
2028         int             error;
2029
2030         ASSERT(fields & (XFS_SB_UNIT | XFS_SB_WIDTH | XFS_SB_UUID |
2031                          XFS_SB_FEATURES2 | XFS_SB_BAD_FEATURES2 |
2032                          XFS_SB_VERSIONNUM));
2033
2034         tp = xfs_trans_alloc(mp, XFS_TRANS_SB_UNIT);
2035         error = xfs_trans_reserve(tp, 0, mp->m_sb.sb_sectsize + 128, 0, 0,
2036                                 XFS_DEFAULT_LOG_COUNT);
2037         if (error) {
2038                 xfs_trans_cancel(tp, 0);
2039                 return error;
2040         }
2041         xfs_mod_sb(tp, fields);
2042         error = xfs_trans_commit(tp, 0);
2043         return error;
2044 }
2045
2046 /*
2047  * If the underlying (data/log/rt) device is readonly, there are some
2048  * operations that cannot proceed.
2049  */
2050 int
2051 xfs_dev_is_read_only(
2052         struct xfs_mount        *mp,
2053         char                    *message)
2054 {
2055         if (xfs_readonly_buftarg(mp->m_ddev_targp) ||
2056             xfs_readonly_buftarg(mp->m_logdev_targp) ||
2057             (mp->m_rtdev_targp && xfs_readonly_buftarg(mp->m_rtdev_targp))) {
2058                 cmn_err(CE_NOTE,
2059                         "XFS: %s required on read-only device.", message);
2060                 cmn_err(CE_NOTE,
2061                         "XFS: write access unavailable, cannot proceed.");
2062                 return EROFS;
2063         }
2064         return 0;
2065 }
2066
2067 #ifdef HAVE_PERCPU_SB
2068 /*
2069  * Per-cpu incore superblock counters
2070  *
2071  * Simple concept, difficult implementation
2072  *
2073  * Basically, replace the incore superblock counters with a distributed per cpu
2074  * counter for contended fields (e.g.  free block count).
2075  *
2076  * Difficulties arise in that the incore sb is used for ENOSPC checking, and
2077  * hence needs to be accurately read when we are running low on space. Hence
2078  * there is a method to enable and disable the per-cpu counters based on how
2079  * much "stuff" is available in them.
2080  *
2081  * Basically, a counter is enabled if there is enough free resource to justify
2082  * running a per-cpu fast-path. If the per-cpu counter runs out (i.e. a local
2083  * ENOSPC), then we disable the counters to synchronise all callers and
2084  * re-distribute the available resources.
2085  *
2086  * If, once we redistributed the available resources, we still get a failure,
2087  * we disable the per-cpu counter and go through the slow path.
2088  *
2089  * The slow path is the current xfs_mod_incore_sb() function.  This means that
2090  * when we disable a per-cpu counter, we need to drain its resources back to
2091  * the global superblock. We do this after disabling the counter to prevent
2092  * more threads from queueing up on the counter.
2093  *
2094  * Essentially, this means that we still need a lock in the fast path to enable
2095  * synchronisation between the global counters and the per-cpu counters. This
2096  * is not a problem because the lock will be local to a CPU almost all the time
2097  * and have little contention except when we get to ENOSPC conditions.
2098  *
2099  * Basically, this lock becomes a barrier that enables us to lock out the fast
2100  * path while we do things like enabling and disabling counters and
2101  * synchronising the counters.
2102  *
2103  * Locking rules:
2104  *
2105  *      1. m_sb_lock before picking up per-cpu locks
2106  *      2. per-cpu locks always picked up via for_each_online_cpu() order
2107  *      3. accurate counter sync requires m_sb_lock + per cpu locks
2108  *      4. modifying per-cpu counters requires holding per-cpu lock
2109  *      5. modifying global counters requires holding m_sb_lock
2110  *      6. enabling or disabling a counter requires holding the m_sb_lock 
2111  *         and _none_ of the per-cpu locks.
2112  *
2113  * Disabled counters are only ever re-enabled by a balance operation
2114  * that results in more free resources per CPU than a given threshold.
2115  * To ensure counters don't remain disabled, they are rebalanced when
2116  * the global resource goes above a higher threshold (i.e. some hysteresis
2117  * is present to prevent thrashing).
2118  */
2119
2120 #ifdef CONFIG_HOTPLUG_CPU
2121 /*
2122  * hot-plug CPU notifier support.
2123  *
2124  * We need a notifier per filesystem as we need to be able to identify
2125  * the filesystem to balance the counters out. This is achieved by
2126  * having a notifier block embedded in the xfs_mount_t and doing pointer
2127  * magic to get the mount pointer from the notifier block address.
2128  */
2129 STATIC int
2130 xfs_icsb_cpu_notify(
2131         struct notifier_block *nfb,
2132         unsigned long action,
2133         void *hcpu)
2134 {
2135         xfs_icsb_cnts_t *cntp;
2136         xfs_mount_t     *mp;
2137
2138         mp = (xfs_mount_t *)container_of(nfb, xfs_mount_t, m_icsb_notifier);
2139         cntp = (xfs_icsb_cnts_t *)
2140                         per_cpu_ptr(mp->m_sb_cnts, (unsigned long)hcpu);
2141         switch (action) {
2142         case CPU_UP_PREPARE:
2143         case CPU_UP_PREPARE_FROZEN:
2144                 /* Easy Case - initialize the area and locks, and
2145                  * then rebalance when online does everything else for us. */
2146                 memset(cntp, 0, sizeof(xfs_icsb_cnts_t));
2147                 break;
2148         case CPU_ONLINE:
2149         case CPU_ONLINE_FROZEN:
2150                 xfs_icsb_lock(mp);
2151                 xfs_icsb_balance_counter(mp, XFS_SBS_ICOUNT, 0);
2152                 xfs_icsb_balance_counter(mp, XFS_SBS_IFREE, 0);
2153                 xfs_icsb_balance_counter(mp, XFS_SBS_FDBLOCKS, 0);
2154                 xfs_icsb_unlock(mp);
2155                 break;
2156         case CPU_DEAD:
2157         case CPU_DEAD_FROZEN:
2158                 /* Disable all the counters, then fold the dead cpu's
2159                  * count into the total on the global superblock and
2160                  * re-enable the counters. */
2161                 xfs_icsb_lock(mp);
2162                 spin_lock(&mp->m_sb_lock);
2163                 xfs_icsb_disable_counter(mp, XFS_SBS_ICOUNT);
2164                 xfs_icsb_disable_counter(mp, XFS_SBS_IFREE);
2165                 xfs_icsb_disable_counter(mp, XFS_SBS_FDBLOCKS);
2166
2167                 mp->m_sb.sb_icount += cntp->icsb_icount;
2168                 mp->m_sb.sb_ifree += cntp->icsb_ifree;
2169                 mp->m_sb.sb_fdblocks += cntp->icsb_fdblocks;
2170
2171                 memset(cntp, 0, sizeof(xfs_icsb_cnts_t));
2172
2173                 xfs_icsb_balance_counter_locked(mp, XFS_SBS_ICOUNT, 0);
2174                 xfs_icsb_balance_counter_locked(mp, XFS_SBS_IFREE, 0);
2175                 xfs_icsb_balance_counter_locked(mp, XFS_SBS_FDBLOCKS, 0);
2176                 spin_unlock(&mp->m_sb_lock);
2177                 xfs_icsb_unlock(mp);
2178                 break;
2179         }
2180
2181         return NOTIFY_OK;
2182 }
2183 #endif /* CONFIG_HOTPLUG_CPU */
2184
2185 int
2186 xfs_icsb_init_counters(
2187         xfs_mount_t     *mp)
2188 {
2189         xfs_icsb_cnts_t *cntp;
2190         int             i;
2191
2192         mp->m_sb_cnts = alloc_percpu(xfs_icsb_cnts_t);
2193         if (mp->m_sb_cnts == NULL)
2194                 return -ENOMEM;
2195
2196 #ifdef CONFIG_HOTPLUG_CPU
2197         mp->m_icsb_notifier.notifier_call = xfs_icsb_cpu_notify;
2198         mp->m_icsb_notifier.priority = 0;
2199         register_hotcpu_notifier(&mp->m_icsb_notifier);
2200 #endif /* CONFIG_HOTPLUG_CPU */
2201
2202         for_each_online_cpu(i) {
2203                 cntp = (xfs_icsb_cnts_t *)per_cpu_ptr(mp->m_sb_cnts, i);
2204                 memset(cntp, 0, sizeof(xfs_icsb_cnts_t));
2205         }
2206
2207         mutex_init(&mp->m_icsb_mutex);
2208
2209         /*
2210          * start with all counters disabled so that the
2211          * initial balance kicks us off correctly
2212          */
2213         mp->m_icsb_counters = -1;
2214         return 0;
2215 }
2216
2217 void
2218 xfs_icsb_reinit_counters(
2219         xfs_mount_t     *mp)
2220 {
2221         xfs_icsb_lock(mp);
2222         /*
2223          * start with all counters disabled so that the
2224          * initial balance kicks us off correctly
2225          */
2226         mp->m_icsb_counters = -1;
2227         xfs_icsb_balance_counter(mp, XFS_SBS_ICOUNT, 0);
2228         xfs_icsb_balance_counter(mp, XFS_SBS_IFREE, 0);
2229         xfs_icsb_balance_counter(mp, XFS_SBS_FDBLOCKS, 0);
2230         xfs_icsb_unlock(mp);
2231 }
2232
2233 void
2234 xfs_icsb_destroy_counters(
2235         xfs_mount_t     *mp)
2236 {
2237         if (mp->m_sb_cnts) {
2238                 unregister_hotcpu_notifier(&mp->m_icsb_notifier);
2239                 free_percpu(mp->m_sb_cnts);
2240         }
2241         mutex_destroy(&mp->m_icsb_mutex);
2242 }
2243
2244 STATIC void
2245 xfs_icsb_lock_cntr(
2246         xfs_icsb_cnts_t *icsbp)
2247 {
2248         while (test_and_set_bit(XFS_ICSB_FLAG_LOCK, &icsbp->icsb_flags)) {
2249                 ndelay(1000);
2250         }
2251 }
2252
2253 STATIC void
2254 xfs_icsb_unlock_cntr(
2255         xfs_icsb_cnts_t *icsbp)
2256 {
2257         clear_bit(XFS_ICSB_FLAG_LOCK, &icsbp->icsb_flags);
2258 }
2259
2260
2261 STATIC void
2262 xfs_icsb_lock_all_counters(
2263         xfs_mount_t     *mp)
2264 {
2265         xfs_icsb_cnts_t *cntp;
2266         int             i;
2267
2268         for_each_online_cpu(i) {
2269                 cntp = (xfs_icsb_cnts_t *)per_cpu_ptr(mp->m_sb_cnts, i);
2270                 xfs_icsb_lock_cntr(cntp);
2271         }
2272 }
2273
2274 STATIC void
2275 xfs_icsb_unlock_all_counters(
2276         xfs_mount_t     *mp)
2277 {
2278         xfs_icsb_cnts_t *cntp;
2279         int             i;
2280
2281         for_each_online_cpu(i) {
2282                 cntp = (xfs_icsb_cnts_t *)per_cpu_ptr(mp->m_sb_cnts, i);
2283                 xfs_icsb_unlock_cntr(cntp);
2284         }
2285 }
2286
2287 STATIC void
2288 xfs_icsb_count(
2289         xfs_mount_t     *mp,
2290         xfs_icsb_cnts_t *cnt,
2291         int             flags)
2292 {
2293         xfs_icsb_cnts_t *cntp;
2294         int             i;
2295
2296         memset(cnt, 0, sizeof(xfs_icsb_cnts_t));
2297
2298         if (!(flags & XFS_ICSB_LAZY_COUNT))
2299                 xfs_icsb_lock_all_counters(mp);
2300
2301         for_each_online_cpu(i) {
2302                 cntp = (xfs_icsb_cnts_t *)per_cpu_ptr(mp->m_sb_cnts, i);
2303                 cnt->icsb_icount += cntp->icsb_icount;
2304                 cnt->icsb_ifree += cntp->icsb_ifree;
2305                 cnt->icsb_fdblocks += cntp->icsb_fdblocks;
2306         }
2307
2308         if (!(flags & XFS_ICSB_LAZY_COUNT))
2309                 xfs_icsb_unlock_all_counters(mp);
2310 }
2311
2312 STATIC int
2313 xfs_icsb_counter_disabled(
2314         xfs_mount_t     *mp,
2315         xfs_sb_field_t  field)
2316 {
2317         ASSERT((field >= XFS_SBS_ICOUNT) && (field <= XFS_SBS_FDBLOCKS));
2318         return test_bit(field, &mp->m_icsb_counters);
2319 }
2320
2321 STATIC void
2322 xfs_icsb_disable_counter(
2323         xfs_mount_t     *mp,
2324         xfs_sb_field_t  field)
2325 {
2326         xfs_icsb_cnts_t cnt;
2327
2328         ASSERT((field >= XFS_SBS_ICOUNT) && (field <= XFS_SBS_FDBLOCKS));
2329
2330         /*
2331          * If we are already disabled, then there is nothing to do
2332          * here. We check before locking all the counters to avoid
2333          * the expensive lock operation when being called in the
2334          * slow path and the counter is already disabled. This is
2335          * safe because the only time we set or clear this state is under
2336          * the m_icsb_mutex.
2337          */
2338         if (xfs_icsb_counter_disabled(mp, field))
2339                 return;
2340
2341         xfs_icsb_lock_all_counters(mp);
2342         if (!test_and_set_bit(field, &mp->m_icsb_counters)) {
2343                 /* drain back to superblock */
2344
2345                 xfs_icsb_count(mp, &cnt, XFS_ICSB_LAZY_COUNT);
2346                 switch(field) {
2347                 case XFS_SBS_ICOUNT:
2348                         mp->m_sb.sb_icount = cnt.icsb_icount;
2349                         break;
2350                 case XFS_SBS_IFREE:
2351                         mp->m_sb.sb_ifree = cnt.icsb_ifree;
2352                         break;
2353                 case XFS_SBS_FDBLOCKS:
2354                         mp->m_sb.sb_fdblocks = cnt.icsb_fdblocks;
2355                         break;
2356                 default:
2357                         BUG();
2358                 }
2359         }
2360
2361         xfs_icsb_unlock_all_counters(mp);
2362 }
2363
2364 STATIC void
2365 xfs_icsb_enable_counter(
2366         xfs_mount_t     *mp,
2367         xfs_sb_field_t  field,
2368         uint64_t        count,
2369         uint64_t        resid)
2370 {
2371         xfs_icsb_cnts_t *cntp;
2372         int             i;
2373
2374         ASSERT((field >= XFS_SBS_ICOUNT) && (field <= XFS_SBS_FDBLOCKS));
2375
2376         xfs_icsb_lock_all_counters(mp);
2377         for_each_online_cpu(i) {
2378                 cntp = per_cpu_ptr(mp->m_sb_cnts, i);
2379                 switch (field) {
2380                 case XFS_SBS_ICOUNT:
2381                         cntp->icsb_icount = count + resid;
2382                         break;
2383                 case XFS_SBS_IFREE:
2384                         cntp->icsb_ifree = count + resid;
2385                         break;
2386                 case XFS_SBS_FDBLOCKS:
2387                         cntp->icsb_fdblocks = count + resid;
2388                         break;
2389                 default:
2390                         BUG();
2391                         break;
2392                 }
2393                 resid = 0;
2394         }
2395         clear_bit(field, &mp->m_icsb_counters);
2396         xfs_icsb_unlock_all_counters(mp);
2397 }
2398
2399 void
2400 xfs_icsb_sync_counters_locked(
2401         xfs_mount_t     *mp,
2402         int             flags)
2403 {
2404         xfs_icsb_cnts_t cnt;
2405
2406         xfs_icsb_count(mp, &cnt, flags);
2407
2408         if (!xfs_icsb_counter_disabled(mp, XFS_SBS_ICOUNT))
2409                 mp->m_sb.sb_icount = cnt.icsb_icount;
2410         if (!xfs_icsb_counter_disabled(mp, XFS_SBS_IFREE))
2411                 mp->m_sb.sb_ifree = cnt.icsb_ifree;
2412         if (!xfs_icsb_counter_disabled(mp, XFS_SBS_FDBLOCKS))
2413                 mp->m_sb.sb_fdblocks = cnt.icsb_fdblocks;
2414 }
2415
2416 /*
2417  * Accurate update of per-cpu counters to incore superblock
2418  */
2419 void
2420 xfs_icsb_sync_counters(
2421         xfs_mount_t     *mp,
2422         int             flags)
2423 {
2424         spin_lock(&mp->m_sb_lock);
2425         xfs_icsb_sync_counters_locked(mp, flags);
2426         spin_unlock(&mp->m_sb_lock);
2427 }
2428
2429 /*
2430  * Balance and enable/disable counters as necessary.
2431  *
2432  * Thresholds for re-enabling counters are somewhat magic.  inode counts are
2433  * chosen to be the same number as single on disk allocation chunk per CPU, and
2434  * free blocks is something far enough zero that we aren't going thrash when we
2435  * get near ENOSPC. We also need to supply a minimum we require per cpu to
2436  * prevent looping endlessly when xfs_alloc_space asks for more than will
2437  * be distributed to a single CPU but each CPU has enough blocks to be
2438  * reenabled.
2439  *
2440  * Note that we can be called when counters are already disabled.
2441  * xfs_icsb_disable_counter() optimises the counter locking in this case to
2442  * prevent locking every per-cpu counter needlessly.
2443  */
2444
2445 #define XFS_ICSB_INO_CNTR_REENABLE      (uint64_t)64
2446 #define XFS_ICSB_FDBLK_CNTR_REENABLE(mp) \
2447                 (uint64_t)(512 + XFS_ALLOC_SET_ASIDE(mp))
2448 STATIC void
2449 xfs_icsb_balance_counter_locked(
2450         xfs_mount_t     *mp,
2451         xfs_sb_field_t  field,
2452         int             min_per_cpu)
2453 {
2454         uint64_t        count, resid;
2455         int             weight = num_online_cpus();
2456         uint64_t        min = (uint64_t)min_per_cpu;
2457
2458         /* disable counter and sync counter */
2459         xfs_icsb_disable_counter(mp, field);
2460
2461         /* update counters  - first CPU gets residual*/
2462         switch (field) {
2463         case XFS_SBS_ICOUNT:
2464                 count = mp->m_sb.sb_icount;
2465                 resid = do_div(count, weight);
2466                 if (count < max(min, XFS_ICSB_INO_CNTR_REENABLE))
2467                         return;
2468                 break;
2469         case XFS_SBS_IFREE:
2470                 count = mp->m_sb.sb_ifree;
2471                 resid = do_div(count, weight);
2472                 if (count < max(min, XFS_ICSB_INO_CNTR_REENABLE))
2473                         return;
2474                 break;
2475         case XFS_SBS_FDBLOCKS:
2476                 count = mp->m_sb.sb_fdblocks;
2477                 resid = do_div(count, weight);
2478                 if (count < max(min, XFS_ICSB_FDBLK_CNTR_REENABLE(mp)))
2479                         return;
2480                 break;
2481         default:
2482                 BUG();
2483                 count = resid = 0;      /* quiet, gcc */
2484                 break;
2485         }
2486
2487         xfs_icsb_enable_counter(mp, field, count, resid);
2488 }
2489
2490 STATIC void
2491 xfs_icsb_balance_counter(
2492         xfs_mount_t     *mp,
2493         xfs_sb_field_t  fields,
2494         int             min_per_cpu)
2495 {
2496         spin_lock(&mp->m_sb_lock);
2497         xfs_icsb_balance_counter_locked(mp, fields, min_per_cpu);
2498         spin_unlock(&mp->m_sb_lock);
2499 }
2500
2501 STATIC int
2502 xfs_icsb_modify_counters(
2503         xfs_mount_t     *mp,
2504         xfs_sb_field_t  field,
2505         int64_t         delta,
2506         int             rsvd)
2507 {
2508         xfs_icsb_cnts_t *icsbp;
2509         long long       lcounter;       /* long counter for 64 bit fields */
2510         int             ret = 0;
2511
2512         might_sleep();
2513 again:
2514         preempt_disable();
2515         icsbp = this_cpu_ptr(mp->m_sb_cnts);
2516
2517         /*
2518          * if the counter is disabled, go to slow path
2519          */
2520         if (unlikely(xfs_icsb_counter_disabled(mp, field)))
2521                 goto slow_path;
2522         xfs_icsb_lock_cntr(icsbp);
2523         if (unlikely(xfs_icsb_counter_disabled(mp, field))) {
2524                 xfs_icsb_unlock_cntr(icsbp);
2525                 goto slow_path;
2526         }
2527
2528         switch (field) {
2529         case XFS_SBS_ICOUNT:
2530                 lcounter = icsbp->icsb_icount;
2531                 lcounter += delta;
2532                 if (unlikely(lcounter < 0))
2533                         goto balance_counter;
2534                 icsbp->icsb_icount = lcounter;
2535                 break;
2536
2537         case XFS_SBS_IFREE:
2538                 lcounter = icsbp->icsb_ifree;
2539                 lcounter += delta;
2540                 if (unlikely(lcounter < 0))
2541                         goto balance_counter;
2542                 icsbp->icsb_ifree = lcounter;
2543                 break;
2544
2545         case XFS_SBS_FDBLOCKS:
2546                 BUG_ON((mp->m_resblks - mp->m_resblks_avail) != 0);
2547
2548                 lcounter = icsbp->icsb_fdblocks - XFS_ALLOC_SET_ASIDE(mp);
2549                 lcounter += delta;
2550                 if (unlikely(lcounter < 0))
2551                         goto balance_counter;
2552                 icsbp->icsb_fdblocks = lcounter + XFS_ALLOC_SET_ASIDE(mp);
2553                 break;
2554         default:
2555                 BUG();
2556                 break;
2557         }
2558         xfs_icsb_unlock_cntr(icsbp);
2559         preempt_enable();
2560         return 0;
2561
2562 slow_path:
2563         preempt_enable();
2564
2565         /*
2566          * serialise with a mutex so we don't burn lots of cpu on
2567          * the superblock lock. We still need to hold the superblock
2568          * lock, however, when we modify the global structures.
2569          */
2570         xfs_icsb_lock(mp);
2571
2572         /*
2573          * Now running atomically.
2574          *
2575          * If the counter is enabled, someone has beaten us to rebalancing.
2576          * Drop the lock and try again in the fast path....
2577          */
2578         if (!(xfs_icsb_counter_disabled(mp, field))) {
2579                 xfs_icsb_unlock(mp);
2580                 goto again;
2581         }
2582
2583         /*
2584          * The counter is currently disabled. Because we are
2585          * running atomically here, we know a rebalance cannot
2586          * be in progress. Hence we can go straight to operating
2587          * on the global superblock. We do not call xfs_mod_incore_sb()
2588          * here even though we need to get the m_sb_lock. Doing so
2589          * will cause us to re-enter this function and deadlock.
2590          * Hence we get the m_sb_lock ourselves and then call
2591          * xfs_mod_incore_sb_unlocked() as the unlocked path operates
2592          * directly on the global counters.
2593          */
2594         spin_lock(&mp->m_sb_lock);
2595         ret = xfs_mod_incore_sb_unlocked(mp, field, delta, rsvd);
2596         spin_unlock(&mp->m_sb_lock);
2597
2598         /*
2599          * Now that we've modified the global superblock, we
2600          * may be able to re-enable the distributed counters
2601          * (e.g. lots of space just got freed). After that
2602          * we are done.
2603          */
2604         if (ret != ENOSPC)
2605                 xfs_icsb_balance_counter(mp, field, 0);
2606         xfs_icsb_unlock(mp);
2607         return ret;
2608
2609 balance_counter:
2610         xfs_icsb_unlock_cntr(icsbp);
2611         preempt_enable();
2612
2613         /*
2614          * We may have multiple threads here if multiple per-cpu
2615          * counters run dry at the same time. This will mean we can
2616          * do more balances than strictly necessary but it is not
2617          * the common slowpath case.
2618          */
2619         xfs_icsb_lock(mp);
2620
2621         /*
2622          * running atomically.
2623          *
2624          * This will leave the counter in the correct state for future
2625          * accesses. After the rebalance, we simply try again and our retry
2626          * will either succeed through the fast path or slow path without
2627          * another balance operation being required.
2628          */
2629         xfs_icsb_balance_counter(mp, field, delta);
2630         xfs_icsb_unlock(mp);
2631         goto again;
2632 }
2633
2634 #endif