blob: 3b6fe4ffd7245b3579277a202146b85c785ee5f4 [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"
Nathan Scotta844f452005-11-02 14:38:42 +110021#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "xfs_log.h"
Nathan Scotta844f452005-11-02 14:38:42 +110023#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_trans.h"
Christoph Hellwig211e4d42012-04-23 15:58:34 +100025#include "xfs_trans_priv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_sb.h"
27#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "xfs_mount.h"
Dave Chinner2b9ab5a2013-08-12 20:49:37 +100029#include "xfs_da_btree.h"
30#include "xfs_dir2_format.h"
31#include "xfs_dir2.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_bmap_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110033#include "xfs_alloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_ialloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "xfs_dinode.h"
36#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110037#include "xfs_btree.h"
38#include "xfs_ialloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include "xfs_alloc.h"
40#include "xfs_rtalloc.h"
41#include "xfs_bmap.h"
42#include "xfs_error.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include "xfs_quota.h"
44#include "xfs_fsops.h"
Christoph Hellwig43355092008-03-27 18:01:08 +110045#include "xfs_utils.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/*
531 * Check that the data (and log if separate) are an ok size.
532 */
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);
Jeff Liub0c10b982013-01-28 21:26:16 +0800601 error = xfs_trans_reserve(tp, 0, XFS_QM_SBCHANGE_LOG_RES(mp),
602 0, 0, XFS_DEFAULT_LOG_COUNT);
Christoph Hellwig7d095252009-06-08 15:33:32 +0200603 if (error) {
604 xfs_trans_cancel(tp, 0);
Dave Chinner53487782011-03-07 10:05:35 +1100605 xfs_alert(mp, "%s: Superblock update failed!", __func__);
Christoph Hellwig7d095252009-06-08 15:33:32 +0200606 return error;
607 }
608
609 xfs_mod_sb(tp, XFS_SB_QFLAGS);
610 return xfs_trans_commit(tp, 0);
611}
612
Eric Sandeend5db0f92010-02-05 22:59:53 +0000613__uint64_t
614xfs_default_resblks(xfs_mount_t *mp)
615{
616 __uint64_t resblks;
617
618 /*
Dave Chinner8babd8a2010-03-04 01:46:25 +0000619 * We default to 5% or 8192 fsbs of space reserved, whichever is
620 * smaller. This is intended to cover concurrent allocation
621 * transactions when we initially hit enospc. These each require a 4
622 * block reservation. Hence by default we cover roughly 2000 concurrent
623 * allocation reservations.
Eric Sandeend5db0f92010-02-05 22:59:53 +0000624 */
625 resblks = mp->m_sb.sb_dblocks;
626 do_div(resblks, 20);
Dave Chinner8babd8a2010-03-04 01:46:25 +0000627 resblks = min_t(__uint64_t, resblks, 8192);
Eric Sandeend5db0f92010-02-05 22:59:53 +0000628 return resblks;
629}
630
Christoph Hellwig7d095252009-06-08 15:33:32 +0200631/*
Eric Sandeen0771fb42007-10-12 11:03:40 +1000632 * This function does the following on an initial mount of a file system:
633 * - reads the superblock from disk and init the mount struct
634 * - if we're a 32-bit kernel, do a size check on the superblock
635 * so we don't mount terabyte filesystems
636 * - init mount struct realtime fields
637 * - allocate inode hash table for fs
638 * - init directory manager
639 * - perform recovery and init the log manager
640 */
641int
642xfs_mountfs(
Christoph Hellwig42490232008-08-13 16:49:32 +1000643 xfs_mount_t *mp)
Eric Sandeen0771fb42007-10-12 11:03:40 +1000644{
645 xfs_sb_t *sbp = &(mp->m_sb);
646 xfs_inode_t *rip;
Eric Sandeen0771fb42007-10-12 11:03:40 +1000647 __uint64_t resblks;
Christoph Hellwig7d095252009-06-08 15:33:32 +0200648 uint quotamount = 0;
649 uint quotaflags = 0;
Eric Sandeen0771fb42007-10-12 11:03:40 +1000650 int error = 0;
651
Dave Chinnerff550682013-08-12 20:49:41 +1000652 xfs_sb_mount_common(mp, sbp);
Eric Sandeen0771fb42007-10-12 11:03:40 +1000653
654 /*
Eric Sandeene6957ea2008-04-10 12:19:34 +1000655 * Check for a mismatched features2 values. Older kernels
656 * read & wrote into the wrong sb offset for sb_features2
657 * on some platforms due to xfs_sb_t not being 64bit size aligned
658 * when sb_features2 was added, which made older superblock
659 * reading/writing routines swap it as a 64-bit value.
David Chinneree1c0902008-03-06 13:45:50 +1100660 *
Eric Sandeene6957ea2008-04-10 12:19:34 +1000661 * For backwards compatibility, we make both slots equal.
662 *
663 * If we detect a mismatched field, we OR the set bits into the
664 * existing features2 field in case it has already been modified; we
665 * don't want to lose any features. We then update the bad location
666 * with the ORed value so that older kernels will see any features2
667 * flags, and mark the two fields as needing updates once the
668 * transaction subsystem is online.
David Chinneree1c0902008-03-06 13:45:50 +1100669 */
Eric Sandeene6957ea2008-04-10 12:19:34 +1000670 if (xfs_sb_has_mismatched_features2(sbp)) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100671 xfs_warn(mp, "correcting sb_features alignment problem");
David Chinneree1c0902008-03-06 13:45:50 +1100672 sbp->sb_features2 |= sbp->sb_bad_features2;
Eric Sandeene6957ea2008-04-10 12:19:34 +1000673 sbp->sb_bad_features2 = sbp->sb_features2;
Christoph Hellwig7884bc82009-01-19 02:04:07 +0100674 mp->m_update_flags |= XFS_SB_FEATURES2 | XFS_SB_BAD_FEATURES2;
Eric Sandeene6957ea2008-04-10 12:19:34 +1000675
676 /*
677 * Re-check for ATTR2 in case it was found in bad_features2
678 * slot.
679 */
Tim Shimmin7c12f292008-04-30 18:15:28 +1000680 if (xfs_sb_version_hasattr2(&mp->m_sb) &&
681 !(mp->m_flags & XFS_MOUNT_NOATTR2))
Eric Sandeene6957ea2008-04-10 12:19:34 +1000682 mp->m_flags |= XFS_MOUNT_ATTR2;
Tim Shimmin7c12f292008-04-30 18:15:28 +1000683 }
Eric Sandeene6957ea2008-04-10 12:19:34 +1000684
Tim Shimmin7c12f292008-04-30 18:15:28 +1000685 if (xfs_sb_version_hasattr2(&mp->m_sb) &&
686 (mp->m_flags & XFS_MOUNT_NOATTR2)) {
687 xfs_sb_version_removeattr2(&mp->m_sb);
Christoph Hellwig7884bc82009-01-19 02:04:07 +0100688 mp->m_update_flags |= XFS_SB_FEATURES2;
Tim Shimmin7c12f292008-04-30 18:15:28 +1000689
690 /* update sb_versionnum for the clearing of the morebits */
691 if (!sbp->sb_features2)
Christoph Hellwig7884bc82009-01-19 02:04:07 +0100692 mp->m_update_flags |= XFS_SB_VERSIONNUM;
David Chinneree1c0902008-03-06 13:45:50 +1100693 }
694
695 /*
Eric Sandeen0771fb42007-10-12 11:03:40 +1000696 * Check if sb_agblocks is aligned at stripe boundary
697 * If sb_agblocks is NOT aligned turn off m_dalign since
698 * allocator alignment is within an ag, therefore ag has
699 * to be aligned at stripe boundary.
700 */
Christoph Hellwig7884bc82009-01-19 02:04:07 +0100701 error = xfs_update_alignment(mp);
Eric Sandeen0771fb42007-10-12 11:03:40 +1000702 if (error)
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100703 goto out;
Eric Sandeen0771fb42007-10-12 11:03:40 +1000704
705 xfs_alloc_compute_maxlevels(mp);
706 xfs_bmap_compute_maxlevels(mp, XFS_DATA_FORK);
707 xfs_bmap_compute_maxlevels(mp, XFS_ATTR_FORK);
708 xfs_ialloc_compute_maxlevels(mp);
709
710 xfs_set_maxicount(mp);
711
Christoph Hellwig27174202009-03-30 10:21:31 +0200712 error = xfs_uuid_mount(mp);
713 if (error)
714 goto out;
Eric Sandeen0771fb42007-10-12 11:03:40 +1000715
716 /*
717 * Set the minimum read and write sizes
718 */
719 xfs_set_rw_sizes(mp);
720
Dave Chinner055388a2011-01-04 11:35:03 +1100721 /* set the low space thresholds for dynamic preallocation */
722 xfs_set_low_space_thresholds(mp);
723
Eric Sandeen0771fb42007-10-12 11:03:40 +1000724 /*
725 * Set the inode cluster size.
726 * This may still be overridden by the file system
727 * block size if it is larger than the chosen cluster size.
728 */
729 mp->m_inode_cluster_size = XFS_INODE_BIG_CLUSTER_SIZE;
730
731 /*
732 * Set inode alignment fields
733 */
734 xfs_set_inoalignment(mp);
735
736 /*
737 * Check that the data (and log if separate) are an ok size.
738 */
Christoph Hellwig42490232008-08-13 16:49:32 +1000739 error = xfs_check_sizes(mp);
Eric Sandeen0771fb42007-10-12 11:03:40 +1000740 if (error)
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100741 goto out_remove_uuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
743 /*
744 * Initialize realtime fields in the mount structure
745 */
Eric Sandeen0771fb42007-10-12 11:03:40 +1000746 error = xfs_rtmount_init(mp);
747 if (error) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100748 xfs_warn(mp, "RT mount failed");
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100749 goto out_remove_uuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 }
751
752 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 * Copies the low order bits of the timestamp and the randomly
754 * set "sequence" number out of a UUID.
755 */
756 uuid_getnodeuniq(&sbp->sb_uuid, mp->m_fixedfsid);
757
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 mp->m_dmevmask = 0; /* not persistent; set after each mount */
759
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000760 xfs_dir_mount(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
762 /*
763 * Initialize the attribute manager's entries.
764 */
765 mp->m_attr_magicpct = (mp->m_sb.sb_blocksize * 37) / 100;
766
767 /*
768 * Initialize the precomputed transaction reservations values.
769 */
770 xfs_trans_init(mp);
771
772 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 * Allocate and initialize the per-ag data.
774 */
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000775 spin_lock_init(&mp->m_perag_lock);
Dave Chinner9b98b6f2010-05-27 01:58:13 +0000776 INIT_RADIX_TREE(&mp->m_perag_tree, GFP_ATOMIC);
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000777 error = xfs_initialize_perag(mp, sbp->sb_agcount, &mp->m_maxagi);
778 if (error) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100779 xfs_warn(mp, "Failed per-ag init: %d", error);
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100780 goto out_remove_uuid;
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000781 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100783 if (!sbp->sb_logblocks) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100784 xfs_warn(mp, "no log defined");
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100785 XFS_ERROR_REPORT("xfs_mountfs", XFS_ERRLEVEL_LOW, mp);
786 error = XFS_ERROR(EFSCORRUPTED);
787 goto out_free_perag;
788 }
789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 /*
791 * log's mount-time initialization. Perform 1st part recovery if needed
792 */
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100793 error = xfs_log_mount(mp, mp->m_logdev_targp,
794 XFS_FSB_TO_DADDR(mp, sbp->sb_logstart),
795 XFS_FSB_TO_BB(mp, sbp->sb_logblocks));
796 if (error) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100797 xfs_warn(mp, "log mount failed");
Dave Chinnerd4f35122012-04-23 15:59:06 +1000798 goto out_fail_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 }
800
801 /*
David Chinner92821e22007-05-24 15:26:31 +1000802 * Now the log is mounted, we know if it was an unclean shutdown or
803 * not. If it was, with the first phase of recovery has completed, we
804 * have consistent AG blocks on disk. We have not recovered EFIs yet,
805 * but they are recovered transactionally in the second recovery phase
806 * later.
807 *
808 * Hence we can safely re-initialise incore superblock counters from
809 * the per-ag data. These may not be correct if the filesystem was not
810 * cleanly unmounted, so we need to wait for recovery to finish before
811 * doing this.
812 *
813 * If the filesystem was cleanly unmounted, then we can trust the
814 * values in the superblock to be correct and we don't need to do
815 * anything here.
816 *
817 * If we are currently making the filesystem, the initialisation will
818 * fail as the perag data is in an undefined state.
819 */
David Chinner92821e22007-05-24 15:26:31 +1000820 if (xfs_sb_version_haslazysbcount(&mp->m_sb) &&
821 !XFS_LAST_UNMOUNT_WAS_CLEAN(mp) &&
822 !mp->m_sb.sb_inprogress) {
823 error = xfs_initialize_perag_data(mp, sbp->sb_agcount);
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100824 if (error)
Dave Chinnerd4f35122012-04-23 15:59:06 +1000825 goto out_fail_wait;
David Chinner92821e22007-05-24 15:26:31 +1000826 }
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100827
David Chinner92821e22007-05-24 15:26:31 +1000828 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 * Get and sanity-check the root inode.
830 * Save the pointer to it in the mount structure.
831 */
Dave Chinner7b6259e2010-06-24 11:35:17 +1000832 error = xfs_iget(mp, NULL, sbp->sb_rootino, 0, XFS_ILOCK_EXCL, &rip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 if (error) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100834 xfs_warn(mp, "failed to read root inode");
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100835 goto out_log_dealloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 }
837
838 ASSERT(rip != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
Al Viroabbede12011-07-26 02:31:30 -0400840 if (unlikely(!S_ISDIR(rip->i_d.di_mode))) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100841 xfs_warn(mp, "corrupted root inode %llu: not a directory",
Nathan Scottb6574522006-06-09 15:29:40 +1000842 (unsigned long long)rip->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 xfs_iunlock(rip, XFS_ILOCK_EXCL);
844 XFS_ERROR_REPORT("xfs_mountfs_int(2)", XFS_ERRLEVEL_LOW,
845 mp);
846 error = XFS_ERROR(EFSCORRUPTED);
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100847 goto out_rele_rip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 }
849 mp->m_rootip = rip; /* save it */
850
851 xfs_iunlock(rip, XFS_ILOCK_EXCL);
852
853 /*
854 * Initialize realtime inode pointers in the mount structure
855 */
Eric Sandeen0771fb42007-10-12 11:03:40 +1000856 error = xfs_rtmount_inodes(mp);
857 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 /*
859 * Free up the root inode.
860 */
Dave Chinner0b932cc2011-03-07 10:08:35 +1100861 xfs_warn(mp, "failed to read RT inodes");
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100862 goto out_rele_rip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 }
864
865 /*
Christoph Hellwig7884bc82009-01-19 02:04:07 +0100866 * If this is a read-only mount defer the superblock updates until
867 * the next remount into writeable mode. Otherwise we would never
868 * perform the update e.g. for the root filesystem.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 */
Christoph Hellwig7884bc82009-01-19 02:04:07 +0100870 if (mp->m_update_flags && !(mp->m_flags & XFS_MOUNT_RDONLY)) {
871 error = xfs_mount_log_sb(mp, mp->m_update_flags);
David Chinnere5720ee2008-04-10 12:21:18 +1000872 if (error) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100873 xfs_warn(mp, "failed to write sb changes");
Christoph Hellwigb93b6e42009-02-04 09:33:58 +0100874 goto out_rtunmount;
David Chinnere5720ee2008-04-10 12:21:18 +1000875 }
876 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
878 /*
879 * Initialise the XFS quota management subsystem for this mount
880 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200881 if (XFS_IS_QUOTA_RUNNING(mp)) {
882 error = xfs_qm_newmount(mp, &quotamount, &quotaflags);
883 if (error)
884 goto out_rtunmount;
885 } else {
886 ASSERT(!XFS_IS_QUOTA_ON(mp));
887
888 /*
889 * If a file system had quotas running earlier, but decided to
890 * mount without -o uquota/pquota/gquota options, revoke the
891 * quotachecked license.
892 */
893 if (mp->m_sb.sb_qflags & XFS_ALL_QUOTA_ACCT) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100894 xfs_notice(mp, "resetting quota flags");
Christoph Hellwig7d095252009-06-08 15:33:32 +0200895 error = xfs_mount_reset_sbqflags(mp);
896 if (error)
897 return error;
898 }
899 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
901 /*
902 * Finish recovering the file system. This part needed to be
903 * delayed until after the root and real-time bitmap inodes
904 * were consistently read in.
905 */
Christoph Hellwig42490232008-08-13 16:49:32 +1000906 error = xfs_log_mount_finish(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 if (error) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100908 xfs_warn(mp, "log mount finish failed");
Christoph Hellwigb93b6e42009-02-04 09:33:58 +0100909 goto out_rtunmount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 }
911
912 /*
913 * Complete the quota initialisation, post-log-replay component.
914 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200915 if (quotamount) {
916 ASSERT(mp->m_qflags == 0);
917 mp->m_qflags = quotaflags;
918
919 xfs_qm_mount_quotas(mp);
920 }
921
David Chinner84e1e992007-06-18 16:50:27 +1000922 /*
923 * Now we are mounted, reserve a small amount of unused space for
924 * privileged transactions. This is needed so that transaction
925 * space required for critical operations can dip into this pool
926 * when at ENOSPC. This is needed for operations like create with
927 * attr, unwritten extent conversion at ENOSPC, etc. Data allocations
928 * are not allowed to use this reserved space.
Dave Chinner8babd8a2010-03-04 01:46:25 +0000929 *
930 * This may drive us straight to ENOSPC on mount, but that implies
931 * we were already there on the last unmount. Warn if this occurs.
David Chinner84e1e992007-06-18 16:50:27 +1000932 */
Eric Sandeend5db0f92010-02-05 22:59:53 +0000933 if (!(mp->m_flags & XFS_MOUNT_RDONLY)) {
934 resblks = xfs_default_resblks(mp);
935 error = xfs_reserve_blocks(mp, &resblks, NULL);
936 if (error)
Dave Chinner0b932cc2011-03-07 10:08:35 +1100937 xfs_warn(mp,
938 "Unable to allocate reserve blocks. Continuing without reserve pool.");
Eric Sandeend5db0f92010-02-05 22:59:53 +0000939 }
David Chinner84e1e992007-06-18 16:50:27 +1000940
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 return 0;
942
Christoph Hellwigb93b6e42009-02-04 09:33:58 +0100943 out_rtunmount:
944 xfs_rtunmount_inodes(mp);
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100945 out_rele_rip:
Christoph Hellwig43355092008-03-27 18:01:08 +1100946 IRELE(rip);
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100947 out_log_dealloc:
Christoph Hellwig21b699c2009-03-16 08:19:29 +0100948 xfs_log_unmount(mp);
Dave Chinnerd4f35122012-04-23 15:59:06 +1000949 out_fail_wait:
950 if (mp->m_logdev_targp && mp->m_logdev_targp != mp->m_ddev_targp)
951 xfs_wait_buftarg(mp->m_logdev_targp);
952 xfs_wait_buftarg(mp->m_ddev_targp);
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100953 out_free_perag:
Christoph Hellwigff4f0382008-08-13 16:50:47 +1000954 xfs_free_perag(mp);
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100955 out_remove_uuid:
Christoph Hellwig27174202009-03-30 10:21:31 +0200956 xfs_uuid_unmount(mp);
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100957 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 return error;
959}
960
961/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 * This flushes out the inodes,dquots and the superblock, unmounts the
963 * log and makes sure that incore structures are freed.
964 */
Christoph Hellwig41b5c2e2008-08-13 16:49:57 +1000965void
966xfs_unmountfs(
967 struct xfs_mount *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968{
Christoph Hellwig41b5c2e2008-08-13 16:49:57 +1000969 __uint64_t resblks;
970 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
Brian Foster579b62f2012-11-06 09:50:47 -0500972 cancel_delayed_work_sync(&mp->m_eofblocks_work);
973
Christoph Hellwig7d095252009-06-08 15:33:32 +0200974 xfs_qm_unmount_quotas(mp);
Christoph Hellwigb93b6e42009-02-04 09:33:58 +0100975 xfs_rtunmount_inodes(mp);
Christoph Hellwig77508ec2008-08-13 16:49:04 +1000976 IRELE(mp->m_rootip);
977
David Chinner641c56f2007-06-18 16:50:17 +1000978 /*
979 * We can potentially deadlock here if we have an inode cluster
Malcolm Parsons9da096f2009-03-29 09:55:42 +0200980 * that has been freed has its buffer still pinned in memory because
David Chinner641c56f2007-06-18 16:50:17 +1000981 * the transaction is still sitting in a iclog. The stale inodes
982 * on that buffer will have their flush locks held until the
983 * transaction hits the disk and the callbacks run. the inode
984 * flush takes the flush lock unconditionally and with nothing to
985 * push out the iclog we will never get that unlocked. hence we
986 * need to force the log first.
987 */
Christoph Hellwiga14a3482010-01-19 09:56:46 +0000988 xfs_log_force(mp, XFS_LOG_SYNC);
Dave Chinnerc8543632010-02-06 12:39:36 +1100989
990 /*
Christoph Hellwig211e4d42012-04-23 15:58:34 +1000991 * Flush all pending changes from the AIL.
Dave Chinnerc8543632010-02-06 12:39:36 +1100992 */
Christoph Hellwig211e4d42012-04-23 15:58:34 +1000993 xfs_ail_push_all_sync(mp->m_ail);
994
995 /*
996 * And reclaim all inodes. At this point there should be no dirty
Dave Chinner7e185302012-10-08 21:56:00 +1100997 * inodes and none should be pinned or locked, but use synchronous
998 * reclaim just to be sure. We can stop background inode reclaim
999 * here as well if it is still running.
Christoph Hellwig211e4d42012-04-23 15:58:34 +10001000 */
Dave Chinner7e185302012-10-08 21:56:00 +11001001 cancel_delayed_work_sync(&mp->m_reclaim_work);
Dave Chinnerc8543632010-02-06 12:39:36 +11001002 xfs_reclaim_inodes(mp, SYNC_WAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
Christoph Hellwig7d095252009-06-08 15:33:32 +02001004 xfs_qm_unmount(mp);
Lachlan McIlroya357a122008-10-30 16:53:25 +11001005
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 /*
David Chinner84e1e992007-06-18 16:50:27 +10001007 * Unreserve any blocks we have so that when we unmount we don't account
1008 * the reserved free space as used. This is really only necessary for
1009 * lazy superblock counting because it trusts the incore superblock
Malcolm Parsons9da096f2009-03-29 09:55:42 +02001010 * counters to be absolutely correct on clean unmount.
David Chinner84e1e992007-06-18 16:50:27 +10001011 *
1012 * We don't bother correcting this elsewhere for lazy superblock
1013 * counting because on mount of an unclean filesystem we reconstruct the
1014 * correct counter value and this is irrelevant.
1015 *
1016 * For non-lazy counter filesystems, this doesn't matter at all because
1017 * we only every apply deltas to the superblock and hence the incore
1018 * value does not matter....
1019 */
1020 resblks = 0;
David Chinner714082b2008-04-10 12:20:03 +10001021 error = xfs_reserve_blocks(mp, &resblks, NULL);
1022 if (error)
Dave Chinner0b932cc2011-03-07 10:08:35 +11001023 xfs_warn(mp, "Unable to free reserved block pool. "
David Chinner714082b2008-04-10 12:20:03 +10001024 "Freespace may not be correct on next mount.");
1025
Chandra Seetharamanadab0f62011-06-29 22:10:14 +00001026 error = xfs_log_sbcount(mp);
David Chinnere5720ee2008-04-10 12:21:18 +10001027 if (error)
Dave Chinner0b932cc2011-03-07 10:08:35 +11001028 xfs_warn(mp, "Unable to update superblock counters. "
David Chinnere5720ee2008-04-10 12:21:18 +10001029 "Freespace may not be correct on next mount.");
Christoph Hellwig87c7bec2011-09-14 14:08:26 +00001030
Christoph Hellwig21b699c2009-03-16 08:19:29 +01001031 xfs_log_unmount(mp);
Christoph Hellwig27174202009-03-30 10:21:31 +02001032 xfs_uuid_unmount(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
Christoph Hellwig1550d0b2008-08-13 16:17:37 +10001034#if defined(DEBUG)
Christoph Hellwig0ce4cfd2007-08-30 17:20:53 +10001035 xfs_errortag_clearall(mp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036#endif
Christoph Hellwigff4f0382008-08-13 16:50:47 +10001037 xfs_free_perag(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038}
1039
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040int
David Chinner92821e22007-05-24 15:26:31 +10001041xfs_fs_writable(xfs_mount_t *mp)
1042{
Jan Karad9457dc2012-06-12 16:20:39 +02001043 return !(mp->m_super->s_writers.frozen || XFS_FORCED_SHUTDOWN(mp) ||
Christoph Hellwigbd186aa2007-08-30 17:21:12 +10001044 (mp->m_flags & XFS_MOUNT_RDONLY));
David Chinner92821e22007-05-24 15:26:31 +10001045}
1046
1047/*
Alex Elderb2ce3972011-07-11 09:51:44 -05001048 * xfs_log_sbcount
1049 *
Chandra Seetharamanadab0f62011-06-29 22:10:14 +00001050 * Sync the superblock counters to disk.
Alex Elderb2ce3972011-07-11 09:51:44 -05001051 *
1052 * Note this code can be called during the process of freezing, so
Chandra Seetharamanadab0f62011-06-29 22:10:14 +00001053 * we may need to use the transaction allocator which does not
Alex Elderb2ce3972011-07-11 09:51:44 -05001054 * block when the transaction subsystem is in its frozen state.
David Chinner92821e22007-05-24 15:26:31 +10001055 */
1056int
Chandra Seetharamanadab0f62011-06-29 22:10:14 +00001057xfs_log_sbcount(xfs_mount_t *mp)
David Chinner92821e22007-05-24 15:26:31 +10001058{
1059 xfs_trans_t *tp;
1060 int error;
1061
1062 if (!xfs_fs_writable(mp))
1063 return 0;
1064
Christoph Hellwigd4d90b52008-04-22 17:34:37 +10001065 xfs_icsb_sync_counters(mp, 0);
David Chinner92821e22007-05-24 15:26:31 +10001066
1067 /*
1068 * we don't need to do this if we are updating the superblock
1069 * counters on every modification.
1070 */
1071 if (!xfs_sb_version_haslazysbcount(&mp->m_sb))
1072 return 0;
1073
Alex Elderb2ce3972011-07-11 09:51:44 -05001074 tp = _xfs_trans_alloc(mp, XFS_TRANS_SB_COUNT, KM_SLEEP);
Jeff Liue4572742013-01-28 21:27:31 +08001075 error = xfs_trans_reserve(tp, 0, XFS_SB_LOG_RES(mp), 0, 0,
1076 XFS_DEFAULT_LOG_COUNT);
David Chinner92821e22007-05-24 15:26:31 +10001077 if (error) {
1078 xfs_trans_cancel(tp, 0);
1079 return error;
1080 }
1081
1082 xfs_mod_sb(tp, XFS_SB_IFREE | XFS_SB_ICOUNT | XFS_SB_FDBLOCKS);
Chandra Seetharamanadab0f62011-06-29 22:10:14 +00001083 xfs_trans_set_sync(tp);
David Chinnere5720ee2008-04-10 12:21:18 +10001084 error = xfs_trans_commit(tp, 0);
1085 return error;
David Chinner92821e22007-05-24 15:26:31 +10001086}
1087
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 * xfs_mod_incore_sb_unlocked() is a utility routine common used to apply
1090 * a delta to a specified field in the in-core superblock. Simply
1091 * switch on the field indicated and apply the delta to that field.
1092 * Fields are not allowed to dip below zero, so if the delta would
1093 * do this do not apply it and return EINVAL.
1094 *
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001095 * The m_sb_lock must be held when this routine is called.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 */
Eric Sandeend96f8f82009-07-02 00:09:33 -05001097STATIC int
David Chinner20f4ebf2007-02-10 18:36:10 +11001098xfs_mod_incore_sb_unlocked(
1099 xfs_mount_t *mp,
1100 xfs_sb_field_t field,
1101 int64_t delta,
1102 int rsvd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103{
1104 int scounter; /* short counter for 32 bit fields */
1105 long long lcounter; /* long counter for 64 bit fields */
1106 long long res_used, rem;
1107
1108 /*
1109 * With the in-core superblock spin lock held, switch
1110 * on the indicated field. Apply the delta to the
1111 * proper field. If the fields value would dip below
1112 * 0, then do not apply the delta and return EINVAL.
1113 */
1114 switch (field) {
1115 case XFS_SBS_ICOUNT:
1116 lcounter = (long long)mp->m_sb.sb_icount;
1117 lcounter += delta;
1118 if (lcounter < 0) {
1119 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001120 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 }
1122 mp->m_sb.sb_icount = lcounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001123 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 case XFS_SBS_IFREE:
1125 lcounter = (long long)mp->m_sb.sb_ifree;
1126 lcounter += delta;
1127 if (lcounter < 0) {
1128 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001129 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 }
1131 mp->m_sb.sb_ifree = lcounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001132 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 case XFS_SBS_FDBLOCKS:
David Chinner4be536d2006-09-07 14:26:50 +10001134 lcounter = (long long)
1135 mp->m_sb.sb_fdblocks - XFS_ALLOC_SET_ASIDE(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 res_used = (long long)(mp->m_resblks - mp->m_resblks_avail);
1137
1138 if (delta > 0) { /* Putting blocks back */
1139 if (res_used > delta) {
1140 mp->m_resblks_avail += delta;
1141 } else {
1142 rem = delta - res_used;
1143 mp->m_resblks_avail = mp->m_resblks;
1144 lcounter += rem;
1145 }
1146 } else { /* Taking blocks away */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 lcounter += delta;
Dave Chinner8babd8a2010-03-04 01:46:25 +00001148 if (lcounter >= 0) {
1149 mp->m_sb.sb_fdblocks = lcounter +
1150 XFS_ALLOC_SET_ASIDE(mp);
1151 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 }
Dave Chinner8babd8a2010-03-04 01:46:25 +00001153
1154 /*
1155 * We are out of blocks, use any available reserved
1156 * blocks if were allowed to.
1157 */
1158 if (!rsvd)
1159 return XFS_ERROR(ENOSPC);
1160
1161 lcounter = (long long)mp->m_resblks_avail + delta;
1162 if (lcounter >= 0) {
1163 mp->m_resblks_avail = lcounter;
1164 return 0;
1165 }
1166 printk_once(KERN_WARNING
1167 "Filesystem \"%s\": reserve blocks depleted! "
1168 "Consider increasing reserve pool size.",
1169 mp->m_fsname);
1170 return XFS_ERROR(ENOSPC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 }
1172
David Chinner4be536d2006-09-07 14:26:50 +10001173 mp->m_sb.sb_fdblocks = lcounter + XFS_ALLOC_SET_ASIDE(mp);
Jesper Juhl014c2542006-01-15 02:37:08 +01001174 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 case XFS_SBS_FREXTENTS:
1176 lcounter = (long long)mp->m_sb.sb_frextents;
1177 lcounter += delta;
1178 if (lcounter < 0) {
Jesper Juhl014c2542006-01-15 02:37:08 +01001179 return XFS_ERROR(ENOSPC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 }
1181 mp->m_sb.sb_frextents = lcounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001182 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 case XFS_SBS_DBLOCKS:
1184 lcounter = (long long)mp->m_sb.sb_dblocks;
1185 lcounter += delta;
1186 if (lcounter < 0) {
1187 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001188 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 }
1190 mp->m_sb.sb_dblocks = lcounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001191 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 case XFS_SBS_AGCOUNT:
1193 scounter = mp->m_sb.sb_agcount;
1194 scounter += delta;
1195 if (scounter < 0) {
1196 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001197 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 }
1199 mp->m_sb.sb_agcount = scounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001200 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 case XFS_SBS_IMAX_PCT:
1202 scounter = mp->m_sb.sb_imax_pct;
1203 scounter += delta;
1204 if (scounter < 0) {
1205 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001206 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 }
1208 mp->m_sb.sb_imax_pct = scounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001209 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 case XFS_SBS_REXTSIZE:
1211 scounter = mp->m_sb.sb_rextsize;
1212 scounter += delta;
1213 if (scounter < 0) {
1214 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001215 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 }
1217 mp->m_sb.sb_rextsize = scounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001218 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 case XFS_SBS_RBMBLOCKS:
1220 scounter = mp->m_sb.sb_rbmblocks;
1221 scounter += delta;
1222 if (scounter < 0) {
1223 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001224 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 }
1226 mp->m_sb.sb_rbmblocks = scounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001227 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 case XFS_SBS_RBLOCKS:
1229 lcounter = (long long)mp->m_sb.sb_rblocks;
1230 lcounter += delta;
1231 if (lcounter < 0) {
1232 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001233 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 }
1235 mp->m_sb.sb_rblocks = lcounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001236 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 case XFS_SBS_REXTENTS:
1238 lcounter = (long long)mp->m_sb.sb_rextents;
1239 lcounter += delta;
1240 if (lcounter < 0) {
1241 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001242 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 }
1244 mp->m_sb.sb_rextents = lcounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001245 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 case XFS_SBS_REXTSLOG:
1247 scounter = mp->m_sb.sb_rextslog;
1248 scounter += delta;
1249 if (scounter < 0) {
1250 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001251 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 }
1253 mp->m_sb.sb_rextslog = scounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001254 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 default:
1256 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001257 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 }
1259}
1260
1261/*
1262 * xfs_mod_incore_sb() is used to change a field in the in-core
1263 * superblock structure by the specified delta. This modification
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001264 * is protected by the m_sb_lock. Just use the xfs_mod_incore_sb_unlocked()
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 * routine to do the work.
1266 */
1267int
David Chinner20f4ebf2007-02-10 18:36:10 +11001268xfs_mod_incore_sb(
Christoph Hellwig96540c72010-09-30 02:25:55 +00001269 struct xfs_mount *mp,
1270 xfs_sb_field_t field,
1271 int64_t delta,
1272 int rsvd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273{
Christoph Hellwig96540c72010-09-30 02:25:55 +00001274 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
David Chinner8d280b92006-03-14 13:13:09 +11001276#ifdef HAVE_PERCPU_SB
Christoph Hellwig96540c72010-09-30 02:25:55 +00001277 ASSERT(field < XFS_SBS_ICOUNT || field > XFS_SBS_FDBLOCKS);
David Chinner8d280b92006-03-14 13:13:09 +11001278#endif
Christoph Hellwig96540c72010-09-30 02:25:55 +00001279 spin_lock(&mp->m_sb_lock);
1280 status = xfs_mod_incore_sb_unlocked(mp, field, delta, rsvd);
1281 spin_unlock(&mp->m_sb_lock);
David Chinner8d280b92006-03-14 13:13:09 +11001282
Jesper Juhl014c2542006-01-15 02:37:08 +01001283 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284}
1285
1286/*
Christoph Hellwig1b040712010-09-30 02:25:56 +00001287 * Change more than one field in the in-core superblock structure at a time.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 *
Christoph Hellwig1b040712010-09-30 02:25:56 +00001289 * The fields and changes to those fields are specified in the array of
1290 * xfs_mod_sb structures passed in. Either all of the specified deltas
1291 * will be applied or none of them will. If any modified field dips below 0,
1292 * then all modifications will be backed out and EINVAL will be returned.
1293 *
1294 * Note that this function may not be used for the superblock values that
1295 * are tracked with the in-memory per-cpu counters - a direct call to
1296 * xfs_icsb_modify_counters is required for these.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 */
1298int
Christoph Hellwig1b040712010-09-30 02:25:56 +00001299xfs_mod_incore_sb_batch(
1300 struct xfs_mount *mp,
1301 xfs_mod_sb_t *msb,
1302 uint nmsb,
1303 int rsvd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304{
David Sterba45c51b92011-04-13 22:03:28 +00001305 xfs_mod_sb_t *msbp;
Christoph Hellwig1b040712010-09-30 02:25:56 +00001306 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
1308 /*
Christoph Hellwig1b040712010-09-30 02:25:56 +00001309 * Loop through the array of mod structures and apply each individually.
1310 * If any fail, then back out all those which have already been applied.
1311 * Do all of this within the scope of the m_sb_lock so that all of the
1312 * changes will be atomic.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 */
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001314 spin_lock(&mp->m_sb_lock);
David Sterba45c51b92011-04-13 22:03:28 +00001315 for (msbp = msb; msbp < (msb + nmsb); msbp++) {
Christoph Hellwig1b040712010-09-30 02:25:56 +00001316 ASSERT(msbp->msb_field < XFS_SBS_ICOUNT ||
1317 msbp->msb_field > XFS_SBS_FDBLOCKS);
David Chinner8d280b92006-03-14 13:13:09 +11001318
Christoph Hellwig1b040712010-09-30 02:25:56 +00001319 error = xfs_mod_incore_sb_unlocked(mp, msbp->msb_field,
1320 msbp->msb_delta, rsvd);
1321 if (error)
1322 goto unwind;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 }
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001324 spin_unlock(&mp->m_sb_lock);
Christoph Hellwig1b040712010-09-30 02:25:56 +00001325 return 0;
1326
1327unwind:
1328 while (--msbp >= msb) {
1329 error = xfs_mod_incore_sb_unlocked(mp, msbp->msb_field,
1330 -msbp->msb_delta, rsvd);
1331 ASSERT(error == 0);
1332 }
1333 spin_unlock(&mp->m_sb_lock);
1334 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335}
1336
1337/*
1338 * xfs_getsb() is called to obtain the buffer for the superblock.
1339 * The buffer is returned locked and read in from disk.
1340 * The buffer should be released with a call to xfs_brelse().
1341 *
1342 * If the flags parameter is BUF_TRYLOCK, then we'll only return
1343 * the superblock buffer if it can be locked without sleeping.
1344 * If it can't then we'll return NULL.
1345 */
Christoph Hellwig0c842ad2011-07-08 14:36:19 +02001346struct xfs_buf *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347xfs_getsb(
Christoph Hellwig0c842ad2011-07-08 14:36:19 +02001348 struct xfs_mount *mp,
1349 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350{
Christoph Hellwig0c842ad2011-07-08 14:36:19 +02001351 struct xfs_buf *bp = mp->m_sb_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
Christoph Hellwig0c842ad2011-07-08 14:36:19 +02001353 if (!xfs_buf_trylock(bp)) {
1354 if (flags & XBF_TRYLOCK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 return NULL;
Christoph Hellwig0c842ad2011-07-08 14:36:19 +02001356 xfs_buf_lock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 }
Christoph Hellwig0c842ad2011-07-08 14:36:19 +02001358
Chandra Seetharaman72790aa2011-07-22 23:40:04 +00001359 xfs_buf_hold(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 ASSERT(XFS_BUF_ISDONE(bp));
Jesper Juhl014c2542006-01-15 02:37:08 +01001361 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362}
1363
1364/*
1365 * Used to free the superblock along various error paths.
1366 */
1367void
1368xfs_freesb(
Dave Chinner26af6552010-09-22 10:47:20 +10001369 struct xfs_mount *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370{
Dave Chinner26af6552010-09-22 10:47:20 +10001371 struct xfs_buf *bp = mp->m_sb_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
Dave Chinner26af6552010-09-22 10:47:20 +10001373 xfs_buf_lock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 mp->m_sb_bp = NULL;
Dave Chinner26af6552010-09-22 10:47:20 +10001375 xfs_buf_relse(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376}
1377
1378/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 * Used to log changes to the superblock unit and width fields which could
Eric Sandeene6957ea2008-04-10 12:19:34 +10001380 * be altered by the mount options, as well as any potential sb_features2
1381 * fixup. Only the first superblock is updated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 */
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001383int
David Chinneree1c0902008-03-06 13:45:50 +11001384xfs_mount_log_sb(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 xfs_mount_t *mp,
1386 __int64_t fields)
1387{
1388 xfs_trans_t *tp;
David Chinnere5720ee2008-04-10 12:21:18 +10001389 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
David Chinneree1c0902008-03-06 13:45:50 +11001391 ASSERT(fields & (XFS_SB_UNIT | XFS_SB_WIDTH | XFS_SB_UUID |
David Chinner4b166de2008-05-20 11:30:27 +10001392 XFS_SB_FEATURES2 | XFS_SB_BAD_FEATURES2 |
1393 XFS_SB_VERSIONNUM));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
1395 tp = xfs_trans_alloc(mp, XFS_TRANS_SB_UNIT);
Jeff Liu5166ab02013-01-28 21:27:39 +08001396 error = xfs_trans_reserve(tp, 0, XFS_SB_LOG_RES(mp), 0, 0,
1397 XFS_DEFAULT_LOG_COUNT);
David Chinnere5720ee2008-04-10 12:21:18 +10001398 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 xfs_trans_cancel(tp, 0);
David Chinnere5720ee2008-04-10 12:21:18 +10001400 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 }
1402 xfs_mod_sb(tp, fields);
David Chinnere5720ee2008-04-10 12:21:18 +10001403 error = xfs_trans_commit(tp, 0);
1404 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405}
David Chinner8d280b92006-03-14 13:13:09 +11001406
Christoph Hellwigdda35b82010-02-15 09:44:46 +00001407/*
1408 * If the underlying (data/log/rt) device is readonly, there are some
1409 * operations that cannot proceed.
1410 */
1411int
1412xfs_dev_is_read_only(
1413 struct xfs_mount *mp,
1414 char *message)
1415{
1416 if (xfs_readonly_buftarg(mp->m_ddev_targp) ||
1417 xfs_readonly_buftarg(mp->m_logdev_targp) ||
1418 (mp->m_rtdev_targp && xfs_readonly_buftarg(mp->m_rtdev_targp))) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001419 xfs_notice(mp, "%s required on read-only device.", message);
1420 xfs_notice(mp, "write access unavailable, cannot proceed.");
Christoph Hellwigdda35b82010-02-15 09:44:46 +00001421 return EROFS;
1422 }
1423 return 0;
1424}
David Chinner8d280b92006-03-14 13:13:09 +11001425
1426#ifdef HAVE_PERCPU_SB
1427/*
1428 * Per-cpu incore superblock counters
1429 *
1430 * Simple concept, difficult implementation
1431 *
1432 * Basically, replace the incore superblock counters with a distributed per cpu
1433 * counter for contended fields (e.g. free block count).
1434 *
1435 * Difficulties arise in that the incore sb is used for ENOSPC checking, and
1436 * hence needs to be accurately read when we are running low on space. Hence
1437 * there is a method to enable and disable the per-cpu counters based on how
1438 * much "stuff" is available in them.
1439 *
1440 * Basically, a counter is enabled if there is enough free resource to justify
1441 * running a per-cpu fast-path. If the per-cpu counter runs out (i.e. a local
1442 * ENOSPC), then we disable the counters to synchronise all callers and
1443 * re-distribute the available resources.
1444 *
1445 * If, once we redistributed the available resources, we still get a failure,
1446 * we disable the per-cpu counter and go through the slow path.
1447 *
1448 * The slow path is the current xfs_mod_incore_sb() function. This means that
Malcolm Parsons9da096f2009-03-29 09:55:42 +02001449 * when we disable a per-cpu counter, we need to drain its resources back to
David Chinner8d280b92006-03-14 13:13:09 +11001450 * the global superblock. We do this after disabling the counter to prevent
1451 * more threads from queueing up on the counter.
1452 *
1453 * Essentially, this means that we still need a lock in the fast path to enable
1454 * synchronisation between the global counters and the per-cpu counters. This
1455 * is not a problem because the lock will be local to a CPU almost all the time
1456 * and have little contention except when we get to ENOSPC conditions.
1457 *
1458 * Basically, this lock becomes a barrier that enables us to lock out the fast
1459 * path while we do things like enabling and disabling counters and
1460 * synchronising the counters.
1461 *
1462 * Locking rules:
1463 *
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001464 * 1. m_sb_lock before picking up per-cpu locks
David Chinner8d280b92006-03-14 13:13:09 +11001465 * 2. per-cpu locks always picked up via for_each_online_cpu() order
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001466 * 3. accurate counter sync requires m_sb_lock + per cpu locks
David Chinner8d280b92006-03-14 13:13:09 +11001467 * 4. modifying per-cpu counters requires holding per-cpu lock
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001468 * 5. modifying global counters requires holding m_sb_lock
1469 * 6. enabling or disabling a counter requires holding the m_sb_lock
David Chinner8d280b92006-03-14 13:13:09 +11001470 * and _none_ of the per-cpu locks.
1471 *
1472 * Disabled counters are only ever re-enabled by a balance operation
1473 * that results in more free resources per CPU than a given threshold.
1474 * To ensure counters don't remain disabled, they are rebalanced when
1475 * the global resource goes above a higher threshold (i.e. some hysteresis
1476 * is present to prevent thrashing).
David Chinner8d280b92006-03-14 13:13:09 +11001477 */
David Chinnere8234a62006-03-14 13:23:52 +11001478
Chandra Seetharaman5a67e4c2006-06-27 02:54:11 -07001479#ifdef CONFIG_HOTPLUG_CPU
David Chinnere8234a62006-03-14 13:23:52 +11001480/*
1481 * hot-plug CPU notifier support.
1482 *
Chandra Seetharaman5a67e4c2006-06-27 02:54:11 -07001483 * We need a notifier per filesystem as we need to be able to identify
1484 * the filesystem to balance the counters out. This is achieved by
1485 * having a notifier block embedded in the xfs_mount_t and doing pointer
1486 * magic to get the mount pointer from the notifier block address.
David Chinnere8234a62006-03-14 13:23:52 +11001487 */
1488STATIC int
1489xfs_icsb_cpu_notify(
1490 struct notifier_block *nfb,
1491 unsigned long action,
1492 void *hcpu)
1493{
1494 xfs_icsb_cnts_t *cntp;
1495 xfs_mount_t *mp;
David Chinnere8234a62006-03-14 13:23:52 +11001496
1497 mp = (xfs_mount_t *)container_of(nfb, xfs_mount_t, m_icsb_notifier);
1498 cntp = (xfs_icsb_cnts_t *)
1499 per_cpu_ptr(mp->m_sb_cnts, (unsigned long)hcpu);
1500 switch (action) {
1501 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001502 case CPU_UP_PREPARE_FROZEN:
David Chinnere8234a62006-03-14 13:23:52 +11001503 /* Easy Case - initialize the area and locks, and
1504 * then rebalance when online does everything else for us. */
David Chinner01e1b692006-03-14 13:29:16 +11001505 memset(cntp, 0, sizeof(xfs_icsb_cnts_t));
David Chinnere8234a62006-03-14 13:23:52 +11001506 break;
1507 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001508 case CPU_ONLINE_FROZEN:
David Chinner03135cf2007-02-10 18:35:15 +11001509 xfs_icsb_lock(mp);
Christoph Hellwig45af6c62008-04-22 17:34:44 +10001510 xfs_icsb_balance_counter(mp, XFS_SBS_ICOUNT, 0);
1511 xfs_icsb_balance_counter(mp, XFS_SBS_IFREE, 0);
1512 xfs_icsb_balance_counter(mp, XFS_SBS_FDBLOCKS, 0);
David Chinner03135cf2007-02-10 18:35:15 +11001513 xfs_icsb_unlock(mp);
David Chinnere8234a62006-03-14 13:23:52 +11001514 break;
1515 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001516 case CPU_DEAD_FROZEN:
David Chinnere8234a62006-03-14 13:23:52 +11001517 /* Disable all the counters, then fold the dead cpu's
1518 * count into the total on the global superblock and
1519 * re-enable the counters. */
David Chinner03135cf2007-02-10 18:35:15 +11001520 xfs_icsb_lock(mp);
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001521 spin_lock(&mp->m_sb_lock);
David Chinnere8234a62006-03-14 13:23:52 +11001522 xfs_icsb_disable_counter(mp, XFS_SBS_ICOUNT);
1523 xfs_icsb_disable_counter(mp, XFS_SBS_IFREE);
1524 xfs_icsb_disable_counter(mp, XFS_SBS_FDBLOCKS);
1525
1526 mp->m_sb.sb_icount += cntp->icsb_icount;
1527 mp->m_sb.sb_ifree += cntp->icsb_ifree;
1528 mp->m_sb.sb_fdblocks += cntp->icsb_fdblocks;
1529
David Chinner01e1b692006-03-14 13:29:16 +11001530 memset(cntp, 0, sizeof(xfs_icsb_cnts_t));
David Chinnere8234a62006-03-14 13:23:52 +11001531
Christoph Hellwig45af6c62008-04-22 17:34:44 +10001532 xfs_icsb_balance_counter_locked(mp, XFS_SBS_ICOUNT, 0);
1533 xfs_icsb_balance_counter_locked(mp, XFS_SBS_IFREE, 0);
1534 xfs_icsb_balance_counter_locked(mp, XFS_SBS_FDBLOCKS, 0);
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001535 spin_unlock(&mp->m_sb_lock);
David Chinner03135cf2007-02-10 18:35:15 +11001536 xfs_icsb_unlock(mp);
David Chinnere8234a62006-03-14 13:23:52 +11001537 break;
1538 }
1539
1540 return NOTIFY_OK;
1541}
Chandra Seetharaman5a67e4c2006-06-27 02:54:11 -07001542#endif /* CONFIG_HOTPLUG_CPU */
David Chinnere8234a62006-03-14 13:23:52 +11001543
David Chinner8d280b92006-03-14 13:13:09 +11001544int
1545xfs_icsb_init_counters(
1546 xfs_mount_t *mp)
1547{
1548 xfs_icsb_cnts_t *cntp;
1549 int i;
1550
1551 mp->m_sb_cnts = alloc_percpu(xfs_icsb_cnts_t);
1552 if (mp->m_sb_cnts == NULL)
1553 return -ENOMEM;
1554
Chandra Seetharaman5a67e4c2006-06-27 02:54:11 -07001555#ifdef CONFIG_HOTPLUG_CPU
David Chinnere8234a62006-03-14 13:23:52 +11001556 mp->m_icsb_notifier.notifier_call = xfs_icsb_cpu_notify;
1557 mp->m_icsb_notifier.priority = 0;
Chandra Seetharaman5a67e4c2006-06-27 02:54:11 -07001558 register_hotcpu_notifier(&mp->m_icsb_notifier);
1559#endif /* CONFIG_HOTPLUG_CPU */
David Chinnere8234a62006-03-14 13:23:52 +11001560
David Chinner8d280b92006-03-14 13:13:09 +11001561 for_each_online_cpu(i) {
1562 cntp = (xfs_icsb_cnts_t *)per_cpu_ptr(mp->m_sb_cnts, i);
David Chinner01e1b692006-03-14 13:29:16 +11001563 memset(cntp, 0, sizeof(xfs_icsb_cnts_t));
David Chinner8d280b92006-03-14 13:13:09 +11001564 }
David Chinner20b64282007-02-10 18:35:09 +11001565
1566 mutex_init(&mp->m_icsb_mutex);
1567
David Chinner8d280b92006-03-14 13:13:09 +11001568 /*
1569 * start with all counters disabled so that the
1570 * initial balance kicks us off correctly
1571 */
1572 mp->m_icsb_counters = -1;
1573 return 0;
1574}
1575
Lachlan McIlroy5478eea2007-02-10 18:36:29 +11001576void
1577xfs_icsb_reinit_counters(
1578 xfs_mount_t *mp)
1579{
1580 xfs_icsb_lock(mp);
1581 /*
1582 * start with all counters disabled so that the
1583 * initial balance kicks us off correctly
1584 */
1585 mp->m_icsb_counters = -1;
Christoph Hellwig45af6c62008-04-22 17:34:44 +10001586 xfs_icsb_balance_counter(mp, XFS_SBS_ICOUNT, 0);
1587 xfs_icsb_balance_counter(mp, XFS_SBS_IFREE, 0);
1588 xfs_icsb_balance_counter(mp, XFS_SBS_FDBLOCKS, 0);
Lachlan McIlroy5478eea2007-02-10 18:36:29 +11001589 xfs_icsb_unlock(mp);
1590}
1591
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001592void
David Chinner8d280b92006-03-14 13:13:09 +11001593xfs_icsb_destroy_counters(
1594 xfs_mount_t *mp)
1595{
David Chinnere8234a62006-03-14 13:23:52 +11001596 if (mp->m_sb_cnts) {
Chandra Seetharaman5a67e4c2006-06-27 02:54:11 -07001597 unregister_hotcpu_notifier(&mp->m_icsb_notifier);
David Chinner8d280b92006-03-14 13:13:09 +11001598 free_percpu(mp->m_sb_cnts);
David Chinnere8234a62006-03-14 13:23:52 +11001599 }
David Chinner03135cf2007-02-10 18:35:15 +11001600 mutex_destroy(&mp->m_icsb_mutex);
David Chinner8d280b92006-03-14 13:13:09 +11001601}
1602
Christoph Hellwigb8f82a42009-11-14 16:17:22 +00001603STATIC void
David Chinner01e1b692006-03-14 13:29:16 +11001604xfs_icsb_lock_cntr(
1605 xfs_icsb_cnts_t *icsbp)
1606{
1607 while (test_and_set_bit(XFS_ICSB_FLAG_LOCK, &icsbp->icsb_flags)) {
1608 ndelay(1000);
1609 }
1610}
1611
Christoph Hellwigb8f82a42009-11-14 16:17:22 +00001612STATIC void
David Chinner01e1b692006-03-14 13:29:16 +11001613xfs_icsb_unlock_cntr(
1614 xfs_icsb_cnts_t *icsbp)
1615{
1616 clear_bit(XFS_ICSB_FLAG_LOCK, &icsbp->icsb_flags);
1617}
1618
David Chinner8d280b92006-03-14 13:13:09 +11001619
Christoph Hellwigb8f82a42009-11-14 16:17:22 +00001620STATIC void
David Chinner8d280b92006-03-14 13:13:09 +11001621xfs_icsb_lock_all_counters(
1622 xfs_mount_t *mp)
1623{
1624 xfs_icsb_cnts_t *cntp;
1625 int i;
1626
1627 for_each_online_cpu(i) {
1628 cntp = (xfs_icsb_cnts_t *)per_cpu_ptr(mp->m_sb_cnts, i);
David Chinner01e1b692006-03-14 13:29:16 +11001629 xfs_icsb_lock_cntr(cntp);
David Chinner8d280b92006-03-14 13:13:09 +11001630 }
1631}
1632
Christoph Hellwigb8f82a42009-11-14 16:17:22 +00001633STATIC void
David Chinner8d280b92006-03-14 13:13:09 +11001634xfs_icsb_unlock_all_counters(
1635 xfs_mount_t *mp)
1636{
1637 xfs_icsb_cnts_t *cntp;
1638 int i;
1639
1640 for_each_online_cpu(i) {
1641 cntp = (xfs_icsb_cnts_t *)per_cpu_ptr(mp->m_sb_cnts, i);
David Chinner01e1b692006-03-14 13:29:16 +11001642 xfs_icsb_unlock_cntr(cntp);
David Chinner8d280b92006-03-14 13:13:09 +11001643 }
1644}
1645
1646STATIC void
1647xfs_icsb_count(
1648 xfs_mount_t *mp,
1649 xfs_icsb_cnts_t *cnt,
1650 int flags)
1651{
1652 xfs_icsb_cnts_t *cntp;
1653 int i;
1654
1655 memset(cnt, 0, sizeof(xfs_icsb_cnts_t));
1656
1657 if (!(flags & XFS_ICSB_LAZY_COUNT))
1658 xfs_icsb_lock_all_counters(mp);
1659
1660 for_each_online_cpu(i) {
1661 cntp = (xfs_icsb_cnts_t *)per_cpu_ptr(mp->m_sb_cnts, i);
1662 cnt->icsb_icount += cntp->icsb_icount;
1663 cnt->icsb_ifree += cntp->icsb_ifree;
1664 cnt->icsb_fdblocks += cntp->icsb_fdblocks;
1665 }
1666
1667 if (!(flags & XFS_ICSB_LAZY_COUNT))
1668 xfs_icsb_unlock_all_counters(mp);
1669}
1670
1671STATIC int
1672xfs_icsb_counter_disabled(
1673 xfs_mount_t *mp,
1674 xfs_sb_field_t field)
1675{
1676 ASSERT((field >= XFS_SBS_ICOUNT) && (field <= XFS_SBS_FDBLOCKS));
1677 return test_bit(field, &mp->m_icsb_counters);
1678}
1679
David Chinner36fbe6e2008-04-10 12:19:56 +10001680STATIC void
David Chinner8d280b92006-03-14 13:13:09 +11001681xfs_icsb_disable_counter(
1682 xfs_mount_t *mp,
1683 xfs_sb_field_t field)
1684{
1685 xfs_icsb_cnts_t cnt;
1686
1687 ASSERT((field >= XFS_SBS_ICOUNT) && (field <= XFS_SBS_FDBLOCKS));
1688
David Chinner20b64282007-02-10 18:35:09 +11001689 /*
1690 * If we are already disabled, then there is nothing to do
1691 * here. We check before locking all the counters to avoid
1692 * the expensive lock operation when being called in the
1693 * slow path and the counter is already disabled. This is
1694 * safe because the only time we set or clear this state is under
1695 * the m_icsb_mutex.
1696 */
1697 if (xfs_icsb_counter_disabled(mp, field))
David Chinner36fbe6e2008-04-10 12:19:56 +10001698 return;
David Chinner20b64282007-02-10 18:35:09 +11001699
David Chinner8d280b92006-03-14 13:13:09 +11001700 xfs_icsb_lock_all_counters(mp);
1701 if (!test_and_set_bit(field, &mp->m_icsb_counters)) {
1702 /* drain back to superblock */
1703
Christoph Hellwigce461932008-04-22 17:34:50 +10001704 xfs_icsb_count(mp, &cnt, XFS_ICSB_LAZY_COUNT);
David Chinner8d280b92006-03-14 13:13:09 +11001705 switch(field) {
1706 case XFS_SBS_ICOUNT:
1707 mp->m_sb.sb_icount = cnt.icsb_icount;
1708 break;
1709 case XFS_SBS_IFREE:
1710 mp->m_sb.sb_ifree = cnt.icsb_ifree;
1711 break;
1712 case XFS_SBS_FDBLOCKS:
1713 mp->m_sb.sb_fdblocks = cnt.icsb_fdblocks;
1714 break;
1715 default:
1716 BUG();
1717 }
1718 }
1719
1720 xfs_icsb_unlock_all_counters(mp);
David Chinner8d280b92006-03-14 13:13:09 +11001721}
1722
1723STATIC void
1724xfs_icsb_enable_counter(
1725 xfs_mount_t *mp,
1726 xfs_sb_field_t field,
1727 uint64_t count,
1728 uint64_t resid)
1729{
1730 xfs_icsb_cnts_t *cntp;
1731 int i;
1732
1733 ASSERT((field >= XFS_SBS_ICOUNT) && (field <= XFS_SBS_FDBLOCKS));
1734
1735 xfs_icsb_lock_all_counters(mp);
1736 for_each_online_cpu(i) {
1737 cntp = per_cpu_ptr(mp->m_sb_cnts, i);
1738 switch (field) {
1739 case XFS_SBS_ICOUNT:
1740 cntp->icsb_icount = count + resid;
1741 break;
1742 case XFS_SBS_IFREE:
1743 cntp->icsb_ifree = count + resid;
1744 break;
1745 case XFS_SBS_FDBLOCKS:
1746 cntp->icsb_fdblocks = count + resid;
1747 break;
1748 default:
1749 BUG();
1750 break;
1751 }
1752 resid = 0;
1753 }
1754 clear_bit(field, &mp->m_icsb_counters);
1755 xfs_icsb_unlock_all_counters(mp);
1756}
1757
David Chinnerdbcabad2007-02-10 18:36:17 +11001758void
Christoph Hellwigd4d90b52008-04-22 17:34:37 +10001759xfs_icsb_sync_counters_locked(
David Chinner8d280b92006-03-14 13:13:09 +11001760 xfs_mount_t *mp,
1761 int flags)
1762{
1763 xfs_icsb_cnts_t cnt;
David Chinner8d280b92006-03-14 13:13:09 +11001764
David Chinner8d280b92006-03-14 13:13:09 +11001765 xfs_icsb_count(mp, &cnt, flags);
1766
David Chinner8d280b92006-03-14 13:13:09 +11001767 if (!xfs_icsb_counter_disabled(mp, XFS_SBS_ICOUNT))
1768 mp->m_sb.sb_icount = cnt.icsb_icount;
1769 if (!xfs_icsb_counter_disabled(mp, XFS_SBS_IFREE))
1770 mp->m_sb.sb_ifree = cnt.icsb_ifree;
1771 if (!xfs_icsb_counter_disabled(mp, XFS_SBS_FDBLOCKS))
1772 mp->m_sb.sb_fdblocks = cnt.icsb_fdblocks;
David Chinner8d280b92006-03-14 13:13:09 +11001773}
1774
1775/*
1776 * Accurate update of per-cpu counters to incore superblock
1777 */
Christoph Hellwigd4d90b52008-04-22 17:34:37 +10001778void
David Chinner8d280b92006-03-14 13:13:09 +11001779xfs_icsb_sync_counters(
Christoph Hellwigd4d90b52008-04-22 17:34:37 +10001780 xfs_mount_t *mp,
1781 int flags)
David Chinner8d280b92006-03-14 13:13:09 +11001782{
Christoph Hellwigd4d90b52008-04-22 17:34:37 +10001783 spin_lock(&mp->m_sb_lock);
1784 xfs_icsb_sync_counters_locked(mp, flags);
1785 spin_unlock(&mp->m_sb_lock);
David Chinner8d280b92006-03-14 13:13:09 +11001786}
1787
1788/*
1789 * Balance and enable/disable counters as necessary.
1790 *
David Chinner20b64282007-02-10 18:35:09 +11001791 * Thresholds for re-enabling counters are somewhat magic. inode counts are
1792 * chosen to be the same number as single on disk allocation chunk per CPU, and
1793 * free blocks is something far enough zero that we aren't going thrash when we
1794 * get near ENOSPC. We also need to supply a minimum we require per cpu to
1795 * prevent looping endlessly when xfs_alloc_space asks for more than will
1796 * be distributed to a single CPU but each CPU has enough blocks to be
1797 * reenabled.
1798 *
1799 * Note that we can be called when counters are already disabled.
1800 * xfs_icsb_disable_counter() optimises the counter locking in this case to
1801 * prevent locking every per-cpu counter needlessly.
David Chinner8d280b92006-03-14 13:13:09 +11001802 */
David Chinner20b64282007-02-10 18:35:09 +11001803
1804#define XFS_ICSB_INO_CNTR_REENABLE (uint64_t)64
David Chinner4be536d2006-09-07 14:26:50 +10001805#define XFS_ICSB_FDBLK_CNTR_REENABLE(mp) \
David Chinner20b64282007-02-10 18:35:09 +11001806 (uint64_t)(512 + XFS_ALLOC_SET_ASIDE(mp))
David Chinner8d280b92006-03-14 13:13:09 +11001807STATIC void
Christoph Hellwig45af6c62008-04-22 17:34:44 +10001808xfs_icsb_balance_counter_locked(
David Chinner8d280b92006-03-14 13:13:09 +11001809 xfs_mount_t *mp,
1810 xfs_sb_field_t field,
David Chinner20b64282007-02-10 18:35:09 +11001811 int min_per_cpu)
David Chinner8d280b92006-03-14 13:13:09 +11001812{
Nathan Scott6fdf8cc2006-06-28 10:13:52 +10001813 uint64_t count, resid;
David Chinner8d280b92006-03-14 13:13:09 +11001814 int weight = num_online_cpus();
David Chinner20b64282007-02-10 18:35:09 +11001815 uint64_t min = (uint64_t)min_per_cpu;
David Chinner8d280b92006-03-14 13:13:09 +11001816
David Chinner8d280b92006-03-14 13:13:09 +11001817 /* disable counter and sync counter */
1818 xfs_icsb_disable_counter(mp, field);
1819
1820 /* update counters - first CPU gets residual*/
1821 switch (field) {
1822 case XFS_SBS_ICOUNT:
1823 count = mp->m_sb.sb_icount;
1824 resid = do_div(count, weight);
David Chinner20b64282007-02-10 18:35:09 +11001825 if (count < max(min, XFS_ICSB_INO_CNTR_REENABLE))
Christoph Hellwig45af6c62008-04-22 17:34:44 +10001826 return;
David Chinner8d280b92006-03-14 13:13:09 +11001827 break;
1828 case XFS_SBS_IFREE:
1829 count = mp->m_sb.sb_ifree;
1830 resid = do_div(count, weight);
David Chinner20b64282007-02-10 18:35:09 +11001831 if (count < max(min, XFS_ICSB_INO_CNTR_REENABLE))
Christoph Hellwig45af6c62008-04-22 17:34:44 +10001832 return;
David Chinner8d280b92006-03-14 13:13:09 +11001833 break;
1834 case XFS_SBS_FDBLOCKS:
1835 count = mp->m_sb.sb_fdblocks;
1836 resid = do_div(count, weight);
David Chinner20b64282007-02-10 18:35:09 +11001837 if (count < max(min, XFS_ICSB_FDBLK_CNTR_REENABLE(mp)))
Christoph Hellwig45af6c62008-04-22 17:34:44 +10001838 return;
David Chinner8d280b92006-03-14 13:13:09 +11001839 break;
1840 default:
1841 BUG();
Nathan Scott6fdf8cc2006-06-28 10:13:52 +10001842 count = resid = 0; /* quiet, gcc */
David Chinner8d280b92006-03-14 13:13:09 +11001843 break;
1844 }
1845
1846 xfs_icsb_enable_counter(mp, field, count, resid);
Christoph Hellwig45af6c62008-04-22 17:34:44 +10001847}
1848
1849STATIC void
1850xfs_icsb_balance_counter(
1851 xfs_mount_t *mp,
1852 xfs_sb_field_t fields,
1853 int min_per_cpu)
1854{
1855 spin_lock(&mp->m_sb_lock);
1856 xfs_icsb_balance_counter_locked(mp, fields, min_per_cpu);
1857 spin_unlock(&mp->m_sb_lock);
David Chinner8d280b92006-03-14 13:13:09 +11001858}
1859
Christoph Hellwig1b040712010-09-30 02:25:56 +00001860int
David Chinner20b64282007-02-10 18:35:09 +11001861xfs_icsb_modify_counters(
David Chinner8d280b92006-03-14 13:13:09 +11001862 xfs_mount_t *mp,
1863 xfs_sb_field_t field,
David Chinner20f4ebf2007-02-10 18:36:10 +11001864 int64_t delta,
David Chinner20b64282007-02-10 18:35:09 +11001865 int rsvd)
David Chinner8d280b92006-03-14 13:13:09 +11001866{
1867 xfs_icsb_cnts_t *icsbp;
1868 long long lcounter; /* long counter for 64 bit fields */
Christoph Lameter7a9e02d2009-10-03 19:48:23 +09001869 int ret = 0;
David Chinner8d280b92006-03-14 13:13:09 +11001870
David Chinner20b64282007-02-10 18:35:09 +11001871 might_sleep();
David Chinner8d280b92006-03-14 13:13:09 +11001872again:
Christoph Lameter7a9e02d2009-10-03 19:48:23 +09001873 preempt_disable();
1874 icsbp = this_cpu_ptr(mp->m_sb_cnts);
David Chinner20b64282007-02-10 18:35:09 +11001875
1876 /*
1877 * if the counter is disabled, go to slow path
1878 */
David Chinner8d280b92006-03-14 13:13:09 +11001879 if (unlikely(xfs_icsb_counter_disabled(mp, field)))
1880 goto slow_path;
David Chinner20b64282007-02-10 18:35:09 +11001881 xfs_icsb_lock_cntr(icsbp);
1882 if (unlikely(xfs_icsb_counter_disabled(mp, field))) {
1883 xfs_icsb_unlock_cntr(icsbp);
1884 goto slow_path;
1885 }
David Chinner8d280b92006-03-14 13:13:09 +11001886
1887 switch (field) {
1888 case XFS_SBS_ICOUNT:
1889 lcounter = icsbp->icsb_icount;
1890 lcounter += delta;
1891 if (unlikely(lcounter < 0))
David Chinner20b64282007-02-10 18:35:09 +11001892 goto balance_counter;
David Chinner8d280b92006-03-14 13:13:09 +11001893 icsbp->icsb_icount = lcounter;
1894 break;
1895
1896 case XFS_SBS_IFREE:
1897 lcounter = icsbp->icsb_ifree;
1898 lcounter += delta;
1899 if (unlikely(lcounter < 0))
David Chinner20b64282007-02-10 18:35:09 +11001900 goto balance_counter;
David Chinner8d280b92006-03-14 13:13:09 +11001901 icsbp->icsb_ifree = lcounter;
1902 break;
1903
1904 case XFS_SBS_FDBLOCKS:
1905 BUG_ON((mp->m_resblks - mp->m_resblks_avail) != 0);
1906
David Chinner4be536d2006-09-07 14:26:50 +10001907 lcounter = icsbp->icsb_fdblocks - XFS_ALLOC_SET_ASIDE(mp);
David Chinner8d280b92006-03-14 13:13:09 +11001908 lcounter += delta;
1909 if (unlikely(lcounter < 0))
David Chinner20b64282007-02-10 18:35:09 +11001910 goto balance_counter;
David Chinner4be536d2006-09-07 14:26:50 +10001911 icsbp->icsb_fdblocks = lcounter + XFS_ALLOC_SET_ASIDE(mp);
David Chinner8d280b92006-03-14 13:13:09 +11001912 break;
1913 default:
1914 BUG();
1915 break;
1916 }
David Chinner01e1b692006-03-14 13:29:16 +11001917 xfs_icsb_unlock_cntr(icsbp);
Christoph Lameter7a9e02d2009-10-03 19:48:23 +09001918 preempt_enable();
David Chinner8d280b92006-03-14 13:13:09 +11001919 return 0;
1920
David Chinner8d280b92006-03-14 13:13:09 +11001921slow_path:
Christoph Lameter7a9e02d2009-10-03 19:48:23 +09001922 preempt_enable();
David Chinner20b64282007-02-10 18:35:09 +11001923
1924 /*
1925 * serialise with a mutex so we don't burn lots of cpu on
1926 * the superblock lock. We still need to hold the superblock
1927 * lock, however, when we modify the global structures.
1928 */
David Chinner03135cf2007-02-10 18:35:15 +11001929 xfs_icsb_lock(mp);
David Chinner20b64282007-02-10 18:35:09 +11001930
1931 /*
1932 * Now running atomically.
1933 *
1934 * If the counter is enabled, someone has beaten us to rebalancing.
1935 * Drop the lock and try again in the fast path....
1936 */
1937 if (!(xfs_icsb_counter_disabled(mp, field))) {
David Chinner03135cf2007-02-10 18:35:15 +11001938 xfs_icsb_unlock(mp);
David Chinner20b64282007-02-10 18:35:09 +11001939 goto again;
1940 }
1941
1942 /*
1943 * The counter is currently disabled. Because we are
1944 * running atomically here, we know a rebalance cannot
1945 * be in progress. Hence we can go straight to operating
1946 * on the global superblock. We do not call xfs_mod_incore_sb()
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001947 * here even though we need to get the m_sb_lock. Doing so
David Chinner20b64282007-02-10 18:35:09 +11001948 * will cause us to re-enter this function and deadlock.
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001949 * Hence we get the m_sb_lock ourselves and then call
David Chinner20b64282007-02-10 18:35:09 +11001950 * xfs_mod_incore_sb_unlocked() as the unlocked path operates
1951 * directly on the global counters.
1952 */
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001953 spin_lock(&mp->m_sb_lock);
David Chinner20b64282007-02-10 18:35:09 +11001954 ret = xfs_mod_incore_sb_unlocked(mp, field, delta, rsvd);
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001955 spin_unlock(&mp->m_sb_lock);
David Chinner20b64282007-02-10 18:35:09 +11001956
1957 /*
1958 * Now that we've modified the global superblock, we
1959 * may be able to re-enable the distributed counters
1960 * (e.g. lots of space just got freed). After that
1961 * we are done.
1962 */
1963 if (ret != ENOSPC)
Christoph Hellwig45af6c62008-04-22 17:34:44 +10001964 xfs_icsb_balance_counter(mp, field, 0);
David Chinner03135cf2007-02-10 18:35:15 +11001965 xfs_icsb_unlock(mp);
David Chinner20b64282007-02-10 18:35:09 +11001966 return ret;
1967
1968balance_counter:
David Chinner01e1b692006-03-14 13:29:16 +11001969 xfs_icsb_unlock_cntr(icsbp);
Christoph Lameter7a9e02d2009-10-03 19:48:23 +09001970 preempt_enable();
David Chinner8d280b92006-03-14 13:13:09 +11001971
David Chinner20b64282007-02-10 18:35:09 +11001972 /*
1973 * We may have multiple threads here if multiple per-cpu
1974 * counters run dry at the same time. This will mean we can
1975 * do more balances than strictly necessary but it is not
1976 * the common slowpath case.
1977 */
David Chinner03135cf2007-02-10 18:35:15 +11001978 xfs_icsb_lock(mp);
David Chinner8d280b92006-03-14 13:13:09 +11001979
David Chinner20b64282007-02-10 18:35:09 +11001980 /*
1981 * running atomically.
1982 *
1983 * This will leave the counter in the correct state for future
1984 * accesses. After the rebalance, we simply try again and our retry
1985 * will either succeed through the fast path or slow path without
1986 * another balance operation being required.
1987 */
Christoph Hellwig45af6c62008-04-22 17:34:44 +10001988 xfs_icsb_balance_counter(mp, field, delta);
David Chinner03135cf2007-02-10 18:35:15 +11001989 xfs_icsb_unlock(mp);
David Chinner20b64282007-02-10 18:35:09 +11001990 goto again;
David Chinner8d280b92006-03-14 13:13:09 +11001991}
1992
David Chinner8d280b92006-03-14 13:13:09 +11001993#endif