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