blob: 9515f96b4ab76c443cf1d2e2bac464b9f4c9e957 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110019#include "xfs_fs.h"
Dave Chinner6ca1c902013-08-12 20:49:26 +100020#include "xfs_format.h"
Dave Chinner70a9883c2013-10-23 10:36:05 +110021#include "xfs_shared.h"
Nathan Scotta844f452005-11-02 14:38:42 +110022#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "xfs_log.h"
Nathan Scotta844f452005-11-02 14:38:42 +110024#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "xfs_trans.h"
Christoph Hellwig211e4d42012-04-23 15:58:34 +100026#include "xfs_trans_priv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_sb.h"
28#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "xfs_mount.h"
Dave Chinner2b9ab5a2013-08-12 20:49:37 +100030#include "xfs_da_btree.h"
31#include "xfs_dir2_format.h"
32#include "xfs_dir2.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "xfs_bmap_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110034#include "xfs_alloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "xfs_ialloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "xfs_dinode.h"
37#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110038#include "xfs_btree.h"
39#include "xfs_ialloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include "xfs_alloc.h"
41#include "xfs_rtalloc.h"
42#include "xfs_bmap.h"
43#include "xfs_error.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include "xfs_quota.h"
45#include "xfs_fsops.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000046#include "xfs_trace.h"
Dave Chinner6d8b79c2012-10-08 21:56:09 +110047#include "xfs_icache.h"
Dave Chinner04a1e6c2013-04-03 16:11:31 +110048#include "xfs_cksum.h"
49#include "xfs_buf_item.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000050
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
David Chinner8d280b92006-03-14 13:13:09 +110052#ifdef HAVE_PERCPU_SB
David Chinner20f4ebf2007-02-10 18:36:10 +110053STATIC void xfs_icsb_balance_counter(xfs_mount_t *, xfs_sb_field_t,
Christoph Hellwig45af6c62008-04-22 17:34:44 +100054 int);
55STATIC void xfs_icsb_balance_counter_locked(xfs_mount_t *, xfs_sb_field_t,
56 int);
David Chinner36fbe6e2008-04-10 12:19:56 +100057STATIC void xfs_icsb_disable_counter(xfs_mount_t *, xfs_sb_field_t);
David Chinner8d280b92006-03-14 13:13:09 +110058#else
59
Christoph Hellwig45af6c62008-04-22 17:34:44 +100060#define xfs_icsb_balance_counter(mp, a, b) do { } while (0)
61#define xfs_icsb_balance_counter_locked(mp, a, b) do { } while (0)
David Chinner8d280b92006-03-14 13:13:09 +110062#endif
63
Christoph Hellwig27174202009-03-30 10:21:31 +020064static DEFINE_MUTEX(xfs_uuid_table_mutex);
65static int xfs_uuid_table_size;
66static uuid_t *xfs_uuid_table;
67
68/*
69 * See if the UUID is unique among mounted XFS filesystems.
70 * Mount fails if UUID is nil or a FS with the same UUID is already mounted.
71 */
72STATIC int
73xfs_uuid_mount(
74 struct xfs_mount *mp)
75{
76 uuid_t *uuid = &mp->m_sb.sb_uuid;
77 int hole, i;
78
79 if (mp->m_flags & XFS_MOUNT_NOUUID)
80 return 0;
81
82 if (uuid_is_nil(uuid)) {
Dave Chinner0b932cc2011-03-07 10:08:35 +110083 xfs_warn(mp, "Filesystem has nil UUID - can't mount");
Christoph Hellwig27174202009-03-30 10:21:31 +020084 return XFS_ERROR(EINVAL);
85 }
86
87 mutex_lock(&xfs_uuid_table_mutex);
88 for (i = 0, hole = -1; i < xfs_uuid_table_size; i++) {
89 if (uuid_is_nil(&xfs_uuid_table[i])) {
90 hole = i;
91 continue;
92 }
93 if (uuid_equal(uuid, &xfs_uuid_table[i]))
94 goto out_duplicate;
95 }
96
97 if (hole < 0) {
98 xfs_uuid_table = kmem_realloc(xfs_uuid_table,
99 (xfs_uuid_table_size + 1) * sizeof(*xfs_uuid_table),
100 xfs_uuid_table_size * sizeof(*xfs_uuid_table),
101 KM_SLEEP);
102 hole = xfs_uuid_table_size++;
103 }
104 xfs_uuid_table[hole] = *uuid;
105 mutex_unlock(&xfs_uuid_table_mutex);
106
107 return 0;
108
109 out_duplicate:
110 mutex_unlock(&xfs_uuid_table_mutex);
Mitsuo Hayasaka021000e2012-01-13 05:58:39 +0000111 xfs_warn(mp, "Filesystem has duplicate UUID %pU - can't mount", uuid);
Christoph Hellwig27174202009-03-30 10:21:31 +0200112 return XFS_ERROR(EINVAL);
113}
114
115STATIC void
116xfs_uuid_unmount(
117 struct xfs_mount *mp)
118{
119 uuid_t *uuid = &mp->m_sb.sb_uuid;
120 int i;
121
122 if (mp->m_flags & XFS_MOUNT_NOUUID)
123 return;
124
125 mutex_lock(&xfs_uuid_table_mutex);
126 for (i = 0; i < xfs_uuid_table_size; i++) {
127 if (uuid_is_nil(&xfs_uuid_table[i]))
128 continue;
129 if (!uuid_equal(uuid, &xfs_uuid_table[i]))
130 continue;
131 memset(&xfs_uuid_table[i], 0, sizeof(uuid_t));
132 break;
133 }
134 ASSERT(i < xfs_uuid_table_size);
135 mutex_unlock(&xfs_uuid_table_mutex);
136}
137
138
Dave Chinnere1765792010-09-22 10:47:20 +1000139STATIC void
140__xfs_free_perag(
141 struct rcu_head *head)
142{
143 struct xfs_perag *pag = container_of(head, struct xfs_perag, rcu_head);
144
145 ASSERT(atomic_read(&pag->pag_ref) == 0);
146 kmem_free(pag);
147}
148
Dave Chinner0fa800f2010-01-11 11:47:46 +0000149/*
Dave Chinnere1765792010-09-22 10:47:20 +1000150 * Free up the per-ag resources associated with the mount structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 */
Christoph Hellwigc962fb72008-05-20 15:10:52 +1000152STATIC void
Christoph Hellwigff4f0382008-08-13 16:50:47 +1000153xfs_free_perag(
Christoph Hellwig745f6912007-08-30 17:20:39 +1000154 xfs_mount_t *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000156 xfs_agnumber_t agno;
157 struct xfs_perag *pag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000159 for (agno = 0; agno < mp->m_sb.sb_agcount; agno++) {
160 spin_lock(&mp->m_perag_lock);
161 pag = radix_tree_delete(&mp->m_perag_tree, agno);
162 spin_unlock(&mp->m_perag_lock);
Dave Chinnere1765792010-09-22 10:47:20 +1000163 ASSERT(pag);
Dave Chinnerf83282a2010-11-08 08:55:04 +0000164 ASSERT(atomic_read(&pag->pag_ref) == 0);
Dave Chinnere1765792010-09-22 10:47:20 +1000165 call_rcu(&pag->rcu_head, __xfs_free_perag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167}
168
Nathan Scott4cc929e2007-05-14 18:24:02 +1000169/*
170 * Check size of device based on the (data/realtime) block count.
171 * Note: this check is used by the growfs code as well as mount.
172 */
173int
174xfs_sb_validate_fsb_count(
175 xfs_sb_t *sbp,
176 __uint64_t nblocks)
177{
178 ASSERT(PAGE_SHIFT >= sbp->sb_blocklog);
179 ASSERT(sbp->sb_blocklog >= BBSHIFT);
180
181#if XFS_BIG_BLKNOS /* Limited by ULONG_MAX of page cache index */
182 if (nblocks >> (PAGE_CACHE_SHIFT - sbp->sb_blocklog) > ULONG_MAX)
Eric Sandeen657a4cf2010-04-30 03:42:49 +0000183 return EFBIG;
Nathan Scott4cc929e2007-05-14 18:24:02 +1000184#else /* Limited by UINT_MAX of sectors */
185 if (nblocks << (sbp->sb_blocklog - BBSHIFT) > UINT_MAX)
Eric Sandeen657a4cf2010-04-30 03:42:49 +0000186 return EFBIG;
Nathan Scott4cc929e2007-05-14 18:24:02 +1000187#endif
188 return 0;
189}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000191int
Nathan Scottc11e2c32005-11-02 15:11:45 +1100192xfs_initialize_perag(
Nathan Scottc11e2c32005-11-02 15:11:45 +1100193 xfs_mount_t *mp,
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000194 xfs_agnumber_t agcount,
195 xfs_agnumber_t *maxagi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300197 xfs_agnumber_t index;
Dave Chinner8b26c582010-01-11 11:47:48 +0000198 xfs_agnumber_t first_initialised = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 xfs_perag_t *pag;
200 xfs_agino_t agino;
201 xfs_ino_t ino;
202 xfs_sb_t *sbp = &mp->m_sb;
Dave Chinner8b26c582010-01-11 11:47:48 +0000203 int error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000205 /*
206 * Walk the current per-ag tree so we don't try to initialise AGs
207 * that already exist (growfs case). Allocate and insert all the
208 * AGs we don't find ready for initialisation.
209 */
210 for (index = 0; index < agcount; index++) {
211 pag = xfs_perag_get(mp, index);
212 if (pag) {
213 xfs_perag_put(pag);
214 continue;
215 }
Dave Chinner8b26c582010-01-11 11:47:48 +0000216 if (!first_initialised)
217 first_initialised = index;
Christoph Hellwigfb3b5042010-05-28 19:03:10 +0000218
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000219 pag = kmem_zalloc(sizeof(*pag), KM_MAYFAIL);
220 if (!pag)
Dave Chinner8b26c582010-01-11 11:47:48 +0000221 goto out_unwind;
Christoph Hellwigfb3b5042010-05-28 19:03:10 +0000222 pag->pag_agno = index;
223 pag->pag_mount = mp;
Dave Chinner1a427ab2010-12-16 17:08:41 +1100224 spin_lock_init(&pag->pag_ici_lock);
Dave Chinner69b491c2010-09-27 11:09:51 +1000225 mutex_init(&pag->pag_ici_reclaim_lock);
Christoph Hellwigfb3b5042010-05-28 19:03:10 +0000226 INIT_RADIX_TREE(&pag->pag_ici_root, GFP_ATOMIC);
Dave Chinner74f75a02010-09-24 19:59:04 +1000227 spin_lock_init(&pag->pag_buf_lock);
228 pag->pag_buf_tree = RB_ROOT;
Christoph Hellwigfb3b5042010-05-28 19:03:10 +0000229
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000230 if (radix_tree_preload(GFP_NOFS))
Dave Chinner8b26c582010-01-11 11:47:48 +0000231 goto out_unwind;
Christoph Hellwigfb3b5042010-05-28 19:03:10 +0000232
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000233 spin_lock(&mp->m_perag_lock);
234 if (radix_tree_insert(&mp->m_perag_tree, index, pag)) {
235 BUG();
236 spin_unlock(&mp->m_perag_lock);
Dave Chinner8b26c582010-01-11 11:47:48 +0000237 radix_tree_preload_end();
238 error = -EEXIST;
239 goto out_unwind;
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000240 }
241 spin_unlock(&mp->m_perag_lock);
242 radix_tree_preload_end();
243 }
244
Christoph Hellwigfb3b5042010-05-28 19:03:10 +0000245 /*
246 * If we mount with the inode64 option, or no inode overflows
247 * the legacy 32-bit address space clear the inode32 option.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 */
Christoph Hellwigfb3b5042010-05-28 19:03:10 +0000249 agino = XFS_OFFBNO_TO_AGINO(mp, sbp->sb_agblocks - 1, 0);
250 ino = XFS_AGINO_TO_INO(mp, agcount - 1, agino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Christoph Hellwigfb3b5042010-05-28 19:03:10 +0000252 if ((mp->m_flags & XFS_MOUNT_SMALL_INUMS) && ino > XFS_MAXINUMBER_32)
253 mp->m_flags |= XFS_MOUNT_32BITINODES;
254 else
255 mp->m_flags &= ~XFS_MOUNT_32BITINODES;
256
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300257 if (mp->m_flags & XFS_MOUNT_32BITINODES)
258 index = xfs_set_inode32(mp);
259 else
260 index = xfs_set_inode64(mp);
Christoph Hellwigfb3b5042010-05-28 19:03:10 +0000261
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000262 if (maxagi)
263 *maxagi = index;
264 return 0;
Dave Chinner8b26c582010-01-11 11:47:48 +0000265
266out_unwind:
267 kmem_free(pag);
268 for (; index > first_initialised; index--) {
269 pag = radix_tree_delete(&mp->m_perag_tree, index);
270 kmem_free(pag);
271 }
272 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273}
274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275/*
276 * xfs_readsb
277 *
278 * Does the initial read of the superblock.
279 */
280int
Dave Chinnerff550682013-08-12 20:49:41 +1000281xfs_readsb(
282 struct xfs_mount *mp,
283 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284{
285 unsigned int sector_size;
Dave Chinner04a1e6c2013-04-03 16:11:31 +1100286 struct xfs_buf *bp;
287 struct xfs_sb *sbp = &mp->m_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 int error;
Dave Chinneraf34e092011-03-07 10:04:35 +1100289 int loud = !(flags & XFS_MFSI_QUIET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
291 ASSERT(mp->m_sb_bp == NULL);
292 ASSERT(mp->m_ddev_targp != NULL);
293
294 /*
295 * Allocate a (locked) buffer to hold the superblock.
296 * This will be kept around at all times to optimize
297 * access to the superblock.
298 */
299 sector_size = xfs_getsize_buftarg(mp->m_ddev_targp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Dave Chinner26af6552010-09-22 10:47:20 +1000301reread:
Dave Chinnere70b73f2012-04-23 15:58:49 +1000302 bp = xfs_buf_read_uncached(mp->m_ddev_targp, XFS_SB_DADDR,
Dave Chinner98021822012-11-12 22:54:03 +1100303 BTOBB(sector_size), 0,
Dave Chinner1813dd62012-11-14 17:54:40 +1100304 loud ? &xfs_sb_buf_ops
305 : &xfs_sb_quiet_buf_ops);
Dave Chinner26af6552010-09-22 10:47:20 +1000306 if (!bp) {
Dave Chinneraf34e092011-03-07 10:04:35 +1100307 if (loud)
308 xfs_warn(mp, "SB buffer read failed");
Dave Chinner26af6552010-09-22 10:47:20 +1000309 return EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 }
Dave Chinnereab4e632012-11-12 22:54:02 +1100311 if (bp->b_error) {
312 error = bp->b_error;
313 if (loud)
Dave Chinnere721f502013-04-03 16:11:32 +1100314 xfs_warn(mp, "SB validate failed with error %d.", error);
Dave Chinnereab4e632012-11-12 22:54:02 +1100315 goto release_buf;
316 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
318 /*
319 * Initialize the mount structure from the superblock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 */
Dave Chinner98021822012-11-12 22:54:03 +1100321 xfs_sb_from_disk(&mp->m_sb, XFS_BUF_TO_SBP(bp));
Chandra Seetharaman83e782e2013-06-27 17:25:10 -0500322 xfs_sb_quota_from_disk(&mp->m_sb);
Dave Chinnerff550682013-08-12 20:49:41 +1000323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 /*
325 * We must be able to do sector-sized and sector-aligned IO.
326 */
Dave Chinner04a1e6c2013-04-03 16:11:31 +1100327 if (sector_size > sbp->sb_sectsize) {
Dave Chinneraf34e092011-03-07 10:04:35 +1100328 if (loud)
329 xfs_warn(mp, "device supports %u byte sectors (not %u)",
Dave Chinner04a1e6c2013-04-03 16:11:31 +1100330 sector_size, sbp->sb_sectsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 error = ENOSYS;
Dave Chinner26af6552010-09-22 10:47:20 +1000332 goto release_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 }
334
335 /*
336 * If device sector size is smaller than the superblock size,
337 * re-read the superblock so the buffer is correctly sized.
338 */
Dave Chinner04a1e6c2013-04-03 16:11:31 +1100339 if (sector_size < sbp->sb_sectsize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 xfs_buf_relse(bp);
Dave Chinner04a1e6c2013-04-03 16:11:31 +1100341 sector_size = sbp->sb_sectsize;
Dave Chinner26af6552010-09-22 10:47:20 +1000342 goto reread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 }
344
Lachlan McIlroy5478eea2007-02-10 18:36:29 +1100345 /* Initialize per-cpu counters */
346 xfs_icsb_reinit_counters(mp);
David Chinner8d280b92006-03-14 13:13:09 +1100347
Dave Chinner04a1e6c2013-04-03 16:11:31 +1100348 /* no need to be quiet anymore, so reset the buf ops */
349 bp->b_ops = &xfs_sb_buf_ops;
350
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 mp->m_sb_bp = bp;
Dave Chinner26af6552010-09-22 10:47:20 +1000352 xfs_buf_unlock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 return 0;
354
Dave Chinner26af6552010-09-22 10:47:20 +1000355release_buf:
356 xfs_buf_relse(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 return error;
358}
359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360/*
Eric Sandeen0771fb42007-10-12 11:03:40 +1000361 * Update alignment values based on mount options and sb values
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 */
Eric Sandeen0771fb42007-10-12 11:03:40 +1000363STATIC int
Christoph Hellwig7884bc82009-01-19 02:04:07 +0100364xfs_update_alignment(xfs_mount_t *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 xfs_sb_t *sbp = &(mp->m_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Christoph Hellwig42490232008-08-13 16:49:32 +1000368 if (mp->m_dalign) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 /*
370 * If stripe unit and stripe width are not multiples
371 * of the fs blocksize turn off alignment.
372 */
373 if ((BBTOB(mp->m_dalign) & mp->m_blockmask) ||
374 (BBTOB(mp->m_swidth) & mp->m_blockmask)) {
Jie Liu39a45d82013-05-02 19:27:47 +0800375 xfs_warn(mp,
376 "alignment check failed: sunit/swidth vs. blocksize(%d)",
377 sbp->sb_blocksize);
378 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 } else {
380 /*
381 * Convert the stripe unit and width to FSBs.
382 */
383 mp->m_dalign = XFS_BB_TO_FSBT(mp, mp->m_dalign);
384 if (mp->m_dalign && (sbp->sb_agblocks % mp->m_dalign)) {
Dave Chinner53487782011-03-07 10:05:35 +1100385 xfs_warn(mp,
Jie Liu39a45d82013-05-02 19:27:47 +0800386 "alignment check failed: sunit/swidth vs. agsize(%d)",
387 sbp->sb_agblocks);
388 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 } else if (mp->m_dalign) {
390 mp->m_swidth = XFS_BB_TO_FSBT(mp, mp->m_swidth);
391 } else {
Jie Liu39a45d82013-05-02 19:27:47 +0800392 xfs_warn(mp,
393 "alignment check failed: sunit(%d) less than bsize(%d)",
394 mp->m_dalign, sbp->sb_blocksize);
395 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 }
397 }
398
399 /*
400 * Update superblock with new values
401 * and log changes
402 */
Eric Sandeen62118702008-03-06 13:44:28 +1100403 if (xfs_sb_version_hasdalign(sbp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 if (sbp->sb_unit != mp->m_dalign) {
405 sbp->sb_unit = mp->m_dalign;
Christoph Hellwig7884bc82009-01-19 02:04:07 +0100406 mp->m_update_flags |= XFS_SB_UNIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 }
408 if (sbp->sb_width != mp->m_swidth) {
409 sbp->sb_width = mp->m_swidth;
Christoph Hellwig7884bc82009-01-19 02:04:07 +0100410 mp->m_update_flags |= XFS_SB_WIDTH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 }
Jie Liu34d7f602013-05-02 19:27:53 +0800412 } else {
413 xfs_warn(mp,
414 "cannot change alignment: superblock does not support data alignment");
415 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 }
417 } else if ((mp->m_flags & XFS_MOUNT_NOALIGN) != XFS_MOUNT_NOALIGN &&
Eric Sandeen62118702008-03-06 13:44:28 +1100418 xfs_sb_version_hasdalign(&mp->m_sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 mp->m_dalign = sbp->sb_unit;
420 mp->m_swidth = sbp->sb_width;
421 }
422
Eric Sandeen0771fb42007-10-12 11:03:40 +1000423 return 0;
424}
425
426/*
427 * Set the maximum inode count for this filesystem
428 */
429STATIC void
430xfs_set_maxicount(xfs_mount_t *mp)
431{
432 xfs_sb_t *sbp = &(mp->m_sb);
433 __uint64_t icount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
435 if (sbp->sb_imax_pct) {
Eric Sandeen0771fb42007-10-12 11:03:40 +1000436 /*
437 * Make sure the maximum inode count is a multiple
438 * of the units we allocate inodes in.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 icount = sbp->sb_dblocks * sbp->sb_imax_pct;
441 do_div(icount, 100);
442 do_div(icount, mp->m_ialloc_blks);
443 mp->m_maxicount = (icount * mp->m_ialloc_blks) <<
444 sbp->sb_inopblog;
Eric Sandeen0771fb42007-10-12 11:03:40 +1000445 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 mp->m_maxicount = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 }
Eric Sandeen0771fb42007-10-12 11:03:40 +1000448}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
Eric Sandeen0771fb42007-10-12 11:03:40 +1000450/*
451 * Set the default minimum read and write sizes unless
452 * already specified in a mount option.
453 * We use smaller I/O sizes when the file system
454 * is being used for NFS service (wsync mount option).
455 */
456STATIC void
457xfs_set_rw_sizes(xfs_mount_t *mp)
458{
459 xfs_sb_t *sbp = &(mp->m_sb);
460 int readio_log, writeio_log;
461
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 if (!(mp->m_flags & XFS_MOUNT_DFLT_IOSIZE)) {
463 if (mp->m_flags & XFS_MOUNT_WSYNC) {
464 readio_log = XFS_WSYNC_READIO_LOG;
465 writeio_log = XFS_WSYNC_WRITEIO_LOG;
466 } else {
467 readio_log = XFS_READIO_LOG_LARGE;
468 writeio_log = XFS_WRITEIO_LOG_LARGE;
469 }
470 } else {
471 readio_log = mp->m_readio_log;
472 writeio_log = mp->m_writeio_log;
473 }
474
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 if (sbp->sb_blocklog > readio_log) {
476 mp->m_readio_log = sbp->sb_blocklog;
477 } else {
478 mp->m_readio_log = readio_log;
479 }
480 mp->m_readio_blocks = 1 << (mp->m_readio_log - sbp->sb_blocklog);
481 if (sbp->sb_blocklog > writeio_log) {
482 mp->m_writeio_log = sbp->sb_blocklog;
483 } else {
484 mp->m_writeio_log = writeio_log;
485 }
486 mp->m_writeio_blocks = 1 << (mp->m_writeio_log - sbp->sb_blocklog);
Eric Sandeen0771fb42007-10-12 11:03:40 +1000487}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Eric Sandeen0771fb42007-10-12 11:03:40 +1000489/*
Dave Chinner055388a2011-01-04 11:35:03 +1100490 * precalculate the low space thresholds for dynamic speculative preallocation.
491 */
492void
493xfs_set_low_space_thresholds(
494 struct xfs_mount *mp)
495{
496 int i;
497
498 for (i = 0; i < XFS_LOWSP_MAX; i++) {
499 __uint64_t space = mp->m_sb.sb_dblocks;
500
501 do_div(space, 100);
502 mp->m_low_space[i] = space * (i + 1);
503 }
504}
505
506
507/*
Eric Sandeen0771fb42007-10-12 11:03:40 +1000508 * Set whether we're using inode alignment.
509 */
510STATIC void
511xfs_set_inoalignment(xfs_mount_t *mp)
512{
Eric Sandeen62118702008-03-06 13:44:28 +1100513 if (xfs_sb_version_hasalign(&mp->m_sb) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 mp->m_sb.sb_inoalignmt >=
515 XFS_B_TO_FSBT(mp, mp->m_inode_cluster_size))
516 mp->m_inoalign_mask = mp->m_sb.sb_inoalignmt - 1;
517 else
518 mp->m_inoalign_mask = 0;
519 /*
520 * If we are using stripe alignment, check whether
521 * the stripe unit is a multiple of the inode alignment
522 */
523 if (mp->m_dalign && mp->m_inoalign_mask &&
524 !(mp->m_dalign & mp->m_inoalign_mask))
525 mp->m_sinoalign = mp->m_dalign;
526 else
527 mp->m_sinoalign = 0;
Eric Sandeen0771fb42007-10-12 11:03:40 +1000528}
529
530/*
Zhi Yong Wu0471f622013-08-07 10:10:58 +0000531 * Check that the data (and log if separate) is an ok size.
Eric Sandeen0771fb42007-10-12 11:03:40 +1000532 */
533STATIC int
Christoph Hellwig42490232008-08-13 16:49:32 +1000534xfs_check_sizes(xfs_mount_t *mp)
Eric Sandeen0771fb42007-10-12 11:03:40 +1000535{
536 xfs_buf_t *bp;
537 xfs_daddr_t d;
Eric Sandeen0771fb42007-10-12 11:03:40 +1000538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 d = (xfs_daddr_t)XFS_FSB_TO_BB(mp, mp->m_sb.sb_dblocks);
540 if (XFS_BB_TO_FSB(mp, d) != mp->m_sb.sb_dblocks) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100541 xfs_warn(mp, "filesystem size mismatch detected");
Eric Sandeen657a4cf2010-04-30 03:42:49 +0000542 return XFS_ERROR(EFBIG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 }
Dave Chinnere70b73f2012-04-23 15:58:49 +1000544 bp = xfs_buf_read_uncached(mp->m_ddev_targp,
Dave Chinner1922c942010-09-22 10:47:20 +1000545 d - XFS_FSS_TO_BB(mp, 1),
Dave Chinnerc3f8fc72012-11-12 22:54:01 +1100546 XFS_FSS_TO_BB(mp, 1), 0, NULL);
Dave Chinner1922c942010-09-22 10:47:20 +1000547 if (!bp) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100548 xfs_warn(mp, "last sector read failed");
Dave Chinner1922c942010-09-22 10:47:20 +1000549 return EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 }
Dave Chinner1922c942010-09-22 10:47:20 +1000551 xfs_buf_relse(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Christoph Hellwig42490232008-08-13 16:49:32 +1000553 if (mp->m_logdev_targp != mp->m_ddev_targp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 d = (xfs_daddr_t)XFS_FSB_TO_BB(mp, mp->m_sb.sb_logblocks);
555 if (XFS_BB_TO_FSB(mp, d) != mp->m_sb.sb_logblocks) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100556 xfs_warn(mp, "log size mismatch detected");
Eric Sandeen657a4cf2010-04-30 03:42:49 +0000557 return XFS_ERROR(EFBIG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 }
Dave Chinnere70b73f2012-04-23 15:58:49 +1000559 bp = xfs_buf_read_uncached(mp->m_logdev_targp,
Dave Chinner1922c942010-09-22 10:47:20 +1000560 d - XFS_FSB_TO_BB(mp, 1),
Dave Chinnerc3f8fc72012-11-12 22:54:01 +1100561 XFS_FSB_TO_BB(mp, 1), 0, NULL);
Dave Chinner1922c942010-09-22 10:47:20 +1000562 if (!bp) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100563 xfs_warn(mp, "log device read failed");
Dave Chinner1922c942010-09-22 10:47:20 +1000564 return EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 }
Dave Chinner1922c942010-09-22 10:47:20 +1000566 xfs_buf_relse(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 }
Eric Sandeen0771fb42007-10-12 11:03:40 +1000568 return 0;
569}
570
571/*
Christoph Hellwig7d095252009-06-08 15:33:32 +0200572 * Clear the quotaflags in memory and in the superblock.
573 */
574int
575xfs_mount_reset_sbqflags(
576 struct xfs_mount *mp)
577{
578 int error;
579 struct xfs_trans *tp;
580
581 mp->m_qflags = 0;
582
583 /*
584 * It is OK to look at sb_qflags here in mount path,
585 * without m_sb_lock.
586 */
587 if (mp->m_sb.sb_qflags == 0)
588 return 0;
589 spin_lock(&mp->m_sb_lock);
590 mp->m_sb.sb_qflags = 0;
591 spin_unlock(&mp->m_sb_lock);
592
593 /*
594 * If the fs is readonly, let the incore superblock run
595 * with quotas off but don't flush the update out to disk
596 */
597 if (mp->m_flags & XFS_MOUNT_RDONLY)
598 return 0;
599
Christoph Hellwig7d095252009-06-08 15:33:32 +0200600 tp = xfs_trans_alloc(mp, XFS_TRANS_QM_SBCHANGE);
Jie Liu3d3c8b52013-08-12 20:49:59 +1000601 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_qm_sbchange, 0, 0);
Christoph Hellwig7d095252009-06-08 15:33:32 +0200602 if (error) {
603 xfs_trans_cancel(tp, 0);
Dave Chinner53487782011-03-07 10:05:35 +1100604 xfs_alert(mp, "%s: Superblock update failed!", __func__);
Christoph Hellwig7d095252009-06-08 15:33:32 +0200605 return error;
606 }
607
608 xfs_mod_sb(tp, XFS_SB_QFLAGS);
609 return xfs_trans_commit(tp, 0);
610}
611
Eric Sandeend5db0f92010-02-05 22:59:53 +0000612__uint64_t
613xfs_default_resblks(xfs_mount_t *mp)
614{
615 __uint64_t resblks;
616
617 /*
Dave Chinner8babd8a2010-03-04 01:46:25 +0000618 * We default to 5% or 8192 fsbs of space reserved, whichever is
619 * smaller. This is intended to cover concurrent allocation
620 * transactions when we initially hit enospc. These each require a 4
621 * block reservation. Hence by default we cover roughly 2000 concurrent
622 * allocation reservations.
Eric Sandeend5db0f92010-02-05 22:59:53 +0000623 */
624 resblks = mp->m_sb.sb_dblocks;
625 do_div(resblks, 20);
Dave Chinner8babd8a2010-03-04 01:46:25 +0000626 resblks = min_t(__uint64_t, resblks, 8192);
Eric Sandeend5db0f92010-02-05 22:59:53 +0000627 return resblks;
628}
629
Christoph Hellwig7d095252009-06-08 15:33:32 +0200630/*
Eric Sandeen0771fb42007-10-12 11:03:40 +1000631 * This function does the following on an initial mount of a file system:
632 * - reads the superblock from disk and init the mount struct
633 * - if we're a 32-bit kernel, do a size check on the superblock
634 * so we don't mount terabyte filesystems
635 * - init mount struct realtime fields
636 * - allocate inode hash table for fs
637 * - init directory manager
638 * - perform recovery and init the log manager
639 */
640int
641xfs_mountfs(
Christoph Hellwig42490232008-08-13 16:49:32 +1000642 xfs_mount_t *mp)
Eric Sandeen0771fb42007-10-12 11:03:40 +1000643{
644 xfs_sb_t *sbp = &(mp->m_sb);
645 xfs_inode_t *rip;
Eric Sandeen0771fb42007-10-12 11:03:40 +1000646 __uint64_t resblks;
Christoph Hellwig7d095252009-06-08 15:33:32 +0200647 uint quotamount = 0;
648 uint quotaflags = 0;
Eric Sandeen0771fb42007-10-12 11:03:40 +1000649 int error = 0;
650
Dave Chinnerff550682013-08-12 20:49:41 +1000651 xfs_sb_mount_common(mp, sbp);
Eric Sandeen0771fb42007-10-12 11:03:40 +1000652
653 /*
Eric Sandeene6957ea2008-04-10 12:19:34 +1000654 * Check for a mismatched features2 values. Older kernels
655 * read & wrote into the wrong sb offset for sb_features2
656 * on some platforms due to xfs_sb_t not being 64bit size aligned
657 * when sb_features2 was added, which made older superblock
658 * reading/writing routines swap it as a 64-bit value.
David Chinneree1c0902008-03-06 13:45:50 +1100659 *
Eric Sandeene6957ea2008-04-10 12:19:34 +1000660 * For backwards compatibility, we make both slots equal.
661 *
662 * If we detect a mismatched field, we OR the set bits into the
663 * existing features2 field in case it has already been modified; we
664 * don't want to lose any features. We then update the bad location
665 * with the ORed value so that older kernels will see any features2
666 * flags, and mark the two fields as needing updates once the
667 * transaction subsystem is online.
David Chinneree1c0902008-03-06 13:45:50 +1100668 */
Eric Sandeene6957ea2008-04-10 12:19:34 +1000669 if (xfs_sb_has_mismatched_features2(sbp)) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100670 xfs_warn(mp, "correcting sb_features alignment problem");
David Chinneree1c0902008-03-06 13:45:50 +1100671 sbp->sb_features2 |= sbp->sb_bad_features2;
Eric Sandeene6957ea2008-04-10 12:19:34 +1000672 sbp->sb_bad_features2 = sbp->sb_features2;
Christoph Hellwig7884bc82009-01-19 02:04:07 +0100673 mp->m_update_flags |= XFS_SB_FEATURES2 | XFS_SB_BAD_FEATURES2;
Eric Sandeene6957ea2008-04-10 12:19:34 +1000674
675 /*
676 * Re-check for ATTR2 in case it was found in bad_features2
677 * slot.
678 */
Tim Shimmin7c12f292008-04-30 18:15:28 +1000679 if (xfs_sb_version_hasattr2(&mp->m_sb) &&
680 !(mp->m_flags & XFS_MOUNT_NOATTR2))
Eric Sandeene6957ea2008-04-10 12:19:34 +1000681 mp->m_flags |= XFS_MOUNT_ATTR2;
Tim Shimmin7c12f292008-04-30 18:15:28 +1000682 }
Eric Sandeene6957ea2008-04-10 12:19:34 +1000683
Tim Shimmin7c12f292008-04-30 18:15:28 +1000684 if (xfs_sb_version_hasattr2(&mp->m_sb) &&
685 (mp->m_flags & XFS_MOUNT_NOATTR2)) {
686 xfs_sb_version_removeattr2(&mp->m_sb);
Christoph Hellwig7884bc82009-01-19 02:04:07 +0100687 mp->m_update_flags |= XFS_SB_FEATURES2;
Tim Shimmin7c12f292008-04-30 18:15:28 +1000688
689 /* update sb_versionnum for the clearing of the morebits */
690 if (!sbp->sb_features2)
Christoph Hellwig7884bc82009-01-19 02:04:07 +0100691 mp->m_update_flags |= XFS_SB_VERSIONNUM;
David Chinneree1c0902008-03-06 13:45:50 +1100692 }
693
694 /*
Eric Sandeen0771fb42007-10-12 11:03:40 +1000695 * Check if sb_agblocks is aligned at stripe boundary
696 * If sb_agblocks is NOT aligned turn off m_dalign since
697 * allocator alignment is within an ag, therefore ag has
698 * to be aligned at stripe boundary.
699 */
Christoph Hellwig7884bc82009-01-19 02:04:07 +0100700 error = xfs_update_alignment(mp);
Eric Sandeen0771fb42007-10-12 11:03:40 +1000701 if (error)
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100702 goto out;
Eric Sandeen0771fb42007-10-12 11:03:40 +1000703
704 xfs_alloc_compute_maxlevels(mp);
705 xfs_bmap_compute_maxlevels(mp, XFS_DATA_FORK);
706 xfs_bmap_compute_maxlevels(mp, XFS_ATTR_FORK);
707 xfs_ialloc_compute_maxlevels(mp);
708
709 xfs_set_maxicount(mp);
710
Christoph Hellwig27174202009-03-30 10:21:31 +0200711 error = xfs_uuid_mount(mp);
712 if (error)
713 goto out;
Eric Sandeen0771fb42007-10-12 11:03:40 +1000714
715 /*
716 * Set the minimum read and write sizes
717 */
718 xfs_set_rw_sizes(mp);
719
Dave Chinner055388a2011-01-04 11:35:03 +1100720 /* set the low space thresholds for dynamic preallocation */
721 xfs_set_low_space_thresholds(mp);
722
Eric Sandeen0771fb42007-10-12 11:03:40 +1000723 /*
724 * Set the inode cluster size.
725 * This may still be overridden by the file system
726 * block size if it is larger than the chosen cluster size.
727 */
728 mp->m_inode_cluster_size = XFS_INODE_BIG_CLUSTER_SIZE;
729
730 /*
731 * Set inode alignment fields
732 */
733 xfs_set_inoalignment(mp);
734
735 /*
Zhi Yong Wuc2bfbc92013-08-12 03:15:03 +0000736 * Check that the data (and log if separate) is an ok size.
Eric Sandeen0771fb42007-10-12 11:03:40 +1000737 */
Christoph Hellwig42490232008-08-13 16:49:32 +1000738 error = xfs_check_sizes(mp);
Eric Sandeen0771fb42007-10-12 11:03:40 +1000739 if (error)
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100740 goto out_remove_uuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
742 /*
743 * Initialize realtime fields in the mount structure
744 */
Eric Sandeen0771fb42007-10-12 11:03:40 +1000745 error = xfs_rtmount_init(mp);
746 if (error) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100747 xfs_warn(mp, "RT mount failed");
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100748 goto out_remove_uuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 }
750
751 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 * Copies the low order bits of the timestamp and the randomly
753 * set "sequence" number out of a UUID.
754 */
755 uuid_getnodeuniq(&sbp->sb_uuid, mp->m_fixedfsid);
756
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 mp->m_dmevmask = 0; /* not persistent; set after each mount */
758
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000759 xfs_dir_mount(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
761 /*
762 * Initialize the attribute manager's entries.
763 */
764 mp->m_attr_magicpct = (mp->m_sb.sb_blocksize * 37) / 100;
765
766 /*
767 * Initialize the precomputed transaction reservations values.
768 */
769 xfs_trans_init(mp);
770
771 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 * Allocate and initialize the per-ag data.
773 */
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000774 spin_lock_init(&mp->m_perag_lock);
Dave Chinner9b98b6f2010-05-27 01:58:13 +0000775 INIT_RADIX_TREE(&mp->m_perag_tree, GFP_ATOMIC);
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000776 error = xfs_initialize_perag(mp, sbp->sb_agcount, &mp->m_maxagi);
777 if (error) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100778 xfs_warn(mp, "Failed per-ag init: %d", error);
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100779 goto out_remove_uuid;
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000780 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100782 if (!sbp->sb_logblocks) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100783 xfs_warn(mp, "no log defined");
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100784 XFS_ERROR_REPORT("xfs_mountfs", XFS_ERRLEVEL_LOW, mp);
785 error = XFS_ERROR(EFSCORRUPTED);
786 goto out_free_perag;
787 }
788
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 /*
790 * log's mount-time initialization. Perform 1st part recovery if needed
791 */
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100792 error = xfs_log_mount(mp, mp->m_logdev_targp,
793 XFS_FSB_TO_DADDR(mp, sbp->sb_logstart),
794 XFS_FSB_TO_BB(mp, sbp->sb_logblocks));
795 if (error) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100796 xfs_warn(mp, "log mount failed");
Dave Chinnerd4f35122012-04-23 15:59:06 +1000797 goto out_fail_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 }
799
800 /*
David Chinner92821e22007-05-24 15:26:31 +1000801 * Now the log is mounted, we know if it was an unclean shutdown or
802 * not. If it was, with the first phase of recovery has completed, we
803 * have consistent AG blocks on disk. We have not recovered EFIs yet,
804 * but they are recovered transactionally in the second recovery phase
805 * later.
806 *
807 * Hence we can safely re-initialise incore superblock counters from
808 * the per-ag data. These may not be correct if the filesystem was not
809 * cleanly unmounted, so we need to wait for recovery to finish before
810 * doing this.
811 *
812 * If the filesystem was cleanly unmounted, then we can trust the
813 * values in the superblock to be correct and we don't need to do
814 * anything here.
815 *
816 * If we are currently making the filesystem, the initialisation will
817 * fail as the perag data is in an undefined state.
818 */
David Chinner92821e22007-05-24 15:26:31 +1000819 if (xfs_sb_version_haslazysbcount(&mp->m_sb) &&
820 !XFS_LAST_UNMOUNT_WAS_CLEAN(mp) &&
821 !mp->m_sb.sb_inprogress) {
822 error = xfs_initialize_perag_data(mp, sbp->sb_agcount);
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100823 if (error)
Dave Chinnerd4f35122012-04-23 15:59:06 +1000824 goto out_fail_wait;
David Chinner92821e22007-05-24 15:26:31 +1000825 }
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100826
David Chinner92821e22007-05-24 15:26:31 +1000827 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 * Get and sanity-check the root inode.
829 * Save the pointer to it in the mount structure.
830 */
Dave Chinner7b6259e2010-06-24 11:35:17 +1000831 error = xfs_iget(mp, NULL, sbp->sb_rootino, 0, XFS_ILOCK_EXCL, &rip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 if (error) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100833 xfs_warn(mp, "failed to read root inode");
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100834 goto out_log_dealloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 }
836
837 ASSERT(rip != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Al Viroabbede12011-07-26 02:31:30 -0400839 if (unlikely(!S_ISDIR(rip->i_d.di_mode))) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100840 xfs_warn(mp, "corrupted root inode %llu: not a directory",
Nathan Scottb6574522006-06-09 15:29:40 +1000841 (unsigned long long)rip->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 xfs_iunlock(rip, XFS_ILOCK_EXCL);
843 XFS_ERROR_REPORT("xfs_mountfs_int(2)", XFS_ERRLEVEL_LOW,
844 mp);
845 error = XFS_ERROR(EFSCORRUPTED);
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100846 goto out_rele_rip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 }
848 mp->m_rootip = rip; /* save it */
849
850 xfs_iunlock(rip, XFS_ILOCK_EXCL);
851
852 /*
853 * Initialize realtime inode pointers in the mount structure
854 */
Eric Sandeen0771fb42007-10-12 11:03:40 +1000855 error = xfs_rtmount_inodes(mp);
856 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 /*
858 * Free up the root inode.
859 */
Dave Chinner0b932cc2011-03-07 10:08:35 +1100860 xfs_warn(mp, "failed to read RT inodes");
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100861 goto out_rele_rip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 }
863
864 /*
Christoph Hellwig7884bc82009-01-19 02:04:07 +0100865 * If this is a read-only mount defer the superblock updates until
866 * the next remount into writeable mode. Otherwise we would never
867 * perform the update e.g. for the root filesystem.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 */
Christoph Hellwig7884bc82009-01-19 02:04:07 +0100869 if (mp->m_update_flags && !(mp->m_flags & XFS_MOUNT_RDONLY)) {
870 error = xfs_mount_log_sb(mp, mp->m_update_flags);
David Chinnere5720ee2008-04-10 12:21:18 +1000871 if (error) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100872 xfs_warn(mp, "failed to write sb changes");
Christoph Hellwigb93b6e42009-02-04 09:33:58 +0100873 goto out_rtunmount;
David Chinnere5720ee2008-04-10 12:21:18 +1000874 }
875 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
877 /*
878 * Initialise the XFS quota management subsystem for this mount
879 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200880 if (XFS_IS_QUOTA_RUNNING(mp)) {
881 error = xfs_qm_newmount(mp, &quotamount, &quotaflags);
882 if (error)
883 goto out_rtunmount;
884 } else {
885 ASSERT(!XFS_IS_QUOTA_ON(mp));
886
887 /*
888 * If a file system had quotas running earlier, but decided to
889 * mount without -o uquota/pquota/gquota options, revoke the
890 * quotachecked license.
891 */
892 if (mp->m_sb.sb_qflags & XFS_ALL_QUOTA_ACCT) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100893 xfs_notice(mp, "resetting quota flags");
Christoph Hellwig7d095252009-06-08 15:33:32 +0200894 error = xfs_mount_reset_sbqflags(mp);
895 if (error)
896 return error;
897 }
898 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
900 /*
901 * Finish recovering the file system. This part needed to be
902 * delayed until after the root and real-time bitmap inodes
903 * were consistently read in.
904 */
Christoph Hellwig42490232008-08-13 16:49:32 +1000905 error = xfs_log_mount_finish(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 if (error) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100907 xfs_warn(mp, "log mount finish failed");
Christoph Hellwigb93b6e42009-02-04 09:33:58 +0100908 goto out_rtunmount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 }
910
911 /*
912 * Complete the quota initialisation, post-log-replay component.
913 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200914 if (quotamount) {
915 ASSERT(mp->m_qflags == 0);
916 mp->m_qflags = quotaflags;
917
918 xfs_qm_mount_quotas(mp);
919 }
920
David Chinner84e1e992007-06-18 16:50:27 +1000921 /*
922 * Now we are mounted, reserve a small amount of unused space for
923 * privileged transactions. This is needed so that transaction
924 * space required for critical operations can dip into this pool
925 * when at ENOSPC. This is needed for operations like create with
926 * attr, unwritten extent conversion at ENOSPC, etc. Data allocations
927 * are not allowed to use this reserved space.
Dave Chinner8babd8a2010-03-04 01:46:25 +0000928 *
929 * This may drive us straight to ENOSPC on mount, but that implies
930 * we were already there on the last unmount. Warn if this occurs.
David Chinner84e1e992007-06-18 16:50:27 +1000931 */
Eric Sandeend5db0f92010-02-05 22:59:53 +0000932 if (!(mp->m_flags & XFS_MOUNT_RDONLY)) {
933 resblks = xfs_default_resblks(mp);
934 error = xfs_reserve_blocks(mp, &resblks, NULL);
935 if (error)
Dave Chinner0b932cc2011-03-07 10:08:35 +1100936 xfs_warn(mp,
937 "Unable to allocate reserve blocks. Continuing without reserve pool.");
Eric Sandeend5db0f92010-02-05 22:59:53 +0000938 }
David Chinner84e1e992007-06-18 16:50:27 +1000939
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 return 0;
941
Christoph Hellwigb93b6e42009-02-04 09:33:58 +0100942 out_rtunmount:
943 xfs_rtunmount_inodes(mp);
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100944 out_rele_rip:
Christoph Hellwig43355092008-03-27 18:01:08 +1100945 IRELE(rip);
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100946 out_log_dealloc:
Christoph Hellwig21b699c2009-03-16 08:19:29 +0100947 xfs_log_unmount(mp);
Dave Chinnerd4f35122012-04-23 15:59:06 +1000948 out_fail_wait:
949 if (mp->m_logdev_targp && mp->m_logdev_targp != mp->m_ddev_targp)
950 xfs_wait_buftarg(mp->m_logdev_targp);
951 xfs_wait_buftarg(mp->m_ddev_targp);
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100952 out_free_perag:
Christoph Hellwigff4f0382008-08-13 16:50:47 +1000953 xfs_free_perag(mp);
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100954 out_remove_uuid:
Christoph Hellwig27174202009-03-30 10:21:31 +0200955 xfs_uuid_unmount(mp);
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100956 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 return error;
958}
959
960/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 * This flushes out the inodes,dquots and the superblock, unmounts the
962 * log and makes sure that incore structures are freed.
963 */
Christoph Hellwig41b5c2e2008-08-13 16:49:57 +1000964void
965xfs_unmountfs(
966 struct xfs_mount *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967{
Christoph Hellwig41b5c2e2008-08-13 16:49:57 +1000968 __uint64_t resblks;
969 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
Brian Foster579b62f2012-11-06 09:50:47 -0500971 cancel_delayed_work_sync(&mp->m_eofblocks_work);
972
Christoph Hellwig7d095252009-06-08 15:33:32 +0200973 xfs_qm_unmount_quotas(mp);
Christoph Hellwigb93b6e42009-02-04 09:33:58 +0100974 xfs_rtunmount_inodes(mp);
Christoph Hellwig77508ec2008-08-13 16:49:04 +1000975 IRELE(mp->m_rootip);
976
David Chinner641c56f2007-06-18 16:50:17 +1000977 /*
978 * We can potentially deadlock here if we have an inode cluster
Malcolm Parsons9da096f2009-03-29 09:55:42 +0200979 * that has been freed has its buffer still pinned in memory because
David Chinner641c56f2007-06-18 16:50:17 +1000980 * the transaction is still sitting in a iclog. The stale inodes
981 * on that buffer will have their flush locks held until the
982 * transaction hits the disk and the callbacks run. the inode
983 * flush takes the flush lock unconditionally and with nothing to
984 * push out the iclog we will never get that unlocked. hence we
985 * need to force the log first.
986 */
Christoph Hellwiga14a3482010-01-19 09:56:46 +0000987 xfs_log_force(mp, XFS_LOG_SYNC);
Dave Chinnerc8543632010-02-06 12:39:36 +1100988
989 /*
Christoph Hellwig211e4d42012-04-23 15:58:34 +1000990 * Flush all pending changes from the AIL.
Dave Chinnerc8543632010-02-06 12:39:36 +1100991 */
Christoph Hellwig211e4d42012-04-23 15:58:34 +1000992 xfs_ail_push_all_sync(mp->m_ail);
993
994 /*
995 * And reclaim all inodes. At this point there should be no dirty
Dave Chinner7e185302012-10-08 21:56:00 +1100996 * inodes and none should be pinned or locked, but use synchronous
997 * reclaim just to be sure. We can stop background inode reclaim
998 * here as well if it is still running.
Christoph Hellwig211e4d42012-04-23 15:58:34 +1000999 */
Dave Chinner7e185302012-10-08 21:56:00 +11001000 cancel_delayed_work_sync(&mp->m_reclaim_work);
Dave Chinnerc8543632010-02-06 12:39:36 +11001001 xfs_reclaim_inodes(mp, SYNC_WAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
Christoph Hellwig7d095252009-06-08 15:33:32 +02001003 xfs_qm_unmount(mp);
Lachlan McIlroya357a122008-10-30 16:53:25 +11001004
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 /*
David Chinner84e1e992007-06-18 16:50:27 +10001006 * Unreserve any blocks we have so that when we unmount we don't account
1007 * the reserved free space as used. This is really only necessary for
1008 * lazy superblock counting because it trusts the incore superblock
Malcolm Parsons9da096f2009-03-29 09:55:42 +02001009 * counters to be absolutely correct on clean unmount.
David Chinner84e1e992007-06-18 16:50:27 +10001010 *
1011 * We don't bother correcting this elsewhere for lazy superblock
1012 * counting because on mount of an unclean filesystem we reconstruct the
1013 * correct counter value and this is irrelevant.
1014 *
1015 * For non-lazy counter filesystems, this doesn't matter at all because
1016 * we only every apply deltas to the superblock and hence the incore
1017 * value does not matter....
1018 */
1019 resblks = 0;
David Chinner714082b2008-04-10 12:20:03 +10001020 error = xfs_reserve_blocks(mp, &resblks, NULL);
1021 if (error)
Dave Chinner0b932cc2011-03-07 10:08:35 +11001022 xfs_warn(mp, "Unable to free reserved block pool. "
David Chinner714082b2008-04-10 12:20:03 +10001023 "Freespace may not be correct on next mount.");
1024
Chandra Seetharamanadab0f62011-06-29 22:10:14 +00001025 error = xfs_log_sbcount(mp);
David Chinnere5720ee2008-04-10 12:21:18 +10001026 if (error)
Dave Chinner0b932cc2011-03-07 10:08:35 +11001027 xfs_warn(mp, "Unable to update superblock counters. "
David Chinnere5720ee2008-04-10 12:21:18 +10001028 "Freespace may not be correct on next mount.");
Christoph Hellwig87c7bec2011-09-14 14:08:26 +00001029
Christoph Hellwig21b699c2009-03-16 08:19:29 +01001030 xfs_log_unmount(mp);
Christoph Hellwig27174202009-03-30 10:21:31 +02001031 xfs_uuid_unmount(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
Christoph Hellwig1550d0b2008-08-13 16:17:37 +10001033#if defined(DEBUG)
Christoph Hellwig0ce4cfd2007-08-30 17:20:53 +10001034 xfs_errortag_clearall(mp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035#endif
Christoph Hellwigff4f0382008-08-13 16:50:47 +10001036 xfs_free_perag(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037}
1038
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039int
David Chinner92821e22007-05-24 15:26:31 +10001040xfs_fs_writable(xfs_mount_t *mp)
1041{
Jan Karad9457dc2012-06-12 16:20:39 +02001042 return !(mp->m_super->s_writers.frozen || XFS_FORCED_SHUTDOWN(mp) ||
Christoph Hellwigbd186aa2007-08-30 17:21:12 +10001043 (mp->m_flags & XFS_MOUNT_RDONLY));
David Chinner92821e22007-05-24 15:26:31 +10001044}
1045
1046/*
Alex Elderb2ce3972011-07-11 09:51:44 -05001047 * xfs_log_sbcount
1048 *
Chandra Seetharamanadab0f62011-06-29 22:10:14 +00001049 * Sync the superblock counters to disk.
Alex Elderb2ce3972011-07-11 09:51:44 -05001050 *
1051 * Note this code can be called during the process of freezing, so
Chandra Seetharamanadab0f62011-06-29 22:10:14 +00001052 * we may need to use the transaction allocator which does not
Alex Elderb2ce3972011-07-11 09:51:44 -05001053 * block when the transaction subsystem is in its frozen state.
David Chinner92821e22007-05-24 15:26:31 +10001054 */
1055int
Chandra Seetharamanadab0f62011-06-29 22:10:14 +00001056xfs_log_sbcount(xfs_mount_t *mp)
David Chinner92821e22007-05-24 15:26:31 +10001057{
1058 xfs_trans_t *tp;
1059 int error;
1060
1061 if (!xfs_fs_writable(mp))
1062 return 0;
1063
Christoph Hellwigd4d90b52008-04-22 17:34:37 +10001064 xfs_icsb_sync_counters(mp, 0);
David Chinner92821e22007-05-24 15:26:31 +10001065
1066 /*
1067 * we don't need to do this if we are updating the superblock
1068 * counters on every modification.
1069 */
1070 if (!xfs_sb_version_haslazysbcount(&mp->m_sb))
1071 return 0;
1072
Alex Elderb2ce3972011-07-11 09:51:44 -05001073 tp = _xfs_trans_alloc(mp, XFS_TRANS_SB_COUNT, KM_SLEEP);
Jie Liu3d3c8b52013-08-12 20:49:59 +10001074 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_sb, 0, 0);
David Chinner92821e22007-05-24 15:26:31 +10001075 if (error) {
1076 xfs_trans_cancel(tp, 0);
1077 return error;
1078 }
1079
1080 xfs_mod_sb(tp, XFS_SB_IFREE | XFS_SB_ICOUNT | XFS_SB_FDBLOCKS);
Chandra Seetharamanadab0f62011-06-29 22:10:14 +00001081 xfs_trans_set_sync(tp);
David Chinnere5720ee2008-04-10 12:21:18 +10001082 error = xfs_trans_commit(tp, 0);
1083 return error;
David Chinner92821e22007-05-24 15:26:31 +10001084}
1085
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086/*
Zhi Yong Wu99e738b72013-08-07 10:11:01 +00001087 * xfs_mod_incore_sb_unlocked() is a utility routine commonly used to apply
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 * a delta to a specified field in the in-core superblock. Simply
1089 * switch on the field indicated and apply the delta to that field.
1090 * Fields are not allowed to dip below zero, so if the delta would
1091 * do this do not apply it and return EINVAL.
1092 *
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001093 * The m_sb_lock must be held when this routine is called.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 */
Eric Sandeend96f8f82009-07-02 00:09:33 -05001095STATIC int
David Chinner20f4ebf2007-02-10 18:36:10 +11001096xfs_mod_incore_sb_unlocked(
1097 xfs_mount_t *mp,
1098 xfs_sb_field_t field,
1099 int64_t delta,
1100 int rsvd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101{
1102 int scounter; /* short counter for 32 bit fields */
1103 long long lcounter; /* long counter for 64 bit fields */
1104 long long res_used, rem;
1105
1106 /*
1107 * With the in-core superblock spin lock held, switch
1108 * on the indicated field. Apply the delta to the
1109 * proper field. If the fields value would dip below
1110 * 0, then do not apply the delta and return EINVAL.
1111 */
1112 switch (field) {
1113 case XFS_SBS_ICOUNT:
1114 lcounter = (long long)mp->m_sb.sb_icount;
1115 lcounter += delta;
1116 if (lcounter < 0) {
1117 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001118 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 }
1120 mp->m_sb.sb_icount = lcounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001121 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 case XFS_SBS_IFREE:
1123 lcounter = (long long)mp->m_sb.sb_ifree;
1124 lcounter += delta;
1125 if (lcounter < 0) {
1126 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001127 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 }
1129 mp->m_sb.sb_ifree = lcounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001130 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 case XFS_SBS_FDBLOCKS:
David Chinner4be536d2006-09-07 14:26:50 +10001132 lcounter = (long long)
1133 mp->m_sb.sb_fdblocks - XFS_ALLOC_SET_ASIDE(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 res_used = (long long)(mp->m_resblks - mp->m_resblks_avail);
1135
1136 if (delta > 0) { /* Putting blocks back */
1137 if (res_used > delta) {
1138 mp->m_resblks_avail += delta;
1139 } else {
1140 rem = delta - res_used;
1141 mp->m_resblks_avail = mp->m_resblks;
1142 lcounter += rem;
1143 }
1144 } else { /* Taking blocks away */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 lcounter += delta;
Dave Chinner8babd8a2010-03-04 01:46:25 +00001146 if (lcounter >= 0) {
1147 mp->m_sb.sb_fdblocks = lcounter +
1148 XFS_ALLOC_SET_ASIDE(mp);
1149 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 }
Dave Chinner8babd8a2010-03-04 01:46:25 +00001151
1152 /*
1153 * We are out of blocks, use any available reserved
1154 * blocks if were allowed to.
1155 */
1156 if (!rsvd)
1157 return XFS_ERROR(ENOSPC);
1158
1159 lcounter = (long long)mp->m_resblks_avail + delta;
1160 if (lcounter >= 0) {
1161 mp->m_resblks_avail = lcounter;
1162 return 0;
1163 }
1164 printk_once(KERN_WARNING
1165 "Filesystem \"%s\": reserve blocks depleted! "
1166 "Consider increasing reserve pool size.",
1167 mp->m_fsname);
1168 return XFS_ERROR(ENOSPC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 }
1170
David Chinner4be536d2006-09-07 14:26:50 +10001171 mp->m_sb.sb_fdblocks = lcounter + XFS_ALLOC_SET_ASIDE(mp);
Jesper Juhl014c2542006-01-15 02:37:08 +01001172 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 case XFS_SBS_FREXTENTS:
1174 lcounter = (long long)mp->m_sb.sb_frextents;
1175 lcounter += delta;
1176 if (lcounter < 0) {
Jesper Juhl014c2542006-01-15 02:37:08 +01001177 return XFS_ERROR(ENOSPC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 }
1179 mp->m_sb.sb_frextents = lcounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001180 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 case XFS_SBS_DBLOCKS:
1182 lcounter = (long long)mp->m_sb.sb_dblocks;
1183 lcounter += delta;
1184 if (lcounter < 0) {
1185 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001186 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 }
1188 mp->m_sb.sb_dblocks = lcounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001189 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 case XFS_SBS_AGCOUNT:
1191 scounter = mp->m_sb.sb_agcount;
1192 scounter += delta;
1193 if (scounter < 0) {
1194 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001195 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 }
1197 mp->m_sb.sb_agcount = scounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001198 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 case XFS_SBS_IMAX_PCT:
1200 scounter = mp->m_sb.sb_imax_pct;
1201 scounter += delta;
1202 if (scounter < 0) {
1203 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001204 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 }
1206 mp->m_sb.sb_imax_pct = scounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001207 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 case XFS_SBS_REXTSIZE:
1209 scounter = mp->m_sb.sb_rextsize;
1210 scounter += delta;
1211 if (scounter < 0) {
1212 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001213 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 }
1215 mp->m_sb.sb_rextsize = scounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001216 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 case XFS_SBS_RBMBLOCKS:
1218 scounter = mp->m_sb.sb_rbmblocks;
1219 scounter += delta;
1220 if (scounter < 0) {
1221 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001222 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 }
1224 mp->m_sb.sb_rbmblocks = scounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001225 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 case XFS_SBS_RBLOCKS:
1227 lcounter = (long long)mp->m_sb.sb_rblocks;
1228 lcounter += delta;
1229 if (lcounter < 0) {
1230 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001231 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 }
1233 mp->m_sb.sb_rblocks = lcounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001234 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 case XFS_SBS_REXTENTS:
1236 lcounter = (long long)mp->m_sb.sb_rextents;
1237 lcounter += delta;
1238 if (lcounter < 0) {
1239 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001240 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 }
1242 mp->m_sb.sb_rextents = lcounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001243 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 case XFS_SBS_REXTSLOG:
1245 scounter = mp->m_sb.sb_rextslog;
1246 scounter += delta;
1247 if (scounter < 0) {
1248 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001249 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 }
1251 mp->m_sb.sb_rextslog = scounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001252 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 default:
1254 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001255 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 }
1257}
1258
1259/*
1260 * xfs_mod_incore_sb() is used to change a field in the in-core
1261 * superblock structure by the specified delta. This modification
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001262 * is protected by the m_sb_lock. Just use the xfs_mod_incore_sb_unlocked()
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 * routine to do the work.
1264 */
1265int
David Chinner20f4ebf2007-02-10 18:36:10 +11001266xfs_mod_incore_sb(
Christoph Hellwig96540c72010-09-30 02:25:55 +00001267 struct xfs_mount *mp,
1268 xfs_sb_field_t field,
1269 int64_t delta,
1270 int rsvd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271{
Christoph Hellwig96540c72010-09-30 02:25:55 +00001272 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
David Chinner8d280b92006-03-14 13:13:09 +11001274#ifdef HAVE_PERCPU_SB
Christoph Hellwig96540c72010-09-30 02:25:55 +00001275 ASSERT(field < XFS_SBS_ICOUNT || field > XFS_SBS_FDBLOCKS);
David Chinner8d280b92006-03-14 13:13:09 +11001276#endif
Christoph Hellwig96540c72010-09-30 02:25:55 +00001277 spin_lock(&mp->m_sb_lock);
1278 status = xfs_mod_incore_sb_unlocked(mp, field, delta, rsvd);
1279 spin_unlock(&mp->m_sb_lock);
David Chinner8d280b92006-03-14 13:13:09 +11001280
Jesper Juhl014c2542006-01-15 02:37:08 +01001281 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282}
1283
1284/*
Christoph Hellwig1b040712010-09-30 02:25:56 +00001285 * Change more than one field in the in-core superblock structure at a time.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 *
Christoph Hellwig1b040712010-09-30 02:25:56 +00001287 * The fields and changes to those fields are specified in the array of
1288 * xfs_mod_sb structures passed in. Either all of the specified deltas
1289 * will be applied or none of them will. If any modified field dips below 0,
1290 * then all modifications will be backed out and EINVAL will be returned.
1291 *
1292 * Note that this function may not be used for the superblock values that
1293 * are tracked with the in-memory per-cpu counters - a direct call to
1294 * xfs_icsb_modify_counters is required for these.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 */
1296int
Christoph Hellwig1b040712010-09-30 02:25:56 +00001297xfs_mod_incore_sb_batch(
1298 struct xfs_mount *mp,
1299 xfs_mod_sb_t *msb,
1300 uint nmsb,
1301 int rsvd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302{
David Sterba45c51b92011-04-13 22:03:28 +00001303 xfs_mod_sb_t *msbp;
Christoph Hellwig1b040712010-09-30 02:25:56 +00001304 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
1306 /*
Christoph Hellwig1b040712010-09-30 02:25:56 +00001307 * Loop through the array of mod structures and apply each individually.
1308 * If any fail, then back out all those which have already been applied.
1309 * Do all of this within the scope of the m_sb_lock so that all of the
1310 * changes will be atomic.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 */
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001312 spin_lock(&mp->m_sb_lock);
David Sterba45c51b92011-04-13 22:03:28 +00001313 for (msbp = msb; msbp < (msb + nmsb); msbp++) {
Christoph Hellwig1b040712010-09-30 02:25:56 +00001314 ASSERT(msbp->msb_field < XFS_SBS_ICOUNT ||
1315 msbp->msb_field > XFS_SBS_FDBLOCKS);
David Chinner8d280b92006-03-14 13:13:09 +11001316
Christoph Hellwig1b040712010-09-30 02:25:56 +00001317 error = xfs_mod_incore_sb_unlocked(mp, msbp->msb_field,
1318 msbp->msb_delta, rsvd);
1319 if (error)
1320 goto unwind;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 }
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001322 spin_unlock(&mp->m_sb_lock);
Christoph Hellwig1b040712010-09-30 02:25:56 +00001323 return 0;
1324
1325unwind:
1326 while (--msbp >= msb) {
1327 error = xfs_mod_incore_sb_unlocked(mp, msbp->msb_field,
1328 -msbp->msb_delta, rsvd);
1329 ASSERT(error == 0);
1330 }
1331 spin_unlock(&mp->m_sb_lock);
1332 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333}
1334
1335/*
1336 * xfs_getsb() is called to obtain the buffer for the superblock.
1337 * The buffer is returned locked and read in from disk.
1338 * The buffer should be released with a call to xfs_brelse().
1339 *
1340 * If the flags parameter is BUF_TRYLOCK, then we'll only return
1341 * the superblock buffer if it can be locked without sleeping.
1342 * If it can't then we'll return NULL.
1343 */
Christoph Hellwig0c842ad2011-07-08 14:36:19 +02001344struct xfs_buf *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345xfs_getsb(
Christoph Hellwig0c842ad2011-07-08 14:36:19 +02001346 struct xfs_mount *mp,
1347 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348{
Christoph Hellwig0c842ad2011-07-08 14:36:19 +02001349 struct xfs_buf *bp = mp->m_sb_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
Christoph Hellwig0c842ad2011-07-08 14:36:19 +02001351 if (!xfs_buf_trylock(bp)) {
1352 if (flags & XBF_TRYLOCK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 return NULL;
Christoph Hellwig0c842ad2011-07-08 14:36:19 +02001354 xfs_buf_lock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 }
Christoph Hellwig0c842ad2011-07-08 14:36:19 +02001356
Chandra Seetharaman72790aa2011-07-22 23:40:04 +00001357 xfs_buf_hold(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 ASSERT(XFS_BUF_ISDONE(bp));
Jesper Juhl014c2542006-01-15 02:37:08 +01001359 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360}
1361
1362/*
1363 * Used to free the superblock along various error paths.
1364 */
1365void
1366xfs_freesb(
Dave Chinner26af6552010-09-22 10:47:20 +10001367 struct xfs_mount *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368{
Dave Chinner26af6552010-09-22 10:47:20 +10001369 struct xfs_buf *bp = mp->m_sb_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
Dave Chinner26af6552010-09-22 10:47:20 +10001371 xfs_buf_lock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 mp->m_sb_bp = NULL;
Dave Chinner26af6552010-09-22 10:47:20 +10001373 xfs_buf_relse(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374}
1375
1376/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 * Used to log changes to the superblock unit and width fields which could
Eric Sandeene6957ea2008-04-10 12:19:34 +10001378 * be altered by the mount options, as well as any potential sb_features2
1379 * fixup. Only the first superblock is updated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 */
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001381int
David Chinneree1c0902008-03-06 13:45:50 +11001382xfs_mount_log_sb(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 xfs_mount_t *mp,
1384 __int64_t fields)
1385{
1386 xfs_trans_t *tp;
David Chinnere5720ee2008-04-10 12:21:18 +10001387 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
David Chinneree1c0902008-03-06 13:45:50 +11001389 ASSERT(fields & (XFS_SB_UNIT | XFS_SB_WIDTH | XFS_SB_UUID |
David Chinner4b166de2008-05-20 11:30:27 +10001390 XFS_SB_FEATURES2 | XFS_SB_BAD_FEATURES2 |
1391 XFS_SB_VERSIONNUM));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
1393 tp = xfs_trans_alloc(mp, XFS_TRANS_SB_UNIT);
Jie Liu3d3c8b52013-08-12 20:49:59 +10001394 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_sb, 0, 0);
David Chinnere5720ee2008-04-10 12:21:18 +10001395 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 xfs_trans_cancel(tp, 0);
David Chinnere5720ee2008-04-10 12:21:18 +10001397 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 }
1399 xfs_mod_sb(tp, fields);
David Chinnere5720ee2008-04-10 12:21:18 +10001400 error = xfs_trans_commit(tp, 0);
1401 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402}
David Chinner8d280b92006-03-14 13:13:09 +11001403
Christoph Hellwigdda35b82010-02-15 09:44:46 +00001404/*
1405 * If the underlying (data/log/rt) device is readonly, there are some
1406 * operations that cannot proceed.
1407 */
1408int
1409xfs_dev_is_read_only(
1410 struct xfs_mount *mp,
1411 char *message)
1412{
1413 if (xfs_readonly_buftarg(mp->m_ddev_targp) ||
1414 xfs_readonly_buftarg(mp->m_logdev_targp) ||
1415 (mp->m_rtdev_targp && xfs_readonly_buftarg(mp->m_rtdev_targp))) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001416 xfs_notice(mp, "%s required on read-only device.", message);
1417 xfs_notice(mp, "write access unavailable, cannot proceed.");
Christoph Hellwigdda35b82010-02-15 09:44:46 +00001418 return EROFS;
1419 }
1420 return 0;
1421}
David Chinner8d280b92006-03-14 13:13:09 +11001422
1423#ifdef HAVE_PERCPU_SB
1424/*
1425 * Per-cpu incore superblock counters
1426 *
1427 * Simple concept, difficult implementation
1428 *
1429 * Basically, replace the incore superblock counters with a distributed per cpu
1430 * counter for contended fields (e.g. free block count).
1431 *
1432 * Difficulties arise in that the incore sb is used for ENOSPC checking, and
1433 * hence needs to be accurately read when we are running low on space. Hence
1434 * there is a method to enable and disable the per-cpu counters based on how
1435 * much "stuff" is available in them.
1436 *
1437 * Basically, a counter is enabled if there is enough free resource to justify
1438 * running a per-cpu fast-path. If the per-cpu counter runs out (i.e. a local
1439 * ENOSPC), then we disable the counters to synchronise all callers and
1440 * re-distribute the available resources.
1441 *
1442 * If, once we redistributed the available resources, we still get a failure,
1443 * we disable the per-cpu counter and go through the slow path.
1444 *
1445 * The slow path is the current xfs_mod_incore_sb() function. This means that
Malcolm Parsons9da096f2009-03-29 09:55:42 +02001446 * when we disable a per-cpu counter, we need to drain its resources back to
David Chinner8d280b92006-03-14 13:13:09 +11001447 * the global superblock. We do this after disabling the counter to prevent
1448 * more threads from queueing up on the counter.
1449 *
1450 * Essentially, this means that we still need a lock in the fast path to enable
1451 * synchronisation between the global counters and the per-cpu counters. This
1452 * is not a problem because the lock will be local to a CPU almost all the time
1453 * and have little contention except when we get to ENOSPC conditions.
1454 *
1455 * Basically, this lock becomes a barrier that enables us to lock out the fast
1456 * path while we do things like enabling and disabling counters and
1457 * synchronising the counters.
1458 *
1459 * Locking rules:
1460 *
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001461 * 1. m_sb_lock before picking up per-cpu locks
David Chinner8d280b92006-03-14 13:13:09 +11001462 * 2. per-cpu locks always picked up via for_each_online_cpu() order
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001463 * 3. accurate counter sync requires m_sb_lock + per cpu locks
David Chinner8d280b92006-03-14 13:13:09 +11001464 * 4. modifying per-cpu counters requires holding per-cpu lock
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001465 * 5. modifying global counters requires holding m_sb_lock
1466 * 6. enabling or disabling a counter requires holding the m_sb_lock
David Chinner8d280b92006-03-14 13:13:09 +11001467 * and _none_ of the per-cpu locks.
1468 *
1469 * Disabled counters are only ever re-enabled by a balance operation
1470 * that results in more free resources per CPU than a given threshold.
1471 * To ensure counters don't remain disabled, they are rebalanced when
1472 * the global resource goes above a higher threshold (i.e. some hysteresis
1473 * is present to prevent thrashing).
David Chinner8d280b92006-03-14 13:13:09 +11001474 */
David Chinnere8234a62006-03-14 13:23:52 +11001475
Chandra Seetharaman5a67e4c2006-06-27 02:54:11 -07001476#ifdef CONFIG_HOTPLUG_CPU
David Chinnere8234a62006-03-14 13:23:52 +11001477/*
1478 * hot-plug CPU notifier support.
1479 *
Chandra Seetharaman5a67e4c2006-06-27 02:54:11 -07001480 * We need a notifier per filesystem as we need to be able to identify
1481 * the filesystem to balance the counters out. This is achieved by
1482 * having a notifier block embedded in the xfs_mount_t and doing pointer
1483 * magic to get the mount pointer from the notifier block address.
David Chinnere8234a62006-03-14 13:23:52 +11001484 */
1485STATIC int
1486xfs_icsb_cpu_notify(
1487 struct notifier_block *nfb,
1488 unsigned long action,
1489 void *hcpu)
1490{
1491 xfs_icsb_cnts_t *cntp;
1492 xfs_mount_t *mp;
David Chinnere8234a62006-03-14 13:23:52 +11001493
1494 mp = (xfs_mount_t *)container_of(nfb, xfs_mount_t, m_icsb_notifier);
1495 cntp = (xfs_icsb_cnts_t *)
1496 per_cpu_ptr(mp->m_sb_cnts, (unsigned long)hcpu);
1497 switch (action) {
1498 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001499 case CPU_UP_PREPARE_FROZEN:
David Chinnere8234a62006-03-14 13:23:52 +11001500 /* Easy Case - initialize the area and locks, and
1501 * then rebalance when online does everything else for us. */
David Chinner01e1b692006-03-14 13:29:16 +11001502 memset(cntp, 0, sizeof(xfs_icsb_cnts_t));
David Chinnere8234a62006-03-14 13:23:52 +11001503 break;
1504 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001505 case CPU_ONLINE_FROZEN:
David Chinner03135cf2007-02-10 18:35:15 +11001506 xfs_icsb_lock(mp);
Christoph Hellwig45af6c62008-04-22 17:34:44 +10001507 xfs_icsb_balance_counter(mp, XFS_SBS_ICOUNT, 0);
1508 xfs_icsb_balance_counter(mp, XFS_SBS_IFREE, 0);
1509 xfs_icsb_balance_counter(mp, XFS_SBS_FDBLOCKS, 0);
David Chinner03135cf2007-02-10 18:35:15 +11001510 xfs_icsb_unlock(mp);
David Chinnere8234a62006-03-14 13:23:52 +11001511 break;
1512 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001513 case CPU_DEAD_FROZEN:
David Chinnere8234a62006-03-14 13:23:52 +11001514 /* Disable all the counters, then fold the dead cpu's
1515 * count into the total on the global superblock and
1516 * re-enable the counters. */
David Chinner03135cf2007-02-10 18:35:15 +11001517 xfs_icsb_lock(mp);
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001518 spin_lock(&mp->m_sb_lock);
David Chinnere8234a62006-03-14 13:23:52 +11001519 xfs_icsb_disable_counter(mp, XFS_SBS_ICOUNT);
1520 xfs_icsb_disable_counter(mp, XFS_SBS_IFREE);
1521 xfs_icsb_disable_counter(mp, XFS_SBS_FDBLOCKS);
1522
1523 mp->m_sb.sb_icount += cntp->icsb_icount;
1524 mp->m_sb.sb_ifree += cntp->icsb_ifree;
1525 mp->m_sb.sb_fdblocks += cntp->icsb_fdblocks;
1526
David Chinner01e1b692006-03-14 13:29:16 +11001527 memset(cntp, 0, sizeof(xfs_icsb_cnts_t));
David Chinnere8234a62006-03-14 13:23:52 +11001528
Christoph Hellwig45af6c62008-04-22 17:34:44 +10001529 xfs_icsb_balance_counter_locked(mp, XFS_SBS_ICOUNT, 0);
1530 xfs_icsb_balance_counter_locked(mp, XFS_SBS_IFREE, 0);
1531 xfs_icsb_balance_counter_locked(mp, XFS_SBS_FDBLOCKS, 0);
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001532 spin_unlock(&mp->m_sb_lock);
David Chinner03135cf2007-02-10 18:35:15 +11001533 xfs_icsb_unlock(mp);
David Chinnere8234a62006-03-14 13:23:52 +11001534 break;
1535 }
1536
1537 return NOTIFY_OK;
1538}
Chandra Seetharaman5a67e4c2006-06-27 02:54:11 -07001539#endif /* CONFIG_HOTPLUG_CPU */
David Chinnere8234a62006-03-14 13:23:52 +11001540
David Chinner8d280b92006-03-14 13:13:09 +11001541int
1542xfs_icsb_init_counters(
1543 xfs_mount_t *mp)
1544{
1545 xfs_icsb_cnts_t *cntp;
1546 int i;
1547
1548 mp->m_sb_cnts = alloc_percpu(xfs_icsb_cnts_t);
1549 if (mp->m_sb_cnts == NULL)
1550 return -ENOMEM;
1551
1552 for_each_online_cpu(i) {
1553 cntp = (xfs_icsb_cnts_t *)per_cpu_ptr(mp->m_sb_cnts, i);
David Chinner01e1b692006-03-14 13:29:16 +11001554 memset(cntp, 0, sizeof(xfs_icsb_cnts_t));
David Chinner8d280b92006-03-14 13:13:09 +11001555 }
David Chinner20b64282007-02-10 18:35:09 +11001556
1557 mutex_init(&mp->m_icsb_mutex);
1558
David Chinner8d280b92006-03-14 13:13:09 +11001559 /*
1560 * start with all counters disabled so that the
1561 * initial balance kicks us off correctly
1562 */
1563 mp->m_icsb_counters = -1;
Richard Weinberger46677e62013-08-19 22:56:44 +02001564
1565#ifdef CONFIG_HOTPLUG_CPU
1566 mp->m_icsb_notifier.notifier_call = xfs_icsb_cpu_notify;
1567 mp->m_icsb_notifier.priority = 0;
1568 register_hotcpu_notifier(&mp->m_icsb_notifier);
1569#endif /* CONFIG_HOTPLUG_CPU */
1570
David Chinner8d280b92006-03-14 13:13:09 +11001571 return 0;
1572}
1573
Lachlan McIlroy5478eea2007-02-10 18:36:29 +11001574void
1575xfs_icsb_reinit_counters(
1576 xfs_mount_t *mp)
1577{
1578 xfs_icsb_lock(mp);
1579 /*
1580 * start with all counters disabled so that the
1581 * initial balance kicks us off correctly
1582 */
1583 mp->m_icsb_counters = -1;
Christoph Hellwig45af6c62008-04-22 17:34:44 +10001584 xfs_icsb_balance_counter(mp, XFS_SBS_ICOUNT, 0);
1585 xfs_icsb_balance_counter(mp, XFS_SBS_IFREE, 0);
1586 xfs_icsb_balance_counter(mp, XFS_SBS_FDBLOCKS, 0);
Lachlan McIlroy5478eea2007-02-10 18:36:29 +11001587 xfs_icsb_unlock(mp);
1588}
1589
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001590void
David Chinner8d280b92006-03-14 13:13:09 +11001591xfs_icsb_destroy_counters(
1592 xfs_mount_t *mp)
1593{
David Chinnere8234a62006-03-14 13:23:52 +11001594 if (mp->m_sb_cnts) {
Chandra Seetharaman5a67e4c2006-06-27 02:54:11 -07001595 unregister_hotcpu_notifier(&mp->m_icsb_notifier);
David Chinner8d280b92006-03-14 13:13:09 +11001596 free_percpu(mp->m_sb_cnts);
David Chinnere8234a62006-03-14 13:23:52 +11001597 }
David Chinner03135cf2007-02-10 18:35:15 +11001598 mutex_destroy(&mp->m_icsb_mutex);
David Chinner8d280b92006-03-14 13:13:09 +11001599}
1600
Christoph Hellwigb8f82a42009-11-14 16:17:22 +00001601STATIC void
David Chinner01e1b692006-03-14 13:29:16 +11001602xfs_icsb_lock_cntr(
1603 xfs_icsb_cnts_t *icsbp)
1604{
1605 while (test_and_set_bit(XFS_ICSB_FLAG_LOCK, &icsbp->icsb_flags)) {
1606 ndelay(1000);
1607 }
1608}
1609
Christoph Hellwigb8f82a42009-11-14 16:17:22 +00001610STATIC void
David Chinner01e1b692006-03-14 13:29:16 +11001611xfs_icsb_unlock_cntr(
1612 xfs_icsb_cnts_t *icsbp)
1613{
1614 clear_bit(XFS_ICSB_FLAG_LOCK, &icsbp->icsb_flags);
1615}
1616
David Chinner8d280b92006-03-14 13:13:09 +11001617
Christoph Hellwigb8f82a42009-11-14 16:17:22 +00001618STATIC void
David Chinner8d280b92006-03-14 13:13:09 +11001619xfs_icsb_lock_all_counters(
1620 xfs_mount_t *mp)
1621{
1622 xfs_icsb_cnts_t *cntp;
1623 int i;
1624
1625 for_each_online_cpu(i) {
1626 cntp = (xfs_icsb_cnts_t *)per_cpu_ptr(mp->m_sb_cnts, i);
David Chinner01e1b692006-03-14 13:29:16 +11001627 xfs_icsb_lock_cntr(cntp);
David Chinner8d280b92006-03-14 13:13:09 +11001628 }
1629}
1630
Christoph Hellwigb8f82a42009-11-14 16:17:22 +00001631STATIC void
David Chinner8d280b92006-03-14 13:13:09 +11001632xfs_icsb_unlock_all_counters(
1633 xfs_mount_t *mp)
1634{
1635 xfs_icsb_cnts_t *cntp;
1636 int i;
1637
1638 for_each_online_cpu(i) {
1639 cntp = (xfs_icsb_cnts_t *)per_cpu_ptr(mp->m_sb_cnts, i);
David Chinner01e1b692006-03-14 13:29:16 +11001640 xfs_icsb_unlock_cntr(cntp);
David Chinner8d280b92006-03-14 13:13:09 +11001641 }
1642}
1643
1644STATIC void
1645xfs_icsb_count(
1646 xfs_mount_t *mp,
1647 xfs_icsb_cnts_t *cnt,
1648 int flags)
1649{
1650 xfs_icsb_cnts_t *cntp;
1651 int i;
1652
1653 memset(cnt, 0, sizeof(xfs_icsb_cnts_t));
1654
1655 if (!(flags & XFS_ICSB_LAZY_COUNT))
1656 xfs_icsb_lock_all_counters(mp);
1657
1658 for_each_online_cpu(i) {
1659 cntp = (xfs_icsb_cnts_t *)per_cpu_ptr(mp->m_sb_cnts, i);
1660 cnt->icsb_icount += cntp->icsb_icount;
1661 cnt->icsb_ifree += cntp->icsb_ifree;
1662 cnt->icsb_fdblocks += cntp->icsb_fdblocks;
1663 }
1664
1665 if (!(flags & XFS_ICSB_LAZY_COUNT))
1666 xfs_icsb_unlock_all_counters(mp);
1667}
1668
1669STATIC int
1670xfs_icsb_counter_disabled(
1671 xfs_mount_t *mp,
1672 xfs_sb_field_t field)
1673{
1674 ASSERT((field >= XFS_SBS_ICOUNT) && (field <= XFS_SBS_FDBLOCKS));
1675 return test_bit(field, &mp->m_icsb_counters);
1676}
1677
David Chinner36fbe6e2008-04-10 12:19:56 +10001678STATIC void
David Chinner8d280b92006-03-14 13:13:09 +11001679xfs_icsb_disable_counter(
1680 xfs_mount_t *mp,
1681 xfs_sb_field_t field)
1682{
1683 xfs_icsb_cnts_t cnt;
1684
1685 ASSERT((field >= XFS_SBS_ICOUNT) && (field <= XFS_SBS_FDBLOCKS));
1686
David Chinner20b64282007-02-10 18:35:09 +11001687 /*
1688 * If we are already disabled, then there is nothing to do
1689 * here. We check before locking all the counters to avoid
1690 * the expensive lock operation when being called in the
1691 * slow path and the counter is already disabled. This is
1692 * safe because the only time we set or clear this state is under
1693 * the m_icsb_mutex.
1694 */
1695 if (xfs_icsb_counter_disabled(mp, field))
David Chinner36fbe6e2008-04-10 12:19:56 +10001696 return;
David Chinner20b64282007-02-10 18:35:09 +11001697
David Chinner8d280b92006-03-14 13:13:09 +11001698 xfs_icsb_lock_all_counters(mp);
1699 if (!test_and_set_bit(field, &mp->m_icsb_counters)) {
1700 /* drain back to superblock */
1701
Christoph Hellwigce461932008-04-22 17:34:50 +10001702 xfs_icsb_count(mp, &cnt, XFS_ICSB_LAZY_COUNT);
David Chinner8d280b92006-03-14 13:13:09 +11001703 switch(field) {
1704 case XFS_SBS_ICOUNT:
1705 mp->m_sb.sb_icount = cnt.icsb_icount;
1706 break;
1707 case XFS_SBS_IFREE:
1708 mp->m_sb.sb_ifree = cnt.icsb_ifree;
1709 break;
1710 case XFS_SBS_FDBLOCKS:
1711 mp->m_sb.sb_fdblocks = cnt.icsb_fdblocks;
1712 break;
1713 default:
1714 BUG();
1715 }
1716 }
1717
1718 xfs_icsb_unlock_all_counters(mp);
David Chinner8d280b92006-03-14 13:13:09 +11001719}
1720
1721STATIC void
1722xfs_icsb_enable_counter(
1723 xfs_mount_t *mp,
1724 xfs_sb_field_t field,
1725 uint64_t count,
1726 uint64_t resid)
1727{
1728 xfs_icsb_cnts_t *cntp;
1729 int i;
1730
1731 ASSERT((field >= XFS_SBS_ICOUNT) && (field <= XFS_SBS_FDBLOCKS));
1732
1733 xfs_icsb_lock_all_counters(mp);
1734 for_each_online_cpu(i) {
1735 cntp = per_cpu_ptr(mp->m_sb_cnts, i);
1736 switch (field) {
1737 case XFS_SBS_ICOUNT:
1738 cntp->icsb_icount = count + resid;
1739 break;
1740 case XFS_SBS_IFREE:
1741 cntp->icsb_ifree = count + resid;
1742 break;
1743 case XFS_SBS_FDBLOCKS:
1744 cntp->icsb_fdblocks = count + resid;
1745 break;
1746 default:
1747 BUG();
1748 break;
1749 }
1750 resid = 0;
1751 }
1752 clear_bit(field, &mp->m_icsb_counters);
1753 xfs_icsb_unlock_all_counters(mp);
1754}
1755
David Chinnerdbcabad2007-02-10 18:36:17 +11001756void
Christoph Hellwigd4d90b52008-04-22 17:34:37 +10001757xfs_icsb_sync_counters_locked(
David Chinner8d280b92006-03-14 13:13:09 +11001758 xfs_mount_t *mp,
1759 int flags)
1760{
1761 xfs_icsb_cnts_t cnt;
David Chinner8d280b92006-03-14 13:13:09 +11001762
David Chinner8d280b92006-03-14 13:13:09 +11001763 xfs_icsb_count(mp, &cnt, flags);
1764
David Chinner8d280b92006-03-14 13:13:09 +11001765 if (!xfs_icsb_counter_disabled(mp, XFS_SBS_ICOUNT))
1766 mp->m_sb.sb_icount = cnt.icsb_icount;
1767 if (!xfs_icsb_counter_disabled(mp, XFS_SBS_IFREE))
1768 mp->m_sb.sb_ifree = cnt.icsb_ifree;
1769 if (!xfs_icsb_counter_disabled(mp, XFS_SBS_FDBLOCKS))
1770 mp->m_sb.sb_fdblocks = cnt.icsb_fdblocks;
David Chinner8d280b92006-03-14 13:13:09 +11001771}
1772
1773/*
1774 * Accurate update of per-cpu counters to incore superblock
1775 */
Christoph Hellwigd4d90b52008-04-22 17:34:37 +10001776void
David Chinner8d280b92006-03-14 13:13:09 +11001777xfs_icsb_sync_counters(
Christoph Hellwigd4d90b52008-04-22 17:34:37 +10001778 xfs_mount_t *mp,
1779 int flags)
David Chinner8d280b92006-03-14 13:13:09 +11001780{
Christoph Hellwigd4d90b52008-04-22 17:34:37 +10001781 spin_lock(&mp->m_sb_lock);
1782 xfs_icsb_sync_counters_locked(mp, flags);
1783 spin_unlock(&mp->m_sb_lock);
David Chinner8d280b92006-03-14 13:13:09 +11001784}
1785
1786/*
1787 * Balance and enable/disable counters as necessary.
1788 *
David Chinner20b64282007-02-10 18:35:09 +11001789 * Thresholds for re-enabling counters are somewhat magic. inode counts are
1790 * chosen to be the same number as single on disk allocation chunk per CPU, and
1791 * free blocks is something far enough zero that we aren't going thrash when we
1792 * get near ENOSPC. We also need to supply a minimum we require per cpu to
1793 * prevent looping endlessly when xfs_alloc_space asks for more than will
1794 * be distributed to a single CPU but each CPU has enough blocks to be
1795 * reenabled.
1796 *
1797 * Note that we can be called when counters are already disabled.
1798 * xfs_icsb_disable_counter() optimises the counter locking in this case to
1799 * prevent locking every per-cpu counter needlessly.
David Chinner8d280b92006-03-14 13:13:09 +11001800 */
David Chinner20b64282007-02-10 18:35:09 +11001801
1802#define XFS_ICSB_INO_CNTR_REENABLE (uint64_t)64
David Chinner4be536d2006-09-07 14:26:50 +10001803#define XFS_ICSB_FDBLK_CNTR_REENABLE(mp) \
David Chinner20b64282007-02-10 18:35:09 +11001804 (uint64_t)(512 + XFS_ALLOC_SET_ASIDE(mp))
David Chinner8d280b92006-03-14 13:13:09 +11001805STATIC void
Christoph Hellwig45af6c62008-04-22 17:34:44 +10001806xfs_icsb_balance_counter_locked(
David Chinner8d280b92006-03-14 13:13:09 +11001807 xfs_mount_t *mp,
1808 xfs_sb_field_t field,
David Chinner20b64282007-02-10 18:35:09 +11001809 int min_per_cpu)
David Chinner8d280b92006-03-14 13:13:09 +11001810{
Nathan Scott6fdf8cc2006-06-28 10:13:52 +10001811 uint64_t count, resid;
David Chinner8d280b92006-03-14 13:13:09 +11001812 int weight = num_online_cpus();
David Chinner20b64282007-02-10 18:35:09 +11001813 uint64_t min = (uint64_t)min_per_cpu;
David Chinner8d280b92006-03-14 13:13:09 +11001814
David Chinner8d280b92006-03-14 13:13:09 +11001815 /* disable counter and sync counter */
1816 xfs_icsb_disable_counter(mp, field);
1817
1818 /* update counters - first CPU gets residual*/
1819 switch (field) {
1820 case XFS_SBS_ICOUNT:
1821 count = mp->m_sb.sb_icount;
1822 resid = do_div(count, weight);
David Chinner20b64282007-02-10 18:35:09 +11001823 if (count < max(min, XFS_ICSB_INO_CNTR_REENABLE))
Christoph Hellwig45af6c62008-04-22 17:34:44 +10001824 return;
David Chinner8d280b92006-03-14 13:13:09 +11001825 break;
1826 case XFS_SBS_IFREE:
1827 count = mp->m_sb.sb_ifree;
1828 resid = do_div(count, weight);
David Chinner20b64282007-02-10 18:35:09 +11001829 if (count < max(min, XFS_ICSB_INO_CNTR_REENABLE))
Christoph Hellwig45af6c62008-04-22 17:34:44 +10001830 return;
David Chinner8d280b92006-03-14 13:13:09 +11001831 break;
1832 case XFS_SBS_FDBLOCKS:
1833 count = mp->m_sb.sb_fdblocks;
1834 resid = do_div(count, weight);
David Chinner20b64282007-02-10 18:35:09 +11001835 if (count < max(min, XFS_ICSB_FDBLK_CNTR_REENABLE(mp)))
Christoph Hellwig45af6c62008-04-22 17:34:44 +10001836 return;
David Chinner8d280b92006-03-14 13:13:09 +11001837 break;
1838 default:
1839 BUG();
Nathan Scott6fdf8cc2006-06-28 10:13:52 +10001840 count = resid = 0; /* quiet, gcc */
David Chinner8d280b92006-03-14 13:13:09 +11001841 break;
1842 }
1843
1844 xfs_icsb_enable_counter(mp, field, count, resid);
Christoph Hellwig45af6c62008-04-22 17:34:44 +10001845}
1846
1847STATIC void
1848xfs_icsb_balance_counter(
1849 xfs_mount_t *mp,
1850 xfs_sb_field_t fields,
1851 int min_per_cpu)
1852{
1853 spin_lock(&mp->m_sb_lock);
1854 xfs_icsb_balance_counter_locked(mp, fields, min_per_cpu);
1855 spin_unlock(&mp->m_sb_lock);
David Chinner8d280b92006-03-14 13:13:09 +11001856}
1857
Christoph Hellwig1b040712010-09-30 02:25:56 +00001858int
David Chinner20b64282007-02-10 18:35:09 +11001859xfs_icsb_modify_counters(
David Chinner8d280b92006-03-14 13:13:09 +11001860 xfs_mount_t *mp,
1861 xfs_sb_field_t field,
David Chinner20f4ebf2007-02-10 18:36:10 +11001862 int64_t delta,
David Chinner20b64282007-02-10 18:35:09 +11001863 int rsvd)
David Chinner8d280b92006-03-14 13:13:09 +11001864{
1865 xfs_icsb_cnts_t *icsbp;
1866 long long lcounter; /* long counter for 64 bit fields */
Christoph Lameter7a9e02d2009-10-03 19:48:23 +09001867 int ret = 0;
David Chinner8d280b92006-03-14 13:13:09 +11001868
David Chinner20b64282007-02-10 18:35:09 +11001869 might_sleep();
David Chinner8d280b92006-03-14 13:13:09 +11001870again:
Christoph Lameter7a9e02d2009-10-03 19:48:23 +09001871 preempt_disable();
1872 icsbp = this_cpu_ptr(mp->m_sb_cnts);
David Chinner20b64282007-02-10 18:35:09 +11001873
1874 /*
1875 * if the counter is disabled, go to slow path
1876 */
David Chinner8d280b92006-03-14 13:13:09 +11001877 if (unlikely(xfs_icsb_counter_disabled(mp, field)))
1878 goto slow_path;
David Chinner20b64282007-02-10 18:35:09 +11001879 xfs_icsb_lock_cntr(icsbp);
1880 if (unlikely(xfs_icsb_counter_disabled(mp, field))) {
1881 xfs_icsb_unlock_cntr(icsbp);
1882 goto slow_path;
1883 }
David Chinner8d280b92006-03-14 13:13:09 +11001884
1885 switch (field) {
1886 case XFS_SBS_ICOUNT:
1887 lcounter = icsbp->icsb_icount;
1888 lcounter += delta;
1889 if (unlikely(lcounter < 0))
David Chinner20b64282007-02-10 18:35:09 +11001890 goto balance_counter;
David Chinner8d280b92006-03-14 13:13:09 +11001891 icsbp->icsb_icount = lcounter;
1892 break;
1893
1894 case XFS_SBS_IFREE:
1895 lcounter = icsbp->icsb_ifree;
1896 lcounter += delta;
1897 if (unlikely(lcounter < 0))
David Chinner20b64282007-02-10 18:35:09 +11001898 goto balance_counter;
David Chinner8d280b92006-03-14 13:13:09 +11001899 icsbp->icsb_ifree = lcounter;
1900 break;
1901
1902 case XFS_SBS_FDBLOCKS:
1903 BUG_ON((mp->m_resblks - mp->m_resblks_avail) != 0);
1904
David Chinner4be536d2006-09-07 14:26:50 +10001905 lcounter = icsbp->icsb_fdblocks - XFS_ALLOC_SET_ASIDE(mp);
David Chinner8d280b92006-03-14 13:13:09 +11001906 lcounter += delta;
1907 if (unlikely(lcounter < 0))
David Chinner20b64282007-02-10 18:35:09 +11001908 goto balance_counter;
David Chinner4be536d2006-09-07 14:26:50 +10001909 icsbp->icsb_fdblocks = lcounter + XFS_ALLOC_SET_ASIDE(mp);
David Chinner8d280b92006-03-14 13:13:09 +11001910 break;
1911 default:
1912 BUG();
1913 break;
1914 }
David Chinner01e1b692006-03-14 13:29:16 +11001915 xfs_icsb_unlock_cntr(icsbp);
Christoph Lameter7a9e02d2009-10-03 19:48:23 +09001916 preempt_enable();
David Chinner8d280b92006-03-14 13:13:09 +11001917 return 0;
1918
David Chinner8d280b92006-03-14 13:13:09 +11001919slow_path:
Christoph Lameter7a9e02d2009-10-03 19:48:23 +09001920 preempt_enable();
David Chinner20b64282007-02-10 18:35:09 +11001921
1922 /*
1923 * serialise with a mutex so we don't burn lots of cpu on
1924 * the superblock lock. We still need to hold the superblock
1925 * lock, however, when we modify the global structures.
1926 */
David Chinner03135cf2007-02-10 18:35:15 +11001927 xfs_icsb_lock(mp);
David Chinner20b64282007-02-10 18:35:09 +11001928
1929 /*
1930 * Now running atomically.
1931 *
1932 * If the counter is enabled, someone has beaten us to rebalancing.
1933 * Drop the lock and try again in the fast path....
1934 */
1935 if (!(xfs_icsb_counter_disabled(mp, field))) {
David Chinner03135cf2007-02-10 18:35:15 +11001936 xfs_icsb_unlock(mp);
David Chinner20b64282007-02-10 18:35:09 +11001937 goto again;
1938 }
1939
1940 /*
1941 * The counter is currently disabled. Because we are
1942 * running atomically here, we know a rebalance cannot
1943 * be in progress. Hence we can go straight to operating
1944 * on the global superblock. We do not call xfs_mod_incore_sb()
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001945 * here even though we need to get the m_sb_lock. Doing so
David Chinner20b64282007-02-10 18:35:09 +11001946 * will cause us to re-enter this function and deadlock.
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001947 * Hence we get the m_sb_lock ourselves and then call
David Chinner20b64282007-02-10 18:35:09 +11001948 * xfs_mod_incore_sb_unlocked() as the unlocked path operates
1949 * directly on the global counters.
1950 */
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001951 spin_lock(&mp->m_sb_lock);
David Chinner20b64282007-02-10 18:35:09 +11001952 ret = xfs_mod_incore_sb_unlocked(mp, field, delta, rsvd);
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001953 spin_unlock(&mp->m_sb_lock);
David Chinner20b64282007-02-10 18:35:09 +11001954
1955 /*
1956 * Now that we've modified the global superblock, we
1957 * may be able to re-enable the distributed counters
1958 * (e.g. lots of space just got freed). After that
1959 * we are done.
1960 */
1961 if (ret != ENOSPC)
Christoph Hellwig45af6c62008-04-22 17:34:44 +10001962 xfs_icsb_balance_counter(mp, field, 0);
David Chinner03135cf2007-02-10 18:35:15 +11001963 xfs_icsb_unlock(mp);
David Chinner20b64282007-02-10 18:35:09 +11001964 return ret;
1965
1966balance_counter:
David Chinner01e1b692006-03-14 13:29:16 +11001967 xfs_icsb_unlock_cntr(icsbp);
Christoph Lameter7a9e02d2009-10-03 19:48:23 +09001968 preempt_enable();
David Chinner8d280b92006-03-14 13:13:09 +11001969
David Chinner20b64282007-02-10 18:35:09 +11001970 /*
1971 * We may have multiple threads here if multiple per-cpu
1972 * counters run dry at the same time. This will mean we can
1973 * do more balances than strictly necessary but it is not
1974 * the common slowpath case.
1975 */
David Chinner03135cf2007-02-10 18:35:15 +11001976 xfs_icsb_lock(mp);
David Chinner8d280b92006-03-14 13:13:09 +11001977
David Chinner20b64282007-02-10 18:35:09 +11001978 /*
1979 * running atomically.
1980 *
1981 * This will leave the counter in the correct state for future
1982 * accesses. After the rebalance, we simply try again and our retry
1983 * will either succeed through the fast path or slow path without
1984 * another balance operation being required.
1985 */
Christoph Hellwig45af6c62008-04-22 17:34:44 +10001986 xfs_icsb_balance_counter(mp, field, delta);
David Chinner03135cf2007-02-10 18:35:15 +11001987 xfs_icsb_unlock(mp);
David Chinner20b64282007-02-10 18:35:09 +11001988 goto again;
David Chinner8d280b92006-03-14 13:13:09 +11001989}
1990
David Chinner8d280b92006-03-14 13:13:09 +11001991#endif