blob: 142c460fc64ef32452e0b97dd548e394d4f35ad2 [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 Chinner70a9883c2013-10-23 10:36:05 +110020#include "xfs_shared.h"
Dave Chinner239880e2013-10-23 10:50:10 +110021#include "xfs_format.h"
22#include "xfs_log_format.h"
23#include "xfs_trans_resv.h"
Nathan Scotta844f452005-11-02 14:38:42 +110024#include "xfs_bit.h"
Nathan Scotta844f452005-11-02 14:38:42 +110025#include "xfs_inum.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 Chinner57062782013-10-15 09:17:51 +110029#include "xfs_da_format.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "xfs_inode.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110031#include "xfs_dir2.h"
Nathan Scotta844f452005-11-02 14:38:42 +110032#include "xfs_ialloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "xfs_alloc.h"
34#include "xfs_rtalloc.h"
35#include "xfs_bmap.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110036#include "xfs_trans.h"
37#include "xfs_trans_priv.h"
38#include "xfs_log.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include "xfs_error.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include "xfs_quota.h"
41#include "xfs_fsops.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000042#include "xfs_trace.h"
Dave Chinner6d8b79c2012-10-08 21:56:09 +110043#include "xfs_icache.h"
Dave Chinner8f805872013-11-01 15:27:20 +110044#include "xfs_dinode.h"
Brian Fostera31b1d32014-07-15 08:07:01 +100045#include "xfs_sysfs.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000046
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
David Chinner8d280b92006-03-14 13:13:09 +110048#ifdef HAVE_PERCPU_SB
David Chinner20f4ebf2007-02-10 18:36:10 +110049STATIC void xfs_icsb_balance_counter(xfs_mount_t *, xfs_sb_field_t,
Christoph Hellwig45af6c62008-04-22 17:34:44 +100050 int);
51STATIC void xfs_icsb_balance_counter_locked(xfs_mount_t *, xfs_sb_field_t,
52 int);
David Chinner36fbe6e2008-04-10 12:19:56 +100053STATIC void xfs_icsb_disable_counter(xfs_mount_t *, xfs_sb_field_t);
David Chinner8d280b92006-03-14 13:13:09 +110054#else
55
Christoph Hellwig45af6c62008-04-22 17:34:44 +100056#define xfs_icsb_balance_counter(mp, a, b) do { } while (0)
57#define xfs_icsb_balance_counter_locked(mp, a, b) do { } while (0)
David Chinner8d280b92006-03-14 13:13:09 +110058#endif
59
Christoph Hellwig27174202009-03-30 10:21:31 +020060static DEFINE_MUTEX(xfs_uuid_table_mutex);
61static int xfs_uuid_table_size;
62static uuid_t *xfs_uuid_table;
63
Brian Fostera31b1d32014-07-15 08:07:01 +100064extern struct kset *xfs_kset;
65
Christoph Hellwig27174202009-03-30 10:21:31 +020066/*
67 * See if the UUID is unique among mounted XFS filesystems.
68 * Mount fails if UUID is nil or a FS with the same UUID is already mounted.
69 */
70STATIC int
71xfs_uuid_mount(
72 struct xfs_mount *mp)
73{
74 uuid_t *uuid = &mp->m_sb.sb_uuid;
75 int hole, i;
76
77 if (mp->m_flags & XFS_MOUNT_NOUUID)
78 return 0;
79
80 if (uuid_is_nil(uuid)) {
Dave Chinner0b932cc2011-03-07 10:08:35 +110081 xfs_warn(mp, "Filesystem has nil UUID - can't mount");
Dave Chinner24513372014-06-25 14:58:08 +100082 return -EINVAL;
Christoph Hellwig27174202009-03-30 10:21:31 +020083 }
84
85 mutex_lock(&xfs_uuid_table_mutex);
86 for (i = 0, hole = -1; i < xfs_uuid_table_size; i++) {
87 if (uuid_is_nil(&xfs_uuid_table[i])) {
88 hole = i;
89 continue;
90 }
91 if (uuid_equal(uuid, &xfs_uuid_table[i]))
92 goto out_duplicate;
93 }
94
95 if (hole < 0) {
96 xfs_uuid_table = kmem_realloc(xfs_uuid_table,
97 (xfs_uuid_table_size + 1) * sizeof(*xfs_uuid_table),
98 xfs_uuid_table_size * sizeof(*xfs_uuid_table),
99 KM_SLEEP);
100 hole = xfs_uuid_table_size++;
101 }
102 xfs_uuid_table[hole] = *uuid;
103 mutex_unlock(&xfs_uuid_table_mutex);
104
105 return 0;
106
107 out_duplicate:
108 mutex_unlock(&xfs_uuid_table_mutex);
Mitsuo Hayasaka021000e2012-01-13 05:58:39 +0000109 xfs_warn(mp, "Filesystem has duplicate UUID %pU - can't mount", uuid);
Dave Chinner24513372014-06-25 14:58:08 +1000110 return -EINVAL;
Christoph Hellwig27174202009-03-30 10:21:31 +0200111}
112
113STATIC void
114xfs_uuid_unmount(
115 struct xfs_mount *mp)
116{
117 uuid_t *uuid = &mp->m_sb.sb_uuid;
118 int i;
119
120 if (mp->m_flags & XFS_MOUNT_NOUUID)
121 return;
122
123 mutex_lock(&xfs_uuid_table_mutex);
124 for (i = 0; i < xfs_uuid_table_size; i++) {
125 if (uuid_is_nil(&xfs_uuid_table[i]))
126 continue;
127 if (!uuid_equal(uuid, &xfs_uuid_table[i]))
128 continue;
129 memset(&xfs_uuid_table[i], 0, sizeof(uuid_t));
130 break;
131 }
132 ASSERT(i < xfs_uuid_table_size);
133 mutex_unlock(&xfs_uuid_table_mutex);
134}
135
136
Dave Chinnere1765792010-09-22 10:47:20 +1000137STATIC void
138__xfs_free_perag(
139 struct rcu_head *head)
140{
141 struct xfs_perag *pag = container_of(head, struct xfs_perag, rcu_head);
142
143 ASSERT(atomic_read(&pag->pag_ref) == 0);
144 kmem_free(pag);
145}
146
Dave Chinner0fa800f2010-01-11 11:47:46 +0000147/*
Dave Chinnere1765792010-09-22 10:47:20 +1000148 * Free up the per-ag resources associated with the mount structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 */
Christoph Hellwigc962fb72008-05-20 15:10:52 +1000150STATIC void
Christoph Hellwigff4f0382008-08-13 16:50:47 +1000151xfs_free_perag(
Christoph Hellwig745f6912007-08-30 17:20:39 +1000152 xfs_mount_t *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000154 xfs_agnumber_t agno;
155 struct xfs_perag *pag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000157 for (agno = 0; agno < mp->m_sb.sb_agcount; agno++) {
158 spin_lock(&mp->m_perag_lock);
159 pag = radix_tree_delete(&mp->m_perag_tree, agno);
160 spin_unlock(&mp->m_perag_lock);
Dave Chinnere1765792010-09-22 10:47:20 +1000161 ASSERT(pag);
Dave Chinnerf83282a2010-11-08 08:55:04 +0000162 ASSERT(atomic_read(&pag->pag_ref) == 0);
Dave Chinnere1765792010-09-22 10:47:20 +1000163 call_rcu(&pag->rcu_head, __xfs_free_perag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165}
166
Nathan Scott4cc929e2007-05-14 18:24:02 +1000167/*
168 * Check size of device based on the (data/realtime) block count.
169 * Note: this check is used by the growfs code as well as mount.
170 */
171int
172xfs_sb_validate_fsb_count(
173 xfs_sb_t *sbp,
174 __uint64_t nblocks)
175{
176 ASSERT(PAGE_SHIFT >= sbp->sb_blocklog);
177 ASSERT(sbp->sb_blocklog >= BBSHIFT);
178
Christoph Hellwigd5cf09b2014-07-30 09:12:05 +1000179 /* Limited by ULONG_MAX of page cache index */
Nathan Scott4cc929e2007-05-14 18:24:02 +1000180 if (nblocks >> (PAGE_CACHE_SHIFT - sbp->sb_blocklog) > ULONG_MAX)
Dave Chinner24513372014-06-25 14:58:08 +1000181 return -EFBIG;
Nathan Scott4cc929e2007-05-14 18:24:02 +1000182 return 0;
183}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000185int
Nathan Scottc11e2c32005-11-02 15:11:45 +1100186xfs_initialize_perag(
Nathan Scottc11e2c32005-11-02 15:11:45 +1100187 xfs_mount_t *mp,
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000188 xfs_agnumber_t agcount,
189 xfs_agnumber_t *maxagi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300191 xfs_agnumber_t index;
Dave Chinner8b26c582010-01-11 11:47:48 +0000192 xfs_agnumber_t first_initialised = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 xfs_perag_t *pag;
194 xfs_agino_t agino;
195 xfs_ino_t ino;
196 xfs_sb_t *sbp = &mp->m_sb;
Dave Chinner8b26c582010-01-11 11:47:48 +0000197 int error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000199 /*
200 * Walk the current per-ag tree so we don't try to initialise AGs
201 * that already exist (growfs case). Allocate and insert all the
202 * AGs we don't find ready for initialisation.
203 */
204 for (index = 0; index < agcount; index++) {
205 pag = xfs_perag_get(mp, index);
206 if (pag) {
207 xfs_perag_put(pag);
208 continue;
209 }
Dave Chinner8b26c582010-01-11 11:47:48 +0000210 if (!first_initialised)
211 first_initialised = index;
Christoph Hellwigfb3b5042010-05-28 19:03:10 +0000212
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000213 pag = kmem_zalloc(sizeof(*pag), KM_MAYFAIL);
214 if (!pag)
Dave Chinner8b26c582010-01-11 11:47:48 +0000215 goto out_unwind;
Christoph Hellwigfb3b5042010-05-28 19:03:10 +0000216 pag->pag_agno = index;
217 pag->pag_mount = mp;
Dave Chinner1a427ab2010-12-16 17:08:41 +1100218 spin_lock_init(&pag->pag_ici_lock);
Dave Chinner69b491c2010-09-27 11:09:51 +1000219 mutex_init(&pag->pag_ici_reclaim_lock);
Christoph Hellwigfb3b5042010-05-28 19:03:10 +0000220 INIT_RADIX_TREE(&pag->pag_ici_root, GFP_ATOMIC);
Dave Chinner74f75a02010-09-24 19:59:04 +1000221 spin_lock_init(&pag->pag_buf_lock);
222 pag->pag_buf_tree = RB_ROOT;
Christoph Hellwigfb3b5042010-05-28 19:03:10 +0000223
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000224 if (radix_tree_preload(GFP_NOFS))
Dave Chinner8b26c582010-01-11 11:47:48 +0000225 goto out_unwind;
Christoph Hellwigfb3b5042010-05-28 19:03:10 +0000226
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000227 spin_lock(&mp->m_perag_lock);
228 if (radix_tree_insert(&mp->m_perag_tree, index, pag)) {
229 BUG();
230 spin_unlock(&mp->m_perag_lock);
Dave Chinner8b26c582010-01-11 11:47:48 +0000231 radix_tree_preload_end();
232 error = -EEXIST;
233 goto out_unwind;
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000234 }
235 spin_unlock(&mp->m_perag_lock);
236 radix_tree_preload_end();
237 }
238
Christoph Hellwigfb3b5042010-05-28 19:03:10 +0000239 /*
240 * If we mount with the inode64 option, or no inode overflows
241 * the legacy 32-bit address space clear the inode32 option.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 */
Christoph Hellwigfb3b5042010-05-28 19:03:10 +0000243 agino = XFS_OFFBNO_TO_AGINO(mp, sbp->sb_agblocks - 1, 0);
244 ino = XFS_AGINO_TO_INO(mp, agcount - 1, agino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Christoph Hellwigfb3b5042010-05-28 19:03:10 +0000246 if ((mp->m_flags & XFS_MOUNT_SMALL_INUMS) && ino > XFS_MAXINUMBER_32)
247 mp->m_flags |= XFS_MOUNT_32BITINODES;
248 else
249 mp->m_flags &= ~XFS_MOUNT_32BITINODES;
250
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300251 if (mp->m_flags & XFS_MOUNT_32BITINODES)
Eric Sandeen9de67c32014-07-24 20:51:54 +1000252 index = xfs_set_inode32(mp, agcount);
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300253 else
Eric Sandeen9de67c32014-07-24 20:51:54 +1000254 index = xfs_set_inode64(mp, agcount);
Christoph Hellwigfb3b5042010-05-28 19:03:10 +0000255
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000256 if (maxagi)
257 *maxagi = index;
258 return 0;
Dave Chinner8b26c582010-01-11 11:47:48 +0000259
260out_unwind:
261 kmem_free(pag);
262 for (; index > first_initialised; index--) {
263 pag = radix_tree_delete(&mp->m_perag_tree, index);
264 kmem_free(pag);
265 }
266 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269/*
270 * xfs_readsb
271 *
272 * Does the initial read of the superblock.
273 */
274int
Dave Chinnerff550682013-08-12 20:49:41 +1000275xfs_readsb(
276 struct xfs_mount *mp,
277 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{
279 unsigned int sector_size;
Dave Chinner04a1e6c2013-04-03 16:11:31 +1100280 struct xfs_buf *bp;
281 struct xfs_sb *sbp = &mp->m_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 int error;
Dave Chinneraf34e092011-03-07 10:04:35 +1100283 int loud = !(flags & XFS_MFSI_QUIET);
Eric Sandeendaba5422014-02-19 15:39:16 +1100284 const struct xfs_buf_ops *buf_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
286 ASSERT(mp->m_sb_bp == NULL);
287 ASSERT(mp->m_ddev_targp != NULL);
288
289 /*
Eric Sandeendaba5422014-02-19 15:39:16 +1100290 * For the initial read, we must guess at the sector
291 * size based on the block device. It's enough to
292 * get the sb_sectsize out of the superblock and
293 * then reread with the proper length.
294 * We don't verify it yet, because it may not be complete.
295 */
296 sector_size = xfs_getsize_buftarg(mp->m_ddev_targp);
297 buf_ops = NULL;
298
299 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 * Allocate a (locked) buffer to hold the superblock.
301 * This will be kept around at all times to optimize
302 * access to the superblock.
303 */
Dave Chinner26af6552010-09-22 10:47:20 +1000304reread:
Dave Chinnerba372672014-10-02 09:05:32 +1000305 error = xfs_buf_read_uncached(mp->m_ddev_targp, XFS_SB_DADDR,
306 BTOBB(sector_size), 0, &bp, buf_ops);
307 if (error) {
Dave Chinnereab4e632012-11-12 22:54:02 +1100308 if (loud)
Dave Chinnere721f502013-04-03 16:11:32 +1100309 xfs_warn(mp, "SB validate failed with error %d.", error);
Dave Chinnerac75a1f2014-03-07 16:19:14 +1100310 /* bad CRC means corrupted metadata */
Dave Chinner24513372014-06-25 14:58:08 +1000311 if (error == -EFSBADCRC)
312 error = -EFSCORRUPTED;
Dave Chinnerba372672014-10-02 09:05:32 +1000313 return error;
Dave Chinnereab4e632012-11-12 22:54:02 +1100314 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
316 /*
317 * Initialize the mount structure from the superblock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 */
Dave Chinner556b8882014-06-06 16:00:43 +1000319 xfs_sb_from_disk(sbp, XFS_BUF_TO_SBP(bp));
Dave Chinner556b8882014-06-06 16:00:43 +1000320
321 /*
322 * If we haven't validated the superblock, do so now before we try
323 * to check the sector size and reread the superblock appropriately.
324 */
325 if (sbp->sb_magicnum != XFS_SB_MAGIC) {
326 if (loud)
327 xfs_warn(mp, "Invalid superblock magic number");
Dave Chinner24513372014-06-25 14:58:08 +1000328 error = -EINVAL;
Dave Chinner556b8882014-06-06 16:00:43 +1000329 goto release_buf;
330 }
Dave Chinnerff550682013-08-12 20:49:41 +1000331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 /*
333 * We must be able to do sector-sized and sector-aligned IO.
334 */
Dave Chinner04a1e6c2013-04-03 16:11:31 +1100335 if (sector_size > sbp->sb_sectsize) {
Dave Chinneraf34e092011-03-07 10:04:35 +1100336 if (loud)
337 xfs_warn(mp, "device supports %u byte sectors (not %u)",
Dave Chinner04a1e6c2013-04-03 16:11:31 +1100338 sector_size, sbp->sb_sectsize);
Dave Chinner24513372014-06-25 14:58:08 +1000339 error = -ENOSYS;
Dave Chinner26af6552010-09-22 10:47:20 +1000340 goto release_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 }
342
Eric Sandeendaba5422014-02-19 15:39:16 +1100343 if (buf_ops == NULL) {
Dave Chinner556b8882014-06-06 16:00:43 +1000344 /*
345 * Re-read the superblock so the buffer is correctly sized,
346 * and properly verified.
347 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 xfs_buf_relse(bp);
Dave Chinner04a1e6c2013-04-03 16:11:31 +1100349 sector_size = sbp->sb_sectsize;
Eric Sandeendaba5422014-02-19 15:39:16 +1100350 buf_ops = loud ? &xfs_sb_buf_ops : &xfs_sb_quiet_buf_ops;
Dave Chinner26af6552010-09-22 10:47:20 +1000351 goto reread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 }
353
Lachlan McIlroy5478eea2007-02-10 18:36:29 +1100354 /* Initialize per-cpu counters */
355 xfs_icsb_reinit_counters(mp);
David Chinner8d280b92006-03-14 13:13:09 +1100356
Dave Chinner04a1e6c2013-04-03 16:11:31 +1100357 /* no need to be quiet anymore, so reset the buf ops */
358 bp->b_ops = &xfs_sb_buf_ops;
359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 mp->m_sb_bp = bp;
Dave Chinner26af6552010-09-22 10:47:20 +1000361 xfs_buf_unlock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 return 0;
363
Dave Chinner26af6552010-09-22 10:47:20 +1000364release_buf:
365 xfs_buf_relse(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 return error;
367}
368
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369/*
Eric Sandeen0771fb42007-10-12 11:03:40 +1000370 * Update alignment values based on mount options and sb values
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 */
Eric Sandeen0771fb42007-10-12 11:03:40 +1000372STATIC int
Christoph Hellwig7884bc82009-01-19 02:04:07 +0100373xfs_update_alignment(xfs_mount_t *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 xfs_sb_t *sbp = &(mp->m_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Christoph Hellwig42490232008-08-13 16:49:32 +1000377 if (mp->m_dalign) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 /*
379 * If stripe unit and stripe width are not multiples
380 * of the fs blocksize turn off alignment.
381 */
382 if ((BBTOB(mp->m_dalign) & mp->m_blockmask) ||
383 (BBTOB(mp->m_swidth) & mp->m_blockmask)) {
Jie Liu39a45d82013-05-02 19:27:47 +0800384 xfs_warn(mp,
385 "alignment check failed: sunit/swidth vs. blocksize(%d)",
386 sbp->sb_blocksize);
Dave Chinner24513372014-06-25 14:58:08 +1000387 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 } else {
389 /*
390 * Convert the stripe unit and width to FSBs.
391 */
392 mp->m_dalign = XFS_BB_TO_FSBT(mp, mp->m_dalign);
393 if (mp->m_dalign && (sbp->sb_agblocks % mp->m_dalign)) {
Dave Chinner53487782011-03-07 10:05:35 +1100394 xfs_warn(mp,
Jie Liu39a45d82013-05-02 19:27:47 +0800395 "alignment check failed: sunit/swidth vs. agsize(%d)",
396 sbp->sb_agblocks);
Dave Chinner24513372014-06-25 14:58:08 +1000397 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 } else if (mp->m_dalign) {
399 mp->m_swidth = XFS_BB_TO_FSBT(mp, mp->m_swidth);
400 } else {
Jie Liu39a45d82013-05-02 19:27:47 +0800401 xfs_warn(mp,
402 "alignment check failed: sunit(%d) less than bsize(%d)",
403 mp->m_dalign, sbp->sb_blocksize);
Dave Chinner24513372014-06-25 14:58:08 +1000404 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 }
406 }
407
408 /*
409 * Update superblock with new values
410 * and log changes
411 */
Eric Sandeen62118702008-03-06 13:44:28 +1100412 if (xfs_sb_version_hasdalign(sbp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 if (sbp->sb_unit != mp->m_dalign) {
414 sbp->sb_unit = mp->m_dalign;
Christoph Hellwig7884bc82009-01-19 02:04:07 +0100415 mp->m_update_flags |= XFS_SB_UNIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 }
417 if (sbp->sb_width != mp->m_swidth) {
418 sbp->sb_width = mp->m_swidth;
Christoph Hellwig7884bc82009-01-19 02:04:07 +0100419 mp->m_update_flags |= XFS_SB_WIDTH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 }
Jie Liu34d7f602013-05-02 19:27:53 +0800421 } else {
422 xfs_warn(mp,
423 "cannot change alignment: superblock does not support data alignment");
Dave Chinner24513372014-06-25 14:58:08 +1000424 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 }
426 } else if ((mp->m_flags & XFS_MOUNT_NOALIGN) != XFS_MOUNT_NOALIGN &&
Eric Sandeen62118702008-03-06 13:44:28 +1100427 xfs_sb_version_hasdalign(&mp->m_sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 mp->m_dalign = sbp->sb_unit;
429 mp->m_swidth = sbp->sb_width;
430 }
431
Eric Sandeen0771fb42007-10-12 11:03:40 +1000432 return 0;
433}
434
435/*
436 * Set the maximum inode count for this filesystem
437 */
438STATIC void
439xfs_set_maxicount(xfs_mount_t *mp)
440{
441 xfs_sb_t *sbp = &(mp->m_sb);
442 __uint64_t icount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
444 if (sbp->sb_imax_pct) {
Eric Sandeen0771fb42007-10-12 11:03:40 +1000445 /*
446 * Make sure the maximum inode count is a multiple
447 * of the units we allocate inodes in.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 icount = sbp->sb_dblocks * sbp->sb_imax_pct;
450 do_div(icount, 100);
451 do_div(icount, mp->m_ialloc_blks);
452 mp->m_maxicount = (icount * mp->m_ialloc_blks) <<
453 sbp->sb_inopblog;
Eric Sandeen0771fb42007-10-12 11:03:40 +1000454 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 mp->m_maxicount = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 }
Eric Sandeen0771fb42007-10-12 11:03:40 +1000457}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Eric Sandeen0771fb42007-10-12 11:03:40 +1000459/*
460 * Set the default minimum read and write sizes unless
461 * already specified in a mount option.
462 * We use smaller I/O sizes when the file system
463 * is being used for NFS service (wsync mount option).
464 */
465STATIC void
466xfs_set_rw_sizes(xfs_mount_t *mp)
467{
468 xfs_sb_t *sbp = &(mp->m_sb);
469 int readio_log, writeio_log;
470
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 if (!(mp->m_flags & XFS_MOUNT_DFLT_IOSIZE)) {
472 if (mp->m_flags & XFS_MOUNT_WSYNC) {
473 readio_log = XFS_WSYNC_READIO_LOG;
474 writeio_log = XFS_WSYNC_WRITEIO_LOG;
475 } else {
476 readio_log = XFS_READIO_LOG_LARGE;
477 writeio_log = XFS_WRITEIO_LOG_LARGE;
478 }
479 } else {
480 readio_log = mp->m_readio_log;
481 writeio_log = mp->m_writeio_log;
482 }
483
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 if (sbp->sb_blocklog > readio_log) {
485 mp->m_readio_log = sbp->sb_blocklog;
486 } else {
487 mp->m_readio_log = readio_log;
488 }
489 mp->m_readio_blocks = 1 << (mp->m_readio_log - sbp->sb_blocklog);
490 if (sbp->sb_blocklog > writeio_log) {
491 mp->m_writeio_log = sbp->sb_blocklog;
492 } else {
493 mp->m_writeio_log = writeio_log;
494 }
495 mp->m_writeio_blocks = 1 << (mp->m_writeio_log - sbp->sb_blocklog);
Eric Sandeen0771fb42007-10-12 11:03:40 +1000496}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Eric Sandeen0771fb42007-10-12 11:03:40 +1000498/*
Dave Chinner055388a2011-01-04 11:35:03 +1100499 * precalculate the low space thresholds for dynamic speculative preallocation.
500 */
501void
502xfs_set_low_space_thresholds(
503 struct xfs_mount *mp)
504{
505 int i;
506
507 for (i = 0; i < XFS_LOWSP_MAX; i++) {
508 __uint64_t space = mp->m_sb.sb_dblocks;
509
510 do_div(space, 100);
511 mp->m_low_space[i] = space * (i + 1);
512 }
513}
514
515
516/*
Eric Sandeen0771fb42007-10-12 11:03:40 +1000517 * Set whether we're using inode alignment.
518 */
519STATIC void
520xfs_set_inoalignment(xfs_mount_t *mp)
521{
Eric Sandeen62118702008-03-06 13:44:28 +1100522 if (xfs_sb_version_hasalign(&mp->m_sb) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 mp->m_sb.sb_inoalignmt >=
524 XFS_B_TO_FSBT(mp, mp->m_inode_cluster_size))
525 mp->m_inoalign_mask = mp->m_sb.sb_inoalignmt - 1;
526 else
527 mp->m_inoalign_mask = 0;
528 /*
529 * If we are using stripe alignment, check whether
530 * the stripe unit is a multiple of the inode alignment
531 */
532 if (mp->m_dalign && mp->m_inoalign_mask &&
533 !(mp->m_dalign & mp->m_inoalign_mask))
534 mp->m_sinoalign = mp->m_dalign;
535 else
536 mp->m_sinoalign = 0;
Eric Sandeen0771fb42007-10-12 11:03:40 +1000537}
538
539/*
Zhi Yong Wu0471f622013-08-07 10:10:58 +0000540 * Check that the data (and log if separate) is an ok size.
Eric Sandeen0771fb42007-10-12 11:03:40 +1000541 */
542STATIC int
Dave Chinnerba372672014-10-02 09:05:32 +1000543xfs_check_sizes(
544 struct xfs_mount *mp)
Eric Sandeen0771fb42007-10-12 11:03:40 +1000545{
Dave Chinnerba372672014-10-02 09:05:32 +1000546 struct xfs_buf *bp;
Eric Sandeen0771fb42007-10-12 11:03:40 +1000547 xfs_daddr_t d;
Dave Chinnerba372672014-10-02 09:05:32 +1000548 int error;
Eric Sandeen0771fb42007-10-12 11:03:40 +1000549
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 d = (xfs_daddr_t)XFS_FSB_TO_BB(mp, mp->m_sb.sb_dblocks);
551 if (XFS_BB_TO_FSB(mp, d) != mp->m_sb.sb_dblocks) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100552 xfs_warn(mp, "filesystem size mismatch detected");
Dave Chinner24513372014-06-25 14:58:08 +1000553 return -EFBIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 }
Dave Chinnerba372672014-10-02 09:05:32 +1000555 error = xfs_buf_read_uncached(mp->m_ddev_targp,
Dave Chinner1922c942010-09-22 10:47:20 +1000556 d - XFS_FSS_TO_BB(mp, 1),
Dave Chinnerba372672014-10-02 09:05:32 +1000557 XFS_FSS_TO_BB(mp, 1), 0, &bp, NULL);
558 if (error) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100559 xfs_warn(mp, "last sector read failed");
Dave Chinnerba372672014-10-02 09:05:32 +1000560 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 }
Dave Chinner1922c942010-09-22 10:47:20 +1000562 xfs_buf_relse(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Dave Chinnerba372672014-10-02 09:05:32 +1000564 if (mp->m_logdev_targp == mp->m_ddev_targp)
565 return 0;
566
567 d = (xfs_daddr_t)XFS_FSB_TO_BB(mp, mp->m_sb.sb_logblocks);
568 if (XFS_BB_TO_FSB(mp, d) != mp->m_sb.sb_logblocks) {
569 xfs_warn(mp, "log size mismatch detected");
570 return -EFBIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 }
Dave Chinnerba372672014-10-02 09:05:32 +1000572 error = xfs_buf_read_uncached(mp->m_logdev_targp,
573 d - XFS_FSB_TO_BB(mp, 1),
574 XFS_FSB_TO_BB(mp, 1), 0, &bp, NULL);
575 if (error) {
576 xfs_warn(mp, "log device read failed");
577 return error;
578 }
579 xfs_buf_relse(bp);
Eric Sandeen0771fb42007-10-12 11:03:40 +1000580 return 0;
581}
582
583/*
Christoph Hellwig7d095252009-06-08 15:33:32 +0200584 * Clear the quotaflags in memory and in the superblock.
585 */
586int
587xfs_mount_reset_sbqflags(
588 struct xfs_mount *mp)
589{
590 int error;
591 struct xfs_trans *tp;
592
593 mp->m_qflags = 0;
594
595 /*
596 * It is OK to look at sb_qflags here in mount path,
597 * without m_sb_lock.
598 */
599 if (mp->m_sb.sb_qflags == 0)
600 return 0;
601 spin_lock(&mp->m_sb_lock);
602 mp->m_sb.sb_qflags = 0;
603 spin_unlock(&mp->m_sb_lock);
604
605 /*
606 * If the fs is readonly, let the incore superblock run
607 * with quotas off but don't flush the update out to disk
608 */
609 if (mp->m_flags & XFS_MOUNT_RDONLY)
610 return 0;
611
Christoph Hellwig7d095252009-06-08 15:33:32 +0200612 tp = xfs_trans_alloc(mp, XFS_TRANS_QM_SBCHANGE);
Jie Liu3d3c8b52013-08-12 20:49:59 +1000613 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_qm_sbchange, 0, 0);
Christoph Hellwig7d095252009-06-08 15:33:32 +0200614 if (error) {
615 xfs_trans_cancel(tp, 0);
Dave Chinner53487782011-03-07 10:05:35 +1100616 xfs_alert(mp, "%s: Superblock update failed!", __func__);
Christoph Hellwig7d095252009-06-08 15:33:32 +0200617 return error;
618 }
619
620 xfs_mod_sb(tp, XFS_SB_QFLAGS);
621 return xfs_trans_commit(tp, 0);
622}
623
Eric Sandeend5db0f92010-02-05 22:59:53 +0000624__uint64_t
625xfs_default_resblks(xfs_mount_t *mp)
626{
627 __uint64_t resblks;
628
629 /*
Dave Chinner8babd8a2010-03-04 01:46:25 +0000630 * We default to 5% or 8192 fsbs of space reserved, whichever is
631 * smaller. This is intended to cover concurrent allocation
632 * transactions when we initially hit enospc. These each require a 4
633 * block reservation. Hence by default we cover roughly 2000 concurrent
634 * allocation reservations.
Eric Sandeend5db0f92010-02-05 22:59:53 +0000635 */
636 resblks = mp->m_sb.sb_dblocks;
637 do_div(resblks, 20);
Dave Chinner8babd8a2010-03-04 01:46:25 +0000638 resblks = min_t(__uint64_t, resblks, 8192);
Eric Sandeend5db0f92010-02-05 22:59:53 +0000639 return resblks;
640}
641
Christoph Hellwig7d095252009-06-08 15:33:32 +0200642/*
Eric Sandeen0771fb42007-10-12 11:03:40 +1000643 * This function does the following on an initial mount of a file system:
644 * - reads the superblock from disk and init the mount struct
645 * - if we're a 32-bit kernel, do a size check on the superblock
646 * so we don't mount terabyte filesystems
647 * - init mount struct realtime fields
648 * - allocate inode hash table for fs
649 * - init directory manager
650 * - perform recovery and init the log manager
651 */
652int
653xfs_mountfs(
Christoph Hellwig42490232008-08-13 16:49:32 +1000654 xfs_mount_t *mp)
Eric Sandeen0771fb42007-10-12 11:03:40 +1000655{
656 xfs_sb_t *sbp = &(mp->m_sb);
657 xfs_inode_t *rip;
Eric Sandeen0771fb42007-10-12 11:03:40 +1000658 __uint64_t resblks;
Christoph Hellwig7d095252009-06-08 15:33:32 +0200659 uint quotamount = 0;
660 uint quotaflags = 0;
Eric Sandeen0771fb42007-10-12 11:03:40 +1000661 int error = 0;
662
Dave Chinnerff550682013-08-12 20:49:41 +1000663 xfs_sb_mount_common(mp, sbp);
Eric Sandeen0771fb42007-10-12 11:03:40 +1000664
665 /*
Eric Sandeene6957ea2008-04-10 12:19:34 +1000666 * Check for a mismatched features2 values. Older kernels
667 * read & wrote into the wrong sb offset for sb_features2
668 * on some platforms due to xfs_sb_t not being 64bit size aligned
669 * when sb_features2 was added, which made older superblock
670 * reading/writing routines swap it as a 64-bit value.
David Chinneree1c0902008-03-06 13:45:50 +1100671 *
Eric Sandeene6957ea2008-04-10 12:19:34 +1000672 * For backwards compatibility, we make both slots equal.
673 *
674 * If we detect a mismatched field, we OR the set bits into the
675 * existing features2 field in case it has already been modified; we
676 * don't want to lose any features. We then update the bad location
677 * with the ORed value so that older kernels will see any features2
678 * flags, and mark the two fields as needing updates once the
679 * transaction subsystem is online.
David Chinneree1c0902008-03-06 13:45:50 +1100680 */
Eric Sandeene6957ea2008-04-10 12:19:34 +1000681 if (xfs_sb_has_mismatched_features2(sbp)) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100682 xfs_warn(mp, "correcting sb_features alignment problem");
David Chinneree1c0902008-03-06 13:45:50 +1100683 sbp->sb_features2 |= sbp->sb_bad_features2;
Eric Sandeene6957ea2008-04-10 12:19:34 +1000684 sbp->sb_bad_features2 = sbp->sb_features2;
Christoph Hellwig7884bc82009-01-19 02:04:07 +0100685 mp->m_update_flags |= XFS_SB_FEATURES2 | XFS_SB_BAD_FEATURES2;
Eric Sandeene6957ea2008-04-10 12:19:34 +1000686
687 /*
688 * Re-check for ATTR2 in case it was found in bad_features2
689 * slot.
690 */
Tim Shimmin7c12f292008-04-30 18:15:28 +1000691 if (xfs_sb_version_hasattr2(&mp->m_sb) &&
692 !(mp->m_flags & XFS_MOUNT_NOATTR2))
Eric Sandeene6957ea2008-04-10 12:19:34 +1000693 mp->m_flags |= XFS_MOUNT_ATTR2;
Tim Shimmin7c12f292008-04-30 18:15:28 +1000694 }
Eric Sandeene6957ea2008-04-10 12:19:34 +1000695
Tim Shimmin7c12f292008-04-30 18:15:28 +1000696 if (xfs_sb_version_hasattr2(&mp->m_sb) &&
697 (mp->m_flags & XFS_MOUNT_NOATTR2)) {
698 xfs_sb_version_removeattr2(&mp->m_sb);
Christoph Hellwig7884bc82009-01-19 02:04:07 +0100699 mp->m_update_flags |= XFS_SB_FEATURES2;
Tim Shimmin7c12f292008-04-30 18:15:28 +1000700
701 /* update sb_versionnum for the clearing of the morebits */
702 if (!sbp->sb_features2)
Christoph Hellwig7884bc82009-01-19 02:04:07 +0100703 mp->m_update_flags |= XFS_SB_VERSIONNUM;
David Chinneree1c0902008-03-06 13:45:50 +1100704 }
705
Dave Chinner263997a2014-05-20 07:46:40 +1000706 /* always use v2 inodes by default now */
707 if (!(mp->m_sb.sb_versionnum & XFS_SB_VERSION_NLINKBIT)) {
708 mp->m_sb.sb_versionnum |= XFS_SB_VERSION_NLINKBIT;
709 mp->m_update_flags |= XFS_SB_VERSIONNUM;
710 }
711
David Chinneree1c0902008-03-06 13:45:50 +1100712 /*
Eric Sandeen0771fb42007-10-12 11:03:40 +1000713 * Check if sb_agblocks is aligned at stripe boundary
714 * If sb_agblocks is NOT aligned turn off m_dalign since
715 * allocator alignment is within an ag, therefore ag has
716 * to be aligned at stripe boundary.
717 */
Christoph Hellwig7884bc82009-01-19 02:04:07 +0100718 error = xfs_update_alignment(mp);
Eric Sandeen0771fb42007-10-12 11:03:40 +1000719 if (error)
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100720 goto out;
Eric Sandeen0771fb42007-10-12 11:03:40 +1000721
722 xfs_alloc_compute_maxlevels(mp);
723 xfs_bmap_compute_maxlevels(mp, XFS_DATA_FORK);
724 xfs_bmap_compute_maxlevels(mp, XFS_ATTR_FORK);
725 xfs_ialloc_compute_maxlevels(mp);
726
727 xfs_set_maxicount(mp);
728
Brian Fostera31b1d32014-07-15 08:07:01 +1000729 mp->m_kobj.kobject.kset = xfs_kset;
730 error = xfs_sysfs_init(&mp->m_kobj, &xfs_mp_ktype, NULL, mp->m_fsname);
Christoph Hellwig27174202009-03-30 10:21:31 +0200731 if (error)
732 goto out;
Eric Sandeen0771fb42007-10-12 11:03:40 +1000733
Brian Fostera31b1d32014-07-15 08:07:01 +1000734 error = xfs_uuid_mount(mp);
735 if (error)
736 goto out_remove_sysfs;
737
Eric Sandeen0771fb42007-10-12 11:03:40 +1000738 /*
739 * Set the minimum read and write sizes
740 */
741 xfs_set_rw_sizes(mp);
742
Dave Chinner055388a2011-01-04 11:35:03 +1100743 /* set the low space thresholds for dynamic preallocation */
744 xfs_set_low_space_thresholds(mp);
745
Eric Sandeen0771fb42007-10-12 11:03:40 +1000746 /*
747 * Set the inode cluster size.
748 * This may still be overridden by the file system
749 * block size if it is larger than the chosen cluster size.
Dave Chinner8f805872013-11-01 15:27:20 +1100750 *
751 * For v5 filesystems, scale the cluster size with the inode size to
752 * keep a constant ratio of inode per cluster buffer, but only if mkfs
753 * has set the inode alignment value appropriately for larger cluster
754 * sizes.
Eric Sandeen0771fb42007-10-12 11:03:40 +1000755 */
756 mp->m_inode_cluster_size = XFS_INODE_BIG_CLUSTER_SIZE;
Dave Chinner8f805872013-11-01 15:27:20 +1100757 if (xfs_sb_version_hascrc(&mp->m_sb)) {
758 int new_size = mp->m_inode_cluster_size;
759
760 new_size *= mp->m_sb.sb_inodesize / XFS_DINODE_MIN_SIZE;
761 if (mp->m_sb.sb_inoalignmt >= XFS_B_TO_FSBT(mp, new_size))
762 mp->m_inode_cluster_size = new_size;
Dave Chinner8f805872013-11-01 15:27:20 +1100763 }
Eric Sandeen0771fb42007-10-12 11:03:40 +1000764
765 /*
766 * Set inode alignment fields
767 */
768 xfs_set_inoalignment(mp);
769
770 /*
Zhi Yong Wuc2bfbc92013-08-12 03:15:03 +0000771 * Check that the data (and log if separate) is an ok size.
Eric Sandeen0771fb42007-10-12 11:03:40 +1000772 */
Christoph Hellwig42490232008-08-13 16:49:32 +1000773 error = xfs_check_sizes(mp);
Eric Sandeen0771fb42007-10-12 11:03:40 +1000774 if (error)
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100775 goto out_remove_uuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
777 /*
778 * Initialize realtime fields in the mount structure
779 */
Eric Sandeen0771fb42007-10-12 11:03:40 +1000780 error = xfs_rtmount_init(mp);
781 if (error) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100782 xfs_warn(mp, "RT mount failed");
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100783 goto out_remove_uuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 }
785
786 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 * Copies the low order bits of the timestamp and the randomly
788 * set "sequence" number out of a UUID.
789 */
790 uuid_getnodeuniq(&sbp->sb_uuid, mp->m_fixedfsid);
791
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 mp->m_dmevmask = 0; /* not persistent; set after each mount */
793
Dave Chinner0650b552014-06-06 15:01:58 +1000794 error = xfs_da_mount(mp);
795 if (error) {
796 xfs_warn(mp, "Failed dir/attr init: %d", error);
797 goto out_remove_uuid;
798 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
800 /*
801 * Initialize the precomputed transaction reservations values.
802 */
803 xfs_trans_init(mp);
804
805 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 * Allocate and initialize the per-ag data.
807 */
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000808 spin_lock_init(&mp->m_perag_lock);
Dave Chinner9b98b6f2010-05-27 01:58:13 +0000809 INIT_RADIX_TREE(&mp->m_perag_tree, GFP_ATOMIC);
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000810 error = xfs_initialize_perag(mp, sbp->sb_agcount, &mp->m_maxagi);
811 if (error) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100812 xfs_warn(mp, "Failed per-ag init: %d", error);
Dave Chinner0650b552014-06-06 15:01:58 +1000813 goto out_free_dir;
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000814 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100816 if (!sbp->sb_logblocks) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100817 xfs_warn(mp, "no log defined");
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100818 XFS_ERROR_REPORT("xfs_mountfs", XFS_ERRLEVEL_LOW, mp);
Dave Chinner24513372014-06-25 14:58:08 +1000819 error = -EFSCORRUPTED;
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100820 goto out_free_perag;
821 }
822
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 /*
824 * log's mount-time initialization. Perform 1st part recovery if needed
825 */
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100826 error = xfs_log_mount(mp, mp->m_logdev_targp,
827 XFS_FSB_TO_DADDR(mp, sbp->sb_logstart),
828 XFS_FSB_TO_BB(mp, sbp->sb_logblocks));
829 if (error) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100830 xfs_warn(mp, "log mount failed");
Dave Chinnerd4f35122012-04-23 15:59:06 +1000831 goto out_fail_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 }
833
834 /*
David Chinner92821e22007-05-24 15:26:31 +1000835 * Now the log is mounted, we know if it was an unclean shutdown or
836 * not. If it was, with the first phase of recovery has completed, we
837 * have consistent AG blocks on disk. We have not recovered EFIs yet,
838 * but they are recovered transactionally in the second recovery phase
839 * later.
840 *
841 * Hence we can safely re-initialise incore superblock counters from
842 * the per-ag data. These may not be correct if the filesystem was not
843 * cleanly unmounted, so we need to wait for recovery to finish before
844 * doing this.
845 *
846 * If the filesystem was cleanly unmounted, then we can trust the
847 * values in the superblock to be correct and we don't need to do
848 * anything here.
849 *
850 * If we are currently making the filesystem, the initialisation will
851 * fail as the perag data is in an undefined state.
852 */
David Chinner92821e22007-05-24 15:26:31 +1000853 if (xfs_sb_version_haslazysbcount(&mp->m_sb) &&
854 !XFS_LAST_UNMOUNT_WAS_CLEAN(mp) &&
855 !mp->m_sb.sb_inprogress) {
856 error = xfs_initialize_perag_data(mp, sbp->sb_agcount);
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100857 if (error)
kbuild test robot6eee8972014-08-04 13:49:40 +1000858 goto out_log_dealloc;
David Chinner92821e22007-05-24 15:26:31 +1000859 }
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100860
David Chinner92821e22007-05-24 15:26:31 +1000861 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 * Get and sanity-check the root inode.
863 * Save the pointer to it in the mount structure.
864 */
Dave Chinner7b6259e2010-06-24 11:35:17 +1000865 error = xfs_iget(mp, NULL, sbp->sb_rootino, 0, XFS_ILOCK_EXCL, &rip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 if (error) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100867 xfs_warn(mp, "failed to read root inode");
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100868 goto out_log_dealloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 }
870
871 ASSERT(rip != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Al Viroabbede12011-07-26 02:31:30 -0400873 if (unlikely(!S_ISDIR(rip->i_d.di_mode))) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100874 xfs_warn(mp, "corrupted root inode %llu: not a directory",
Nathan Scottb6574522006-06-09 15:29:40 +1000875 (unsigned long long)rip->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 xfs_iunlock(rip, XFS_ILOCK_EXCL);
877 XFS_ERROR_REPORT("xfs_mountfs_int(2)", XFS_ERRLEVEL_LOW,
878 mp);
Dave Chinner24513372014-06-25 14:58:08 +1000879 error = -EFSCORRUPTED;
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100880 goto out_rele_rip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 }
882 mp->m_rootip = rip; /* save it */
883
884 xfs_iunlock(rip, XFS_ILOCK_EXCL);
885
886 /*
887 * Initialize realtime inode pointers in the mount structure
888 */
Eric Sandeen0771fb42007-10-12 11:03:40 +1000889 error = xfs_rtmount_inodes(mp);
890 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 /*
892 * Free up the root inode.
893 */
Dave Chinner0b932cc2011-03-07 10:08:35 +1100894 xfs_warn(mp, "failed to read RT inodes");
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100895 goto out_rele_rip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 }
897
898 /*
Christoph Hellwig7884bc82009-01-19 02:04:07 +0100899 * If this is a read-only mount defer the superblock updates until
900 * the next remount into writeable mode. Otherwise we would never
901 * perform the update e.g. for the root filesystem.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 */
Christoph Hellwig7884bc82009-01-19 02:04:07 +0100903 if (mp->m_update_flags && !(mp->m_flags & XFS_MOUNT_RDONLY)) {
904 error = xfs_mount_log_sb(mp, mp->m_update_flags);
David Chinnere5720ee2008-04-10 12:21:18 +1000905 if (error) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100906 xfs_warn(mp, "failed to write sb changes");
Christoph Hellwigb93b6e42009-02-04 09:33:58 +0100907 goto out_rtunmount;
David Chinnere5720ee2008-04-10 12:21:18 +1000908 }
909 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
911 /*
912 * Initialise the XFS quota management subsystem for this mount
913 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200914 if (XFS_IS_QUOTA_RUNNING(mp)) {
915 error = xfs_qm_newmount(mp, &quotamount, &quotaflags);
916 if (error)
917 goto out_rtunmount;
918 } else {
919 ASSERT(!XFS_IS_QUOTA_ON(mp));
920
921 /*
922 * If a file system had quotas running earlier, but decided to
923 * mount without -o uquota/pquota/gquota options, revoke the
924 * quotachecked license.
925 */
926 if (mp->m_sb.sb_qflags & XFS_ALL_QUOTA_ACCT) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100927 xfs_notice(mp, "resetting quota flags");
Christoph Hellwig7d095252009-06-08 15:33:32 +0200928 error = xfs_mount_reset_sbqflags(mp);
929 if (error)
Brian Fostera70a4fa2014-07-15 07:41:25 +1000930 goto out_rtunmount;
Christoph Hellwig7d095252009-06-08 15:33:32 +0200931 }
932 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
934 /*
935 * Finish recovering the file system. This part needed to be
936 * delayed until after the root and real-time bitmap inodes
937 * were consistently read in.
938 */
Christoph Hellwig42490232008-08-13 16:49:32 +1000939 error = xfs_log_mount_finish(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 if (error) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100941 xfs_warn(mp, "log mount finish failed");
Christoph Hellwigb93b6e42009-02-04 09:33:58 +0100942 goto out_rtunmount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 }
944
945 /*
946 * Complete the quota initialisation, post-log-replay component.
947 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200948 if (quotamount) {
949 ASSERT(mp->m_qflags == 0);
950 mp->m_qflags = quotaflags;
951
952 xfs_qm_mount_quotas(mp);
953 }
954
David Chinner84e1e992007-06-18 16:50:27 +1000955 /*
956 * Now we are mounted, reserve a small amount of unused space for
957 * privileged transactions. This is needed so that transaction
958 * space required for critical operations can dip into this pool
959 * when at ENOSPC. This is needed for operations like create with
960 * attr, unwritten extent conversion at ENOSPC, etc. Data allocations
961 * are not allowed to use this reserved space.
Dave Chinner8babd8a2010-03-04 01:46:25 +0000962 *
963 * This may drive us straight to ENOSPC on mount, but that implies
964 * we were already there on the last unmount. Warn if this occurs.
David Chinner84e1e992007-06-18 16:50:27 +1000965 */
Eric Sandeend5db0f92010-02-05 22:59:53 +0000966 if (!(mp->m_flags & XFS_MOUNT_RDONLY)) {
967 resblks = xfs_default_resblks(mp);
968 error = xfs_reserve_blocks(mp, &resblks, NULL);
969 if (error)
Dave Chinner0b932cc2011-03-07 10:08:35 +1100970 xfs_warn(mp,
971 "Unable to allocate reserve blocks. Continuing without reserve pool.");
Eric Sandeend5db0f92010-02-05 22:59:53 +0000972 }
David Chinner84e1e992007-06-18 16:50:27 +1000973
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 return 0;
975
Christoph Hellwigb93b6e42009-02-04 09:33:58 +0100976 out_rtunmount:
977 xfs_rtunmount_inodes(mp);
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100978 out_rele_rip:
Christoph Hellwig43355092008-03-27 18:01:08 +1100979 IRELE(rip);
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100980 out_log_dealloc:
Christoph Hellwig21b699c2009-03-16 08:19:29 +0100981 xfs_log_unmount(mp);
Dave Chinnerd4f35122012-04-23 15:59:06 +1000982 out_fail_wait:
983 if (mp->m_logdev_targp && mp->m_logdev_targp != mp->m_ddev_targp)
984 xfs_wait_buftarg(mp->m_logdev_targp);
985 xfs_wait_buftarg(mp->m_ddev_targp);
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100986 out_free_perag:
Christoph Hellwigff4f0382008-08-13 16:50:47 +1000987 xfs_free_perag(mp);
Dave Chinner0650b552014-06-06 15:01:58 +1000988 out_free_dir:
989 xfs_da_unmount(mp);
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100990 out_remove_uuid:
Christoph Hellwig27174202009-03-30 10:21:31 +0200991 xfs_uuid_unmount(mp);
Brian Fostera31b1d32014-07-15 08:07:01 +1000992 out_remove_sysfs:
993 xfs_sysfs_del(&mp->m_kobj);
Christoph Hellwigf9057e32009-02-04 09:31:52 +0100994 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 return error;
996}
997
998/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 * This flushes out the inodes,dquots and the superblock, unmounts the
1000 * log and makes sure that incore structures are freed.
1001 */
Christoph Hellwig41b5c2e2008-08-13 16:49:57 +10001002void
1003xfs_unmountfs(
1004 struct xfs_mount *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005{
Christoph Hellwig41b5c2e2008-08-13 16:49:57 +10001006 __uint64_t resblks;
1007 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
Brian Foster579b62f2012-11-06 09:50:47 -05001009 cancel_delayed_work_sync(&mp->m_eofblocks_work);
1010
Christoph Hellwig7d095252009-06-08 15:33:32 +02001011 xfs_qm_unmount_quotas(mp);
Christoph Hellwigb93b6e42009-02-04 09:33:58 +01001012 xfs_rtunmount_inodes(mp);
Christoph Hellwig77508ec2008-08-13 16:49:04 +10001013 IRELE(mp->m_rootip);
1014
David Chinner641c56f2007-06-18 16:50:17 +10001015 /*
1016 * We can potentially deadlock here if we have an inode cluster
Malcolm Parsons9da096f2009-03-29 09:55:42 +02001017 * that has been freed has its buffer still pinned in memory because
David Chinner641c56f2007-06-18 16:50:17 +10001018 * the transaction is still sitting in a iclog. The stale inodes
1019 * on that buffer will have their flush locks held until the
1020 * transaction hits the disk and the callbacks run. the inode
1021 * flush takes the flush lock unconditionally and with nothing to
1022 * push out the iclog we will never get that unlocked. hence we
1023 * need to force the log first.
1024 */
Christoph Hellwiga14a3482010-01-19 09:56:46 +00001025 xfs_log_force(mp, XFS_LOG_SYNC);
Dave Chinnerc8543632010-02-06 12:39:36 +11001026
1027 /*
Christoph Hellwig211e4d42012-04-23 15:58:34 +10001028 * Flush all pending changes from the AIL.
Dave Chinnerc8543632010-02-06 12:39:36 +11001029 */
Christoph Hellwig211e4d42012-04-23 15:58:34 +10001030 xfs_ail_push_all_sync(mp->m_ail);
1031
1032 /*
1033 * And reclaim all inodes. At this point there should be no dirty
Dave Chinner7e185302012-10-08 21:56:00 +11001034 * inodes and none should be pinned or locked, but use synchronous
1035 * reclaim just to be sure. We can stop background inode reclaim
1036 * here as well if it is still running.
Christoph Hellwig211e4d42012-04-23 15:58:34 +10001037 */
Dave Chinner7e185302012-10-08 21:56:00 +11001038 cancel_delayed_work_sync(&mp->m_reclaim_work);
Dave Chinnerc8543632010-02-06 12:39:36 +11001039 xfs_reclaim_inodes(mp, SYNC_WAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
Christoph Hellwig7d095252009-06-08 15:33:32 +02001041 xfs_qm_unmount(mp);
Lachlan McIlroya357a122008-10-30 16:53:25 +11001042
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 /*
David Chinner84e1e992007-06-18 16:50:27 +10001044 * Unreserve any blocks we have so that when we unmount we don't account
1045 * the reserved free space as used. This is really only necessary for
1046 * lazy superblock counting because it trusts the incore superblock
Malcolm Parsons9da096f2009-03-29 09:55:42 +02001047 * counters to be absolutely correct on clean unmount.
David Chinner84e1e992007-06-18 16:50:27 +10001048 *
1049 * We don't bother correcting this elsewhere for lazy superblock
1050 * counting because on mount of an unclean filesystem we reconstruct the
1051 * correct counter value and this is irrelevant.
1052 *
1053 * For non-lazy counter filesystems, this doesn't matter at all because
1054 * we only every apply deltas to the superblock and hence the incore
1055 * value does not matter....
1056 */
1057 resblks = 0;
David Chinner714082b2008-04-10 12:20:03 +10001058 error = xfs_reserve_blocks(mp, &resblks, NULL);
1059 if (error)
Dave Chinner0b932cc2011-03-07 10:08:35 +11001060 xfs_warn(mp, "Unable to free reserved block pool. "
David Chinner714082b2008-04-10 12:20:03 +10001061 "Freespace may not be correct on next mount.");
1062
Chandra Seetharamanadab0f62011-06-29 22:10:14 +00001063 error = xfs_log_sbcount(mp);
David Chinnere5720ee2008-04-10 12:21:18 +10001064 if (error)
Dave Chinner0b932cc2011-03-07 10:08:35 +11001065 xfs_warn(mp, "Unable to update superblock counters. "
David Chinnere5720ee2008-04-10 12:21:18 +10001066 "Freespace may not be correct on next mount.");
Christoph Hellwig87c7bec2011-09-14 14:08:26 +00001067
Christoph Hellwig21b699c2009-03-16 08:19:29 +01001068 xfs_log_unmount(mp);
Dave Chinner0650b552014-06-06 15:01:58 +10001069 xfs_da_unmount(mp);
Christoph Hellwig27174202009-03-30 10:21:31 +02001070 xfs_uuid_unmount(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
Christoph Hellwig1550d0b2008-08-13 16:17:37 +10001072#if defined(DEBUG)
Christoph Hellwig0ce4cfd2007-08-30 17:20:53 +10001073 xfs_errortag_clearall(mp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074#endif
Christoph Hellwigff4f0382008-08-13 16:50:47 +10001075 xfs_free_perag(mp);
Brian Fostera31b1d32014-07-15 08:07:01 +10001076
1077 xfs_sysfs_del(&mp->m_kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078}
1079
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080int
David Chinner92821e22007-05-24 15:26:31 +10001081xfs_fs_writable(xfs_mount_t *mp)
1082{
Jan Karad9457dc2012-06-12 16:20:39 +02001083 return !(mp->m_super->s_writers.frozen || XFS_FORCED_SHUTDOWN(mp) ||
Christoph Hellwigbd186aa2007-08-30 17:21:12 +10001084 (mp->m_flags & XFS_MOUNT_RDONLY));
David Chinner92821e22007-05-24 15:26:31 +10001085}
1086
1087/*
Alex Elderb2ce3972011-07-11 09:51:44 -05001088 * xfs_log_sbcount
1089 *
Chandra Seetharamanadab0f62011-06-29 22:10:14 +00001090 * Sync the superblock counters to disk.
Alex Elderb2ce3972011-07-11 09:51:44 -05001091 *
1092 * Note this code can be called during the process of freezing, so
Chandra Seetharamanadab0f62011-06-29 22:10:14 +00001093 * we may need to use the transaction allocator which does not
Alex Elderb2ce3972011-07-11 09:51:44 -05001094 * block when the transaction subsystem is in its frozen state.
David Chinner92821e22007-05-24 15:26:31 +10001095 */
1096int
Chandra Seetharamanadab0f62011-06-29 22:10:14 +00001097xfs_log_sbcount(xfs_mount_t *mp)
David Chinner92821e22007-05-24 15:26:31 +10001098{
1099 xfs_trans_t *tp;
1100 int error;
1101
1102 if (!xfs_fs_writable(mp))
1103 return 0;
1104
Christoph Hellwigd4d90b52008-04-22 17:34:37 +10001105 xfs_icsb_sync_counters(mp, 0);
David Chinner92821e22007-05-24 15:26:31 +10001106
1107 /*
1108 * we don't need to do this if we are updating the superblock
1109 * counters on every modification.
1110 */
1111 if (!xfs_sb_version_haslazysbcount(&mp->m_sb))
1112 return 0;
1113
Alex Elderb2ce3972011-07-11 09:51:44 -05001114 tp = _xfs_trans_alloc(mp, XFS_TRANS_SB_COUNT, KM_SLEEP);
Jie Liu3d3c8b52013-08-12 20:49:59 +10001115 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_sb, 0, 0);
David Chinner92821e22007-05-24 15:26:31 +10001116 if (error) {
1117 xfs_trans_cancel(tp, 0);
1118 return error;
1119 }
1120
1121 xfs_mod_sb(tp, XFS_SB_IFREE | XFS_SB_ICOUNT | XFS_SB_FDBLOCKS);
Chandra Seetharamanadab0f62011-06-29 22:10:14 +00001122 xfs_trans_set_sync(tp);
David Chinnere5720ee2008-04-10 12:21:18 +10001123 error = xfs_trans_commit(tp, 0);
1124 return error;
David Chinner92821e22007-05-24 15:26:31 +10001125}
1126
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127/*
Zhi Yong Wu99e738b72013-08-07 10:11:01 +00001128 * xfs_mod_incore_sb_unlocked() is a utility routine commonly used to apply
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 * a delta to a specified field in the in-core superblock. Simply
1130 * switch on the field indicated and apply the delta to that field.
1131 * Fields are not allowed to dip below zero, so if the delta would
1132 * do this do not apply it and return EINVAL.
1133 *
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001134 * The m_sb_lock must be held when this routine is called.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 */
Eric Sandeend96f8f82009-07-02 00:09:33 -05001136STATIC int
David Chinner20f4ebf2007-02-10 18:36:10 +11001137xfs_mod_incore_sb_unlocked(
1138 xfs_mount_t *mp,
1139 xfs_sb_field_t field,
1140 int64_t delta,
1141 int rsvd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142{
1143 int scounter; /* short counter for 32 bit fields */
1144 long long lcounter; /* long counter for 64 bit fields */
1145 long long res_used, rem;
1146
1147 /*
1148 * With the in-core superblock spin lock held, switch
1149 * on the indicated field. Apply the delta to the
1150 * proper field. If the fields value would dip below
1151 * 0, then do not apply the delta and return EINVAL.
1152 */
1153 switch (field) {
1154 case XFS_SBS_ICOUNT:
1155 lcounter = (long long)mp->m_sb.sb_icount;
1156 lcounter += delta;
1157 if (lcounter < 0) {
1158 ASSERT(0);
Dave Chinner24513372014-06-25 14:58:08 +10001159 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 }
1161 mp->m_sb.sb_icount = lcounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001162 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 case XFS_SBS_IFREE:
1164 lcounter = (long long)mp->m_sb.sb_ifree;
1165 lcounter += delta;
1166 if (lcounter < 0) {
1167 ASSERT(0);
Dave Chinner24513372014-06-25 14:58:08 +10001168 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 }
1170 mp->m_sb.sb_ifree = lcounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001171 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 case XFS_SBS_FDBLOCKS:
David Chinner4be536d2006-09-07 14:26:50 +10001173 lcounter = (long long)
1174 mp->m_sb.sb_fdblocks - XFS_ALLOC_SET_ASIDE(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 res_used = (long long)(mp->m_resblks - mp->m_resblks_avail);
1176
1177 if (delta > 0) { /* Putting blocks back */
1178 if (res_used > delta) {
1179 mp->m_resblks_avail += delta;
1180 } else {
1181 rem = delta - res_used;
1182 mp->m_resblks_avail = mp->m_resblks;
1183 lcounter += rem;
1184 }
1185 } else { /* Taking blocks away */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 lcounter += delta;
Dave Chinner8babd8a2010-03-04 01:46:25 +00001187 if (lcounter >= 0) {
1188 mp->m_sb.sb_fdblocks = lcounter +
1189 XFS_ALLOC_SET_ASIDE(mp);
1190 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 }
Dave Chinner8babd8a2010-03-04 01:46:25 +00001192
1193 /*
1194 * We are out of blocks, use any available reserved
1195 * blocks if were allowed to.
1196 */
1197 if (!rsvd)
Dave Chinner24513372014-06-25 14:58:08 +10001198 return -ENOSPC;
Dave Chinner8babd8a2010-03-04 01:46:25 +00001199
1200 lcounter = (long long)mp->m_resblks_avail + delta;
1201 if (lcounter >= 0) {
1202 mp->m_resblks_avail = lcounter;
1203 return 0;
1204 }
1205 printk_once(KERN_WARNING
1206 "Filesystem \"%s\": reserve blocks depleted! "
1207 "Consider increasing reserve pool size.",
1208 mp->m_fsname);
Dave Chinner24513372014-06-25 14:58:08 +10001209 return -ENOSPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 }
1211
David Chinner4be536d2006-09-07 14:26:50 +10001212 mp->m_sb.sb_fdblocks = lcounter + XFS_ALLOC_SET_ASIDE(mp);
Jesper Juhl014c2542006-01-15 02:37:08 +01001213 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 case XFS_SBS_FREXTENTS:
1215 lcounter = (long long)mp->m_sb.sb_frextents;
1216 lcounter += delta;
1217 if (lcounter < 0) {
Dave Chinner24513372014-06-25 14:58:08 +10001218 return -ENOSPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 }
1220 mp->m_sb.sb_frextents = lcounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001221 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 case XFS_SBS_DBLOCKS:
1223 lcounter = (long long)mp->m_sb.sb_dblocks;
1224 lcounter += delta;
1225 if (lcounter < 0) {
1226 ASSERT(0);
Dave Chinner24513372014-06-25 14:58:08 +10001227 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 }
1229 mp->m_sb.sb_dblocks = lcounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001230 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 case XFS_SBS_AGCOUNT:
1232 scounter = mp->m_sb.sb_agcount;
1233 scounter += delta;
1234 if (scounter < 0) {
1235 ASSERT(0);
Dave Chinner24513372014-06-25 14:58:08 +10001236 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 }
1238 mp->m_sb.sb_agcount = scounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001239 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 case XFS_SBS_IMAX_PCT:
1241 scounter = mp->m_sb.sb_imax_pct;
1242 scounter += delta;
1243 if (scounter < 0) {
1244 ASSERT(0);
Dave Chinner24513372014-06-25 14:58:08 +10001245 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 }
1247 mp->m_sb.sb_imax_pct = scounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001248 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 case XFS_SBS_REXTSIZE:
1250 scounter = mp->m_sb.sb_rextsize;
1251 scounter += delta;
1252 if (scounter < 0) {
1253 ASSERT(0);
Dave Chinner24513372014-06-25 14:58:08 +10001254 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 }
1256 mp->m_sb.sb_rextsize = scounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001257 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 case XFS_SBS_RBMBLOCKS:
1259 scounter = mp->m_sb.sb_rbmblocks;
1260 scounter += delta;
1261 if (scounter < 0) {
1262 ASSERT(0);
Dave Chinner24513372014-06-25 14:58:08 +10001263 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 }
1265 mp->m_sb.sb_rbmblocks = scounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001266 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 case XFS_SBS_RBLOCKS:
1268 lcounter = (long long)mp->m_sb.sb_rblocks;
1269 lcounter += delta;
1270 if (lcounter < 0) {
1271 ASSERT(0);
Dave Chinner24513372014-06-25 14:58:08 +10001272 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 }
1274 mp->m_sb.sb_rblocks = lcounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001275 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 case XFS_SBS_REXTENTS:
1277 lcounter = (long long)mp->m_sb.sb_rextents;
1278 lcounter += delta;
1279 if (lcounter < 0) {
1280 ASSERT(0);
Dave Chinner24513372014-06-25 14:58:08 +10001281 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 }
1283 mp->m_sb.sb_rextents = lcounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001284 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 case XFS_SBS_REXTSLOG:
1286 scounter = mp->m_sb.sb_rextslog;
1287 scounter += delta;
1288 if (scounter < 0) {
1289 ASSERT(0);
Dave Chinner24513372014-06-25 14:58:08 +10001290 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 }
1292 mp->m_sb.sb_rextslog = scounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001293 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 default:
1295 ASSERT(0);
Dave Chinner24513372014-06-25 14:58:08 +10001296 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 }
1298}
1299
1300/*
1301 * xfs_mod_incore_sb() is used to change a field in the in-core
1302 * superblock structure by the specified delta. This modification
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001303 * is protected by the m_sb_lock. Just use the xfs_mod_incore_sb_unlocked()
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 * routine to do the work.
1305 */
1306int
David Chinner20f4ebf2007-02-10 18:36:10 +11001307xfs_mod_incore_sb(
Christoph Hellwig96540c72010-09-30 02:25:55 +00001308 struct xfs_mount *mp,
1309 xfs_sb_field_t field,
1310 int64_t delta,
1311 int rsvd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312{
Christoph Hellwig96540c72010-09-30 02:25:55 +00001313 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
David Chinner8d280b92006-03-14 13:13:09 +11001315#ifdef HAVE_PERCPU_SB
Christoph Hellwig96540c72010-09-30 02:25:55 +00001316 ASSERT(field < XFS_SBS_ICOUNT || field > XFS_SBS_FDBLOCKS);
David Chinner8d280b92006-03-14 13:13:09 +11001317#endif
Christoph Hellwig96540c72010-09-30 02:25:55 +00001318 spin_lock(&mp->m_sb_lock);
1319 status = xfs_mod_incore_sb_unlocked(mp, field, delta, rsvd);
1320 spin_unlock(&mp->m_sb_lock);
David Chinner8d280b92006-03-14 13:13:09 +11001321
Jesper Juhl014c2542006-01-15 02:37:08 +01001322 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323}
1324
1325/*
Christoph Hellwig1b040712010-09-30 02:25:56 +00001326 * Change more than one field in the in-core superblock structure at a time.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 *
Christoph Hellwig1b040712010-09-30 02:25:56 +00001328 * The fields and changes to those fields are specified in the array of
1329 * xfs_mod_sb structures passed in. Either all of the specified deltas
1330 * will be applied or none of them will. If any modified field dips below 0,
1331 * then all modifications will be backed out and EINVAL will be returned.
1332 *
1333 * Note that this function may not be used for the superblock values that
1334 * are tracked with the in-memory per-cpu counters - a direct call to
1335 * xfs_icsb_modify_counters is required for these.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 */
1337int
Christoph Hellwig1b040712010-09-30 02:25:56 +00001338xfs_mod_incore_sb_batch(
1339 struct xfs_mount *mp,
1340 xfs_mod_sb_t *msb,
1341 uint nmsb,
1342 int rsvd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343{
David Sterba45c51b92011-04-13 22:03:28 +00001344 xfs_mod_sb_t *msbp;
Christoph Hellwig1b040712010-09-30 02:25:56 +00001345 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
1347 /*
Christoph Hellwig1b040712010-09-30 02:25:56 +00001348 * Loop through the array of mod structures and apply each individually.
1349 * If any fail, then back out all those which have already been applied.
1350 * Do all of this within the scope of the m_sb_lock so that all of the
1351 * changes will be atomic.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 */
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001353 spin_lock(&mp->m_sb_lock);
David Sterba45c51b92011-04-13 22:03:28 +00001354 for (msbp = msb; msbp < (msb + nmsb); msbp++) {
Christoph Hellwig1b040712010-09-30 02:25:56 +00001355 ASSERT(msbp->msb_field < XFS_SBS_ICOUNT ||
1356 msbp->msb_field > XFS_SBS_FDBLOCKS);
David Chinner8d280b92006-03-14 13:13:09 +11001357
Christoph Hellwig1b040712010-09-30 02:25:56 +00001358 error = xfs_mod_incore_sb_unlocked(mp, msbp->msb_field,
1359 msbp->msb_delta, rsvd);
1360 if (error)
1361 goto unwind;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 }
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001363 spin_unlock(&mp->m_sb_lock);
Christoph Hellwig1b040712010-09-30 02:25:56 +00001364 return 0;
1365
1366unwind:
1367 while (--msbp >= msb) {
1368 error = xfs_mod_incore_sb_unlocked(mp, msbp->msb_field,
1369 -msbp->msb_delta, rsvd);
1370 ASSERT(error == 0);
1371 }
1372 spin_unlock(&mp->m_sb_lock);
1373 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374}
1375
1376/*
1377 * xfs_getsb() is called to obtain the buffer for the superblock.
1378 * The buffer is returned locked and read in from disk.
1379 * The buffer should be released with a call to xfs_brelse().
1380 *
1381 * If the flags parameter is BUF_TRYLOCK, then we'll only return
1382 * the superblock buffer if it can be locked without sleeping.
1383 * If it can't then we'll return NULL.
1384 */
Christoph Hellwig0c842ad2011-07-08 14:36:19 +02001385struct xfs_buf *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386xfs_getsb(
Christoph Hellwig0c842ad2011-07-08 14:36:19 +02001387 struct xfs_mount *mp,
1388 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389{
Christoph Hellwig0c842ad2011-07-08 14:36:19 +02001390 struct xfs_buf *bp = mp->m_sb_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
Christoph Hellwig0c842ad2011-07-08 14:36:19 +02001392 if (!xfs_buf_trylock(bp)) {
1393 if (flags & XBF_TRYLOCK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 return NULL;
Christoph Hellwig0c842ad2011-07-08 14:36:19 +02001395 xfs_buf_lock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 }
Christoph Hellwig0c842ad2011-07-08 14:36:19 +02001397
Chandra Seetharaman72790aa2011-07-22 23:40:04 +00001398 xfs_buf_hold(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 ASSERT(XFS_BUF_ISDONE(bp));
Jesper Juhl014c2542006-01-15 02:37:08 +01001400 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401}
1402
1403/*
1404 * Used to free the superblock along various error paths.
1405 */
1406void
1407xfs_freesb(
Dave Chinner26af6552010-09-22 10:47:20 +10001408 struct xfs_mount *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409{
Dave Chinner26af6552010-09-22 10:47:20 +10001410 struct xfs_buf *bp = mp->m_sb_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
Dave Chinner26af6552010-09-22 10:47:20 +10001412 xfs_buf_lock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 mp->m_sb_bp = NULL;
Dave Chinner26af6552010-09-22 10:47:20 +10001414 xfs_buf_relse(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415}
1416
1417/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 * Used to log changes to the superblock unit and width fields which could
Eric Sandeene6957ea2008-04-10 12:19:34 +10001419 * be altered by the mount options, as well as any potential sb_features2
1420 * fixup. Only the first superblock is updated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 */
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001422int
David Chinneree1c0902008-03-06 13:45:50 +11001423xfs_mount_log_sb(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 xfs_mount_t *mp,
1425 __int64_t fields)
1426{
1427 xfs_trans_t *tp;
David Chinnere5720ee2008-04-10 12:21:18 +10001428 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
David Chinneree1c0902008-03-06 13:45:50 +11001430 ASSERT(fields & (XFS_SB_UNIT | XFS_SB_WIDTH | XFS_SB_UUID |
David Chinner4b166de2008-05-20 11:30:27 +10001431 XFS_SB_FEATURES2 | XFS_SB_BAD_FEATURES2 |
1432 XFS_SB_VERSIONNUM));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433
1434 tp = xfs_trans_alloc(mp, XFS_TRANS_SB_UNIT);
Jie Liu3d3c8b52013-08-12 20:49:59 +10001435 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_sb, 0, 0);
David Chinnere5720ee2008-04-10 12:21:18 +10001436 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 xfs_trans_cancel(tp, 0);
David Chinnere5720ee2008-04-10 12:21:18 +10001438 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 }
1440 xfs_mod_sb(tp, fields);
David Chinnere5720ee2008-04-10 12:21:18 +10001441 error = xfs_trans_commit(tp, 0);
1442 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443}
David Chinner8d280b92006-03-14 13:13:09 +11001444
Christoph Hellwigdda35b82010-02-15 09:44:46 +00001445/*
1446 * If the underlying (data/log/rt) device is readonly, there are some
1447 * operations that cannot proceed.
1448 */
1449int
1450xfs_dev_is_read_only(
1451 struct xfs_mount *mp,
1452 char *message)
1453{
1454 if (xfs_readonly_buftarg(mp->m_ddev_targp) ||
1455 xfs_readonly_buftarg(mp->m_logdev_targp) ||
1456 (mp->m_rtdev_targp && xfs_readonly_buftarg(mp->m_rtdev_targp))) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001457 xfs_notice(mp, "%s required on read-only device.", message);
1458 xfs_notice(mp, "write access unavailable, cannot proceed.");
Dave Chinner24513372014-06-25 14:58:08 +10001459 return -EROFS;
Christoph Hellwigdda35b82010-02-15 09:44:46 +00001460 }
1461 return 0;
1462}
David Chinner8d280b92006-03-14 13:13:09 +11001463
1464#ifdef HAVE_PERCPU_SB
1465/*
1466 * Per-cpu incore superblock counters
1467 *
1468 * Simple concept, difficult implementation
1469 *
1470 * Basically, replace the incore superblock counters with a distributed per cpu
1471 * counter for contended fields (e.g. free block count).
1472 *
1473 * Difficulties arise in that the incore sb is used for ENOSPC checking, and
1474 * hence needs to be accurately read when we are running low on space. Hence
1475 * there is a method to enable and disable the per-cpu counters based on how
1476 * much "stuff" is available in them.
1477 *
1478 * Basically, a counter is enabled if there is enough free resource to justify
1479 * running a per-cpu fast-path. If the per-cpu counter runs out (i.e. a local
1480 * ENOSPC), then we disable the counters to synchronise all callers and
1481 * re-distribute the available resources.
1482 *
1483 * If, once we redistributed the available resources, we still get a failure,
1484 * we disable the per-cpu counter and go through the slow path.
1485 *
1486 * The slow path is the current xfs_mod_incore_sb() function. This means that
Malcolm Parsons9da096f2009-03-29 09:55:42 +02001487 * when we disable a per-cpu counter, we need to drain its resources back to
David Chinner8d280b92006-03-14 13:13:09 +11001488 * the global superblock. We do this after disabling the counter to prevent
1489 * more threads from queueing up on the counter.
1490 *
1491 * Essentially, this means that we still need a lock in the fast path to enable
1492 * synchronisation between the global counters and the per-cpu counters. This
1493 * is not a problem because the lock will be local to a CPU almost all the time
1494 * and have little contention except when we get to ENOSPC conditions.
1495 *
1496 * Basically, this lock becomes a barrier that enables us to lock out the fast
1497 * path while we do things like enabling and disabling counters and
1498 * synchronising the counters.
1499 *
1500 * Locking rules:
1501 *
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001502 * 1. m_sb_lock before picking up per-cpu locks
David Chinner8d280b92006-03-14 13:13:09 +11001503 * 2. per-cpu locks always picked up via for_each_online_cpu() order
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001504 * 3. accurate counter sync requires m_sb_lock + per cpu locks
David Chinner8d280b92006-03-14 13:13:09 +11001505 * 4. modifying per-cpu counters requires holding per-cpu lock
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001506 * 5. modifying global counters requires holding m_sb_lock
1507 * 6. enabling or disabling a counter requires holding the m_sb_lock
David Chinner8d280b92006-03-14 13:13:09 +11001508 * and _none_ of the per-cpu locks.
1509 *
1510 * Disabled counters are only ever re-enabled by a balance operation
1511 * that results in more free resources per CPU than a given threshold.
1512 * To ensure counters don't remain disabled, they are rebalanced when
1513 * the global resource goes above a higher threshold (i.e. some hysteresis
1514 * is present to prevent thrashing).
David Chinner8d280b92006-03-14 13:13:09 +11001515 */
David Chinnere8234a62006-03-14 13:23:52 +11001516
Chandra Seetharaman5a67e4c2006-06-27 02:54:11 -07001517#ifdef CONFIG_HOTPLUG_CPU
David Chinnere8234a62006-03-14 13:23:52 +11001518/*
1519 * hot-plug CPU notifier support.
1520 *
Chandra Seetharaman5a67e4c2006-06-27 02:54:11 -07001521 * We need a notifier per filesystem as we need to be able to identify
1522 * the filesystem to balance the counters out. This is achieved by
1523 * having a notifier block embedded in the xfs_mount_t and doing pointer
1524 * magic to get the mount pointer from the notifier block address.
David Chinnere8234a62006-03-14 13:23:52 +11001525 */
1526STATIC int
1527xfs_icsb_cpu_notify(
1528 struct notifier_block *nfb,
1529 unsigned long action,
1530 void *hcpu)
1531{
1532 xfs_icsb_cnts_t *cntp;
1533 xfs_mount_t *mp;
David Chinnere8234a62006-03-14 13:23:52 +11001534
1535 mp = (xfs_mount_t *)container_of(nfb, xfs_mount_t, m_icsb_notifier);
1536 cntp = (xfs_icsb_cnts_t *)
1537 per_cpu_ptr(mp->m_sb_cnts, (unsigned long)hcpu);
1538 switch (action) {
1539 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001540 case CPU_UP_PREPARE_FROZEN:
David Chinnere8234a62006-03-14 13:23:52 +11001541 /* Easy Case - initialize the area and locks, and
1542 * then rebalance when online does everything else for us. */
David Chinner01e1b692006-03-14 13:29:16 +11001543 memset(cntp, 0, sizeof(xfs_icsb_cnts_t));
David Chinnere8234a62006-03-14 13:23:52 +11001544 break;
1545 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001546 case CPU_ONLINE_FROZEN:
David Chinner03135cf2007-02-10 18:35:15 +11001547 xfs_icsb_lock(mp);
Christoph Hellwig45af6c62008-04-22 17:34:44 +10001548 xfs_icsb_balance_counter(mp, XFS_SBS_ICOUNT, 0);
1549 xfs_icsb_balance_counter(mp, XFS_SBS_IFREE, 0);
1550 xfs_icsb_balance_counter(mp, XFS_SBS_FDBLOCKS, 0);
David Chinner03135cf2007-02-10 18:35:15 +11001551 xfs_icsb_unlock(mp);
David Chinnere8234a62006-03-14 13:23:52 +11001552 break;
1553 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001554 case CPU_DEAD_FROZEN:
David Chinnere8234a62006-03-14 13:23:52 +11001555 /* Disable all the counters, then fold the dead cpu's
1556 * count into the total on the global superblock and
1557 * re-enable the counters. */
David Chinner03135cf2007-02-10 18:35:15 +11001558 xfs_icsb_lock(mp);
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001559 spin_lock(&mp->m_sb_lock);
David Chinnere8234a62006-03-14 13:23:52 +11001560 xfs_icsb_disable_counter(mp, XFS_SBS_ICOUNT);
1561 xfs_icsb_disable_counter(mp, XFS_SBS_IFREE);
1562 xfs_icsb_disable_counter(mp, XFS_SBS_FDBLOCKS);
1563
1564 mp->m_sb.sb_icount += cntp->icsb_icount;
1565 mp->m_sb.sb_ifree += cntp->icsb_ifree;
1566 mp->m_sb.sb_fdblocks += cntp->icsb_fdblocks;
1567
David Chinner01e1b692006-03-14 13:29:16 +11001568 memset(cntp, 0, sizeof(xfs_icsb_cnts_t));
David Chinnere8234a62006-03-14 13:23:52 +11001569
Christoph Hellwig45af6c62008-04-22 17:34:44 +10001570 xfs_icsb_balance_counter_locked(mp, XFS_SBS_ICOUNT, 0);
1571 xfs_icsb_balance_counter_locked(mp, XFS_SBS_IFREE, 0);
1572 xfs_icsb_balance_counter_locked(mp, XFS_SBS_FDBLOCKS, 0);
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001573 spin_unlock(&mp->m_sb_lock);
David Chinner03135cf2007-02-10 18:35:15 +11001574 xfs_icsb_unlock(mp);
David Chinnere8234a62006-03-14 13:23:52 +11001575 break;
1576 }
1577
1578 return NOTIFY_OK;
1579}
Chandra Seetharaman5a67e4c2006-06-27 02:54:11 -07001580#endif /* CONFIG_HOTPLUG_CPU */
David Chinnere8234a62006-03-14 13:23:52 +11001581
David Chinner8d280b92006-03-14 13:13:09 +11001582int
1583xfs_icsb_init_counters(
1584 xfs_mount_t *mp)
1585{
1586 xfs_icsb_cnts_t *cntp;
1587 int i;
1588
1589 mp->m_sb_cnts = alloc_percpu(xfs_icsb_cnts_t);
1590 if (mp->m_sb_cnts == NULL)
1591 return -ENOMEM;
1592
1593 for_each_online_cpu(i) {
1594 cntp = (xfs_icsb_cnts_t *)per_cpu_ptr(mp->m_sb_cnts, i);
David Chinner01e1b692006-03-14 13:29:16 +11001595 memset(cntp, 0, sizeof(xfs_icsb_cnts_t));
David Chinner8d280b92006-03-14 13:13:09 +11001596 }
David Chinner20b64282007-02-10 18:35:09 +11001597
1598 mutex_init(&mp->m_icsb_mutex);
1599
David Chinner8d280b92006-03-14 13:13:09 +11001600 /*
1601 * start with all counters disabled so that the
1602 * initial balance kicks us off correctly
1603 */
1604 mp->m_icsb_counters = -1;
Richard Weinberger46677e62013-08-19 22:56:44 +02001605
1606#ifdef CONFIG_HOTPLUG_CPU
1607 mp->m_icsb_notifier.notifier_call = xfs_icsb_cpu_notify;
1608 mp->m_icsb_notifier.priority = 0;
1609 register_hotcpu_notifier(&mp->m_icsb_notifier);
1610#endif /* CONFIG_HOTPLUG_CPU */
1611
David Chinner8d280b92006-03-14 13:13:09 +11001612 return 0;
1613}
1614
Lachlan McIlroy5478eea2007-02-10 18:36:29 +11001615void
1616xfs_icsb_reinit_counters(
1617 xfs_mount_t *mp)
1618{
1619 xfs_icsb_lock(mp);
1620 /*
1621 * start with all counters disabled so that the
1622 * initial balance kicks us off correctly
1623 */
1624 mp->m_icsb_counters = -1;
Christoph Hellwig45af6c62008-04-22 17:34:44 +10001625 xfs_icsb_balance_counter(mp, XFS_SBS_ICOUNT, 0);
1626 xfs_icsb_balance_counter(mp, XFS_SBS_IFREE, 0);
1627 xfs_icsb_balance_counter(mp, XFS_SBS_FDBLOCKS, 0);
Lachlan McIlroy5478eea2007-02-10 18:36:29 +11001628 xfs_icsb_unlock(mp);
1629}
1630
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001631void
David Chinner8d280b92006-03-14 13:13:09 +11001632xfs_icsb_destroy_counters(
1633 xfs_mount_t *mp)
1634{
David Chinnere8234a62006-03-14 13:23:52 +11001635 if (mp->m_sb_cnts) {
Chandra Seetharaman5a67e4c2006-06-27 02:54:11 -07001636 unregister_hotcpu_notifier(&mp->m_icsb_notifier);
David Chinner8d280b92006-03-14 13:13:09 +11001637 free_percpu(mp->m_sb_cnts);
David Chinnere8234a62006-03-14 13:23:52 +11001638 }
David Chinner03135cf2007-02-10 18:35:15 +11001639 mutex_destroy(&mp->m_icsb_mutex);
David Chinner8d280b92006-03-14 13:13:09 +11001640}
1641
Christoph Hellwigb8f82a42009-11-14 16:17:22 +00001642STATIC void
David Chinner01e1b692006-03-14 13:29:16 +11001643xfs_icsb_lock_cntr(
1644 xfs_icsb_cnts_t *icsbp)
1645{
1646 while (test_and_set_bit(XFS_ICSB_FLAG_LOCK, &icsbp->icsb_flags)) {
1647 ndelay(1000);
1648 }
1649}
1650
Christoph Hellwigb8f82a42009-11-14 16:17:22 +00001651STATIC void
David Chinner01e1b692006-03-14 13:29:16 +11001652xfs_icsb_unlock_cntr(
1653 xfs_icsb_cnts_t *icsbp)
1654{
1655 clear_bit(XFS_ICSB_FLAG_LOCK, &icsbp->icsb_flags);
1656}
1657
David Chinner8d280b92006-03-14 13:13:09 +11001658
Christoph Hellwigb8f82a42009-11-14 16:17:22 +00001659STATIC void
David Chinner8d280b92006-03-14 13:13:09 +11001660xfs_icsb_lock_all_counters(
1661 xfs_mount_t *mp)
1662{
1663 xfs_icsb_cnts_t *cntp;
1664 int i;
1665
1666 for_each_online_cpu(i) {
1667 cntp = (xfs_icsb_cnts_t *)per_cpu_ptr(mp->m_sb_cnts, i);
David Chinner01e1b692006-03-14 13:29:16 +11001668 xfs_icsb_lock_cntr(cntp);
David Chinner8d280b92006-03-14 13:13:09 +11001669 }
1670}
1671
Christoph Hellwigb8f82a42009-11-14 16:17:22 +00001672STATIC void
David Chinner8d280b92006-03-14 13:13:09 +11001673xfs_icsb_unlock_all_counters(
1674 xfs_mount_t *mp)
1675{
1676 xfs_icsb_cnts_t *cntp;
1677 int i;
1678
1679 for_each_online_cpu(i) {
1680 cntp = (xfs_icsb_cnts_t *)per_cpu_ptr(mp->m_sb_cnts, i);
David Chinner01e1b692006-03-14 13:29:16 +11001681 xfs_icsb_unlock_cntr(cntp);
David Chinner8d280b92006-03-14 13:13:09 +11001682 }
1683}
1684
1685STATIC void
1686xfs_icsb_count(
1687 xfs_mount_t *mp,
1688 xfs_icsb_cnts_t *cnt,
1689 int flags)
1690{
1691 xfs_icsb_cnts_t *cntp;
1692 int i;
1693
1694 memset(cnt, 0, sizeof(xfs_icsb_cnts_t));
1695
1696 if (!(flags & XFS_ICSB_LAZY_COUNT))
1697 xfs_icsb_lock_all_counters(mp);
1698
1699 for_each_online_cpu(i) {
1700 cntp = (xfs_icsb_cnts_t *)per_cpu_ptr(mp->m_sb_cnts, i);
1701 cnt->icsb_icount += cntp->icsb_icount;
1702 cnt->icsb_ifree += cntp->icsb_ifree;
1703 cnt->icsb_fdblocks += cntp->icsb_fdblocks;
1704 }
1705
1706 if (!(flags & XFS_ICSB_LAZY_COUNT))
1707 xfs_icsb_unlock_all_counters(mp);
1708}
1709
1710STATIC int
1711xfs_icsb_counter_disabled(
1712 xfs_mount_t *mp,
1713 xfs_sb_field_t field)
1714{
1715 ASSERT((field >= XFS_SBS_ICOUNT) && (field <= XFS_SBS_FDBLOCKS));
1716 return test_bit(field, &mp->m_icsb_counters);
1717}
1718
David Chinner36fbe6e2008-04-10 12:19:56 +10001719STATIC void
David Chinner8d280b92006-03-14 13:13:09 +11001720xfs_icsb_disable_counter(
1721 xfs_mount_t *mp,
1722 xfs_sb_field_t field)
1723{
1724 xfs_icsb_cnts_t cnt;
1725
1726 ASSERT((field >= XFS_SBS_ICOUNT) && (field <= XFS_SBS_FDBLOCKS));
1727
David Chinner20b64282007-02-10 18:35:09 +11001728 /*
1729 * If we are already disabled, then there is nothing to do
1730 * here. We check before locking all the counters to avoid
1731 * the expensive lock operation when being called in the
1732 * slow path and the counter is already disabled. This is
1733 * safe because the only time we set or clear this state is under
1734 * the m_icsb_mutex.
1735 */
1736 if (xfs_icsb_counter_disabled(mp, field))
David Chinner36fbe6e2008-04-10 12:19:56 +10001737 return;
David Chinner20b64282007-02-10 18:35:09 +11001738
David Chinner8d280b92006-03-14 13:13:09 +11001739 xfs_icsb_lock_all_counters(mp);
1740 if (!test_and_set_bit(field, &mp->m_icsb_counters)) {
1741 /* drain back to superblock */
1742
Christoph Hellwigce461932008-04-22 17:34:50 +10001743 xfs_icsb_count(mp, &cnt, XFS_ICSB_LAZY_COUNT);
David Chinner8d280b92006-03-14 13:13:09 +11001744 switch(field) {
1745 case XFS_SBS_ICOUNT:
1746 mp->m_sb.sb_icount = cnt.icsb_icount;
1747 break;
1748 case XFS_SBS_IFREE:
1749 mp->m_sb.sb_ifree = cnt.icsb_ifree;
1750 break;
1751 case XFS_SBS_FDBLOCKS:
1752 mp->m_sb.sb_fdblocks = cnt.icsb_fdblocks;
1753 break;
1754 default:
1755 BUG();
1756 }
1757 }
1758
1759 xfs_icsb_unlock_all_counters(mp);
David Chinner8d280b92006-03-14 13:13:09 +11001760}
1761
1762STATIC void
1763xfs_icsb_enable_counter(
1764 xfs_mount_t *mp,
1765 xfs_sb_field_t field,
1766 uint64_t count,
1767 uint64_t resid)
1768{
1769 xfs_icsb_cnts_t *cntp;
1770 int i;
1771
1772 ASSERT((field >= XFS_SBS_ICOUNT) && (field <= XFS_SBS_FDBLOCKS));
1773
1774 xfs_icsb_lock_all_counters(mp);
1775 for_each_online_cpu(i) {
1776 cntp = per_cpu_ptr(mp->m_sb_cnts, i);
1777 switch (field) {
1778 case XFS_SBS_ICOUNT:
1779 cntp->icsb_icount = count + resid;
1780 break;
1781 case XFS_SBS_IFREE:
1782 cntp->icsb_ifree = count + resid;
1783 break;
1784 case XFS_SBS_FDBLOCKS:
1785 cntp->icsb_fdblocks = count + resid;
1786 break;
1787 default:
1788 BUG();
1789 break;
1790 }
1791 resid = 0;
1792 }
1793 clear_bit(field, &mp->m_icsb_counters);
1794 xfs_icsb_unlock_all_counters(mp);
1795}
1796
David Chinnerdbcabad2007-02-10 18:36:17 +11001797void
Christoph Hellwigd4d90b52008-04-22 17:34:37 +10001798xfs_icsb_sync_counters_locked(
David Chinner8d280b92006-03-14 13:13:09 +11001799 xfs_mount_t *mp,
1800 int flags)
1801{
1802 xfs_icsb_cnts_t cnt;
David Chinner8d280b92006-03-14 13:13:09 +11001803
David Chinner8d280b92006-03-14 13:13:09 +11001804 xfs_icsb_count(mp, &cnt, flags);
1805
David Chinner8d280b92006-03-14 13:13:09 +11001806 if (!xfs_icsb_counter_disabled(mp, XFS_SBS_ICOUNT))
1807 mp->m_sb.sb_icount = cnt.icsb_icount;
1808 if (!xfs_icsb_counter_disabled(mp, XFS_SBS_IFREE))
1809 mp->m_sb.sb_ifree = cnt.icsb_ifree;
1810 if (!xfs_icsb_counter_disabled(mp, XFS_SBS_FDBLOCKS))
1811 mp->m_sb.sb_fdblocks = cnt.icsb_fdblocks;
David Chinner8d280b92006-03-14 13:13:09 +11001812}
1813
1814/*
1815 * Accurate update of per-cpu counters to incore superblock
1816 */
Christoph Hellwigd4d90b52008-04-22 17:34:37 +10001817void
David Chinner8d280b92006-03-14 13:13:09 +11001818xfs_icsb_sync_counters(
Christoph Hellwigd4d90b52008-04-22 17:34:37 +10001819 xfs_mount_t *mp,
1820 int flags)
David Chinner8d280b92006-03-14 13:13:09 +11001821{
Christoph Hellwigd4d90b52008-04-22 17:34:37 +10001822 spin_lock(&mp->m_sb_lock);
1823 xfs_icsb_sync_counters_locked(mp, flags);
1824 spin_unlock(&mp->m_sb_lock);
David Chinner8d280b92006-03-14 13:13:09 +11001825}
1826
1827/*
1828 * Balance and enable/disable counters as necessary.
1829 *
David Chinner20b64282007-02-10 18:35:09 +11001830 * Thresholds for re-enabling counters are somewhat magic. inode counts are
1831 * chosen to be the same number as single on disk allocation chunk per CPU, and
1832 * free blocks is something far enough zero that we aren't going thrash when we
1833 * get near ENOSPC. We also need to supply a minimum we require per cpu to
1834 * prevent looping endlessly when xfs_alloc_space asks for more than will
1835 * be distributed to a single CPU but each CPU has enough blocks to be
1836 * reenabled.
1837 *
1838 * Note that we can be called when counters are already disabled.
1839 * xfs_icsb_disable_counter() optimises the counter locking in this case to
1840 * prevent locking every per-cpu counter needlessly.
David Chinner8d280b92006-03-14 13:13:09 +11001841 */
David Chinner20b64282007-02-10 18:35:09 +11001842
1843#define XFS_ICSB_INO_CNTR_REENABLE (uint64_t)64
David Chinner4be536d2006-09-07 14:26:50 +10001844#define XFS_ICSB_FDBLK_CNTR_REENABLE(mp) \
David Chinner20b64282007-02-10 18:35:09 +11001845 (uint64_t)(512 + XFS_ALLOC_SET_ASIDE(mp))
David Chinner8d280b92006-03-14 13:13:09 +11001846STATIC void
Christoph Hellwig45af6c62008-04-22 17:34:44 +10001847xfs_icsb_balance_counter_locked(
David Chinner8d280b92006-03-14 13:13:09 +11001848 xfs_mount_t *mp,
1849 xfs_sb_field_t field,
David Chinner20b64282007-02-10 18:35:09 +11001850 int min_per_cpu)
David Chinner8d280b92006-03-14 13:13:09 +11001851{
Nathan Scott6fdf8cc2006-06-28 10:13:52 +10001852 uint64_t count, resid;
David Chinner8d280b92006-03-14 13:13:09 +11001853 int weight = num_online_cpus();
David Chinner20b64282007-02-10 18:35:09 +11001854 uint64_t min = (uint64_t)min_per_cpu;
David Chinner8d280b92006-03-14 13:13:09 +11001855
David Chinner8d280b92006-03-14 13:13:09 +11001856 /* disable counter and sync counter */
1857 xfs_icsb_disable_counter(mp, field);
1858
1859 /* update counters - first CPU gets residual*/
1860 switch (field) {
1861 case XFS_SBS_ICOUNT:
1862 count = mp->m_sb.sb_icount;
1863 resid = do_div(count, weight);
David Chinner20b64282007-02-10 18:35:09 +11001864 if (count < max(min, XFS_ICSB_INO_CNTR_REENABLE))
Christoph Hellwig45af6c62008-04-22 17:34:44 +10001865 return;
David Chinner8d280b92006-03-14 13:13:09 +11001866 break;
1867 case XFS_SBS_IFREE:
1868 count = mp->m_sb.sb_ifree;
1869 resid = do_div(count, weight);
David Chinner20b64282007-02-10 18:35:09 +11001870 if (count < max(min, XFS_ICSB_INO_CNTR_REENABLE))
Christoph Hellwig45af6c62008-04-22 17:34:44 +10001871 return;
David Chinner8d280b92006-03-14 13:13:09 +11001872 break;
1873 case XFS_SBS_FDBLOCKS:
1874 count = mp->m_sb.sb_fdblocks;
1875 resid = do_div(count, weight);
David Chinner20b64282007-02-10 18:35:09 +11001876 if (count < max(min, XFS_ICSB_FDBLK_CNTR_REENABLE(mp)))
Christoph Hellwig45af6c62008-04-22 17:34:44 +10001877 return;
David Chinner8d280b92006-03-14 13:13:09 +11001878 break;
1879 default:
1880 BUG();
Nathan Scott6fdf8cc2006-06-28 10:13:52 +10001881 count = resid = 0; /* quiet, gcc */
David Chinner8d280b92006-03-14 13:13:09 +11001882 break;
1883 }
1884
1885 xfs_icsb_enable_counter(mp, field, count, resid);
Christoph Hellwig45af6c62008-04-22 17:34:44 +10001886}
1887
1888STATIC void
1889xfs_icsb_balance_counter(
1890 xfs_mount_t *mp,
1891 xfs_sb_field_t fields,
1892 int min_per_cpu)
1893{
1894 spin_lock(&mp->m_sb_lock);
1895 xfs_icsb_balance_counter_locked(mp, fields, min_per_cpu);
1896 spin_unlock(&mp->m_sb_lock);
David Chinner8d280b92006-03-14 13:13:09 +11001897}
1898
Christoph Hellwig1b040712010-09-30 02:25:56 +00001899int
David Chinner20b64282007-02-10 18:35:09 +11001900xfs_icsb_modify_counters(
David Chinner8d280b92006-03-14 13:13:09 +11001901 xfs_mount_t *mp,
1902 xfs_sb_field_t field,
David Chinner20f4ebf2007-02-10 18:36:10 +11001903 int64_t delta,
David Chinner20b64282007-02-10 18:35:09 +11001904 int rsvd)
David Chinner8d280b92006-03-14 13:13:09 +11001905{
1906 xfs_icsb_cnts_t *icsbp;
1907 long long lcounter; /* long counter for 64 bit fields */
Christoph Lameter7a9e02d2009-10-03 19:48:23 +09001908 int ret = 0;
David Chinner8d280b92006-03-14 13:13:09 +11001909
David Chinner20b64282007-02-10 18:35:09 +11001910 might_sleep();
David Chinner8d280b92006-03-14 13:13:09 +11001911again:
Christoph Lameter7a9e02d2009-10-03 19:48:23 +09001912 preempt_disable();
1913 icsbp = this_cpu_ptr(mp->m_sb_cnts);
David Chinner20b64282007-02-10 18:35:09 +11001914
1915 /*
1916 * if the counter is disabled, go to slow path
1917 */
David Chinner8d280b92006-03-14 13:13:09 +11001918 if (unlikely(xfs_icsb_counter_disabled(mp, field)))
1919 goto slow_path;
David Chinner20b64282007-02-10 18:35:09 +11001920 xfs_icsb_lock_cntr(icsbp);
1921 if (unlikely(xfs_icsb_counter_disabled(mp, field))) {
1922 xfs_icsb_unlock_cntr(icsbp);
1923 goto slow_path;
1924 }
David Chinner8d280b92006-03-14 13:13:09 +11001925
1926 switch (field) {
1927 case XFS_SBS_ICOUNT:
1928 lcounter = icsbp->icsb_icount;
1929 lcounter += delta;
1930 if (unlikely(lcounter < 0))
David Chinner20b64282007-02-10 18:35:09 +11001931 goto balance_counter;
David Chinner8d280b92006-03-14 13:13:09 +11001932 icsbp->icsb_icount = lcounter;
1933 break;
1934
1935 case XFS_SBS_IFREE:
1936 lcounter = icsbp->icsb_ifree;
1937 lcounter += delta;
1938 if (unlikely(lcounter < 0))
David Chinner20b64282007-02-10 18:35:09 +11001939 goto balance_counter;
David Chinner8d280b92006-03-14 13:13:09 +11001940 icsbp->icsb_ifree = lcounter;
1941 break;
1942
1943 case XFS_SBS_FDBLOCKS:
1944 BUG_ON((mp->m_resblks - mp->m_resblks_avail) != 0);
1945
David Chinner4be536d2006-09-07 14:26:50 +10001946 lcounter = icsbp->icsb_fdblocks - XFS_ALLOC_SET_ASIDE(mp);
David Chinner8d280b92006-03-14 13:13:09 +11001947 lcounter += delta;
1948 if (unlikely(lcounter < 0))
David Chinner20b64282007-02-10 18:35:09 +11001949 goto balance_counter;
David Chinner4be536d2006-09-07 14:26:50 +10001950 icsbp->icsb_fdblocks = lcounter + XFS_ALLOC_SET_ASIDE(mp);
David Chinner8d280b92006-03-14 13:13:09 +11001951 break;
1952 default:
1953 BUG();
1954 break;
1955 }
David Chinner01e1b692006-03-14 13:29:16 +11001956 xfs_icsb_unlock_cntr(icsbp);
Christoph Lameter7a9e02d2009-10-03 19:48:23 +09001957 preempt_enable();
David Chinner8d280b92006-03-14 13:13:09 +11001958 return 0;
1959
David Chinner8d280b92006-03-14 13:13:09 +11001960slow_path:
Christoph Lameter7a9e02d2009-10-03 19:48:23 +09001961 preempt_enable();
David Chinner20b64282007-02-10 18:35:09 +11001962
1963 /*
1964 * serialise with a mutex so we don't burn lots of cpu on
1965 * the superblock lock. We still need to hold the superblock
1966 * lock, however, when we modify the global structures.
1967 */
David Chinner03135cf2007-02-10 18:35:15 +11001968 xfs_icsb_lock(mp);
David Chinner20b64282007-02-10 18:35:09 +11001969
1970 /*
1971 * Now running atomically.
1972 *
1973 * If the counter is enabled, someone has beaten us to rebalancing.
1974 * Drop the lock and try again in the fast path....
1975 */
1976 if (!(xfs_icsb_counter_disabled(mp, field))) {
David Chinner03135cf2007-02-10 18:35:15 +11001977 xfs_icsb_unlock(mp);
David Chinner20b64282007-02-10 18:35:09 +11001978 goto again;
1979 }
1980
1981 /*
1982 * The counter is currently disabled. Because we are
1983 * running atomically here, we know a rebalance cannot
1984 * be in progress. Hence we can go straight to operating
1985 * on the global superblock. We do not call xfs_mod_incore_sb()
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001986 * here even though we need to get the m_sb_lock. Doing so
David Chinner20b64282007-02-10 18:35:09 +11001987 * will cause us to re-enter this function and deadlock.
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001988 * Hence we get the m_sb_lock ourselves and then call
David Chinner20b64282007-02-10 18:35:09 +11001989 * xfs_mod_incore_sb_unlocked() as the unlocked path operates
1990 * directly on the global counters.
1991 */
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001992 spin_lock(&mp->m_sb_lock);
David Chinner20b64282007-02-10 18:35:09 +11001993 ret = xfs_mod_incore_sb_unlocked(mp, field, delta, rsvd);
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001994 spin_unlock(&mp->m_sb_lock);
David Chinner20b64282007-02-10 18:35:09 +11001995
1996 /*
1997 * Now that we've modified the global superblock, we
1998 * may be able to re-enable the distributed counters
1999 * (e.g. lots of space just got freed). After that
2000 * we are done.
2001 */
Dave Chinner24513372014-06-25 14:58:08 +10002002 if (ret != -ENOSPC)
Christoph Hellwig45af6c62008-04-22 17:34:44 +10002003 xfs_icsb_balance_counter(mp, field, 0);
David Chinner03135cf2007-02-10 18:35:15 +11002004 xfs_icsb_unlock(mp);
David Chinner20b64282007-02-10 18:35:09 +11002005 return ret;
2006
2007balance_counter:
David Chinner01e1b692006-03-14 13:29:16 +11002008 xfs_icsb_unlock_cntr(icsbp);
Christoph Lameter7a9e02d2009-10-03 19:48:23 +09002009 preempt_enable();
David Chinner8d280b92006-03-14 13:13:09 +11002010
David Chinner20b64282007-02-10 18:35:09 +11002011 /*
2012 * We may have multiple threads here if multiple per-cpu
2013 * counters run dry at the same time. This will mean we can
2014 * do more balances than strictly necessary but it is not
2015 * the common slowpath case.
2016 */
David Chinner03135cf2007-02-10 18:35:15 +11002017 xfs_icsb_lock(mp);
David Chinner8d280b92006-03-14 13:13:09 +11002018
David Chinner20b64282007-02-10 18:35:09 +11002019 /*
2020 * running atomically.
2021 *
2022 * This will leave the counter in the correct state for future
2023 * accesses. After the rebalance, we simply try again and our retry
2024 * will either succeed through the fast path or slow path without
2025 * another balance operation being required.
2026 */
Christoph Hellwig45af6c62008-04-22 17:34:44 +10002027 xfs_icsb_balance_counter(mp, field, delta);
David Chinner03135cf2007-02-10 18:35:15 +11002028 xfs_icsb_unlock(mp);
David Chinner20b64282007-02-10 18:35:09 +11002029 goto again;
David Chinner8d280b92006-03-14 13:13:09 +11002030}
2031
David Chinner8d280b92006-03-14 13:13:09 +11002032#endif