blob: 4bf79511f1c83e696cb501aeedc5e91eaec688a5 [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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "xfs_types.h"
Nathan Scotta844f452005-11-02 14:38:42 +110021#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "xfs_log.h"
Nathan Scotta844f452005-11-02 14:38:42 +110023#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_trans.h"
25#include "xfs_sb.h"
26#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_dir2.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "xfs_bmap_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110030#include "xfs_alloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_ialloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_dir2_sf.h"
Nathan Scotta844f452005-11-02 14:38:42 +110033#include "xfs_attr_sf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_dinode.h"
35#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110036#include "xfs_btree.h"
37#include "xfs_ialloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include "xfs_alloc.h"
39#include "xfs_rtalloc.h"
40#include "xfs_bmap.h"
41#include "xfs_error.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include "xfs_rw.h"
43#include "xfs_quota.h"
44#include "xfs_fsops.h"
Christoph Hellwig43355092008-03-27 18:01:08 +110045#include "xfs_utils.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000046#include "xfs_trace.h"
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Christoph Hellwigba0f32d2005-06-21 15:36:52 +100049STATIC void xfs_unmountfs_wait(xfs_mount_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
David Chinner8d280b92006-03-14 13:13:09 +110051
52#ifdef HAVE_PERCPU_SB
David Chinner20f4ebf2007-02-10 18:36:10 +110053STATIC void xfs_icsb_balance_counter(xfs_mount_t *, xfs_sb_field_t,
Christoph Hellwig45af6c62008-04-22 17:34:44 +100054 int);
55STATIC void xfs_icsb_balance_counter_locked(xfs_mount_t *, xfs_sb_field_t,
56 int);
David Chinner8d280b92006-03-14 13:13:09 +110057STATIC int xfs_icsb_modify_counters(xfs_mount_t *, xfs_sb_field_t,
David Chinner20f4ebf2007-02-10 18:36:10 +110058 int64_t, int);
David Chinner36fbe6e2008-04-10 12:19:56 +100059STATIC void xfs_icsb_disable_counter(xfs_mount_t *, xfs_sb_field_t);
David Chinner8d280b92006-03-14 13:13:09 +110060
61#else
62
Christoph Hellwig45af6c62008-04-22 17:34:44 +100063#define xfs_icsb_balance_counter(mp, a, b) do { } while (0)
64#define xfs_icsb_balance_counter_locked(mp, a, b) do { } while (0)
David Chinner8d280b92006-03-14 13:13:09 +110065#define xfs_icsb_modify_counters(mp, a, b, c) do { } while (0)
David Chinner8d280b92006-03-14 13:13:09 +110066
67#endif
68
Christoph Hellwig1df84c92006-01-11 15:29:52 +110069static const struct {
David Chinner8d280b92006-03-14 13:13:09 +110070 short offset;
71 short type; /* 0 = integer
72 * 1 = binary / string (no translation)
73 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070074} xfs_sb_info[] = {
75 { offsetof(xfs_sb_t, sb_magicnum), 0 },
76 { offsetof(xfs_sb_t, sb_blocksize), 0 },
77 { offsetof(xfs_sb_t, sb_dblocks), 0 },
78 { offsetof(xfs_sb_t, sb_rblocks), 0 },
79 { offsetof(xfs_sb_t, sb_rextents), 0 },
80 { offsetof(xfs_sb_t, sb_uuid), 1 },
81 { offsetof(xfs_sb_t, sb_logstart), 0 },
82 { offsetof(xfs_sb_t, sb_rootino), 0 },
83 { offsetof(xfs_sb_t, sb_rbmino), 0 },
84 { offsetof(xfs_sb_t, sb_rsumino), 0 },
85 { offsetof(xfs_sb_t, sb_rextsize), 0 },
86 { offsetof(xfs_sb_t, sb_agblocks), 0 },
87 { offsetof(xfs_sb_t, sb_agcount), 0 },
88 { offsetof(xfs_sb_t, sb_rbmblocks), 0 },
89 { offsetof(xfs_sb_t, sb_logblocks), 0 },
90 { offsetof(xfs_sb_t, sb_versionnum), 0 },
91 { offsetof(xfs_sb_t, sb_sectsize), 0 },
92 { offsetof(xfs_sb_t, sb_inodesize), 0 },
93 { offsetof(xfs_sb_t, sb_inopblock), 0 },
94 { offsetof(xfs_sb_t, sb_fname[0]), 1 },
95 { offsetof(xfs_sb_t, sb_blocklog), 0 },
96 { offsetof(xfs_sb_t, sb_sectlog), 0 },
97 { offsetof(xfs_sb_t, sb_inodelog), 0 },
98 { offsetof(xfs_sb_t, sb_inopblog), 0 },
99 { offsetof(xfs_sb_t, sb_agblklog), 0 },
100 { offsetof(xfs_sb_t, sb_rextslog), 0 },
101 { offsetof(xfs_sb_t, sb_inprogress), 0 },
102 { offsetof(xfs_sb_t, sb_imax_pct), 0 },
103 { offsetof(xfs_sb_t, sb_icount), 0 },
104 { offsetof(xfs_sb_t, sb_ifree), 0 },
105 { offsetof(xfs_sb_t, sb_fdblocks), 0 },
106 { offsetof(xfs_sb_t, sb_frextents), 0 },
107 { offsetof(xfs_sb_t, sb_uquotino), 0 },
108 { offsetof(xfs_sb_t, sb_gquotino), 0 },
109 { offsetof(xfs_sb_t, sb_qflags), 0 },
110 { offsetof(xfs_sb_t, sb_flags), 0 },
111 { offsetof(xfs_sb_t, sb_shared_vn), 0 },
112 { offsetof(xfs_sb_t, sb_inoalignmt), 0 },
113 { offsetof(xfs_sb_t, sb_unit), 0 },
114 { offsetof(xfs_sb_t, sb_width), 0 },
115 { offsetof(xfs_sb_t, sb_dirblklog), 0 },
116 { offsetof(xfs_sb_t, sb_logsectlog), 0 },
117 { offsetof(xfs_sb_t, sb_logsectsize),0 },
118 { offsetof(xfs_sb_t, sb_logsunit), 0 },
119 { offsetof(xfs_sb_t, sb_features2), 0 },
David Chinneree1c0902008-03-06 13:45:50 +1100120 { offsetof(xfs_sb_t, sb_bad_features2), 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 { sizeof(xfs_sb_t), 0 }
122};
123
Christoph Hellwig27174202009-03-30 10:21:31 +0200124static DEFINE_MUTEX(xfs_uuid_table_mutex);
125static int xfs_uuid_table_size;
126static uuid_t *xfs_uuid_table;
127
128/*
129 * See if the UUID is unique among mounted XFS filesystems.
130 * Mount fails if UUID is nil or a FS with the same UUID is already mounted.
131 */
132STATIC int
133xfs_uuid_mount(
134 struct xfs_mount *mp)
135{
136 uuid_t *uuid = &mp->m_sb.sb_uuid;
137 int hole, i;
138
139 if (mp->m_flags & XFS_MOUNT_NOUUID)
140 return 0;
141
142 if (uuid_is_nil(uuid)) {
143 cmn_err(CE_WARN,
144 "XFS: Filesystem %s has nil UUID - can't mount",
145 mp->m_fsname);
146 return XFS_ERROR(EINVAL);
147 }
148
149 mutex_lock(&xfs_uuid_table_mutex);
150 for (i = 0, hole = -1; i < xfs_uuid_table_size; i++) {
151 if (uuid_is_nil(&xfs_uuid_table[i])) {
152 hole = i;
153 continue;
154 }
155 if (uuid_equal(uuid, &xfs_uuid_table[i]))
156 goto out_duplicate;
157 }
158
159 if (hole < 0) {
160 xfs_uuid_table = kmem_realloc(xfs_uuid_table,
161 (xfs_uuid_table_size + 1) * sizeof(*xfs_uuid_table),
162 xfs_uuid_table_size * sizeof(*xfs_uuid_table),
163 KM_SLEEP);
164 hole = xfs_uuid_table_size++;
165 }
166 xfs_uuid_table[hole] = *uuid;
167 mutex_unlock(&xfs_uuid_table_mutex);
168
169 return 0;
170
171 out_duplicate:
172 mutex_unlock(&xfs_uuid_table_mutex);
173 cmn_err(CE_WARN, "XFS: Filesystem %s has duplicate UUID - can't mount",
174 mp->m_fsname);
175 return XFS_ERROR(EINVAL);
176}
177
178STATIC void
179xfs_uuid_unmount(
180 struct xfs_mount *mp)
181{
182 uuid_t *uuid = &mp->m_sb.sb_uuid;
183 int i;
184
185 if (mp->m_flags & XFS_MOUNT_NOUUID)
186 return;
187
188 mutex_lock(&xfs_uuid_table_mutex);
189 for (i = 0; i < xfs_uuid_table_size; i++) {
190 if (uuid_is_nil(&xfs_uuid_table[i]))
191 continue;
192 if (!uuid_equal(uuid, &xfs_uuid_table[i]))
193 continue;
194 memset(&xfs_uuid_table[i], 0, sizeof(uuid_t));
195 break;
196 }
197 ASSERT(i < xfs_uuid_table_size);
198 mutex_unlock(&xfs_uuid_table_mutex);
199}
200
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202/*
Dave Chinner0fa800f2010-01-11 11:47:46 +0000203 * Reference counting access wrappers to the perag structures.
204 */
205struct xfs_perag *
206xfs_perag_get(struct xfs_mount *mp, xfs_agnumber_t agno)
207{
208 struct xfs_perag *pag;
209 int ref = 0;
210
211 spin_lock(&mp->m_perag_lock);
212 pag = radix_tree_lookup(&mp->m_perag_tree, agno);
213 if (pag) {
214 ASSERT(atomic_read(&pag->pag_ref) >= 0);
215 /* catch leaks in the positive direction during testing */
216 ASSERT(atomic_read(&pag->pag_ref) < 1000);
217 ref = atomic_inc_return(&pag->pag_ref);
218 }
219 spin_unlock(&mp->m_perag_lock);
220 trace_xfs_perag_get(mp, agno, ref, _RET_IP_);
221 return pag;
222}
223
224void
225xfs_perag_put(struct xfs_perag *pag)
226{
227 int ref;
228
229 ASSERT(atomic_read(&pag->pag_ref) > 0);
230 ref = atomic_dec_return(&pag->pag_ref);
231 trace_xfs_perag_put(pag->pag_mount, pag->pag_agno, ref, _RET_IP_);
232}
233
234/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 * Free up the resources associated with a mount structure. Assume that
236 * the structure was initially zeroed, so we can tell which fields got
237 * initialized.
238 */
Christoph Hellwigc962fb72008-05-20 15:10:52 +1000239STATIC void
Christoph Hellwigff4f0382008-08-13 16:50:47 +1000240xfs_free_perag(
Christoph Hellwig745f6912007-08-30 17:20:39 +1000241 xfs_mount_t *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000243 xfs_agnumber_t agno;
244 struct xfs_perag *pag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000246 for (agno = 0; agno < mp->m_sb.sb_agcount; agno++) {
247 spin_lock(&mp->m_perag_lock);
248 pag = radix_tree_delete(&mp->m_perag_tree, agno);
Dave Chinnere57336f2010-01-11 11:47:49 +0000249 ASSERT(pag);
Dave Chinneraed3bb92010-01-11 11:47:45 +0000250 ASSERT(atomic_read(&pag->pag_ref) == 0);
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000251 spin_unlock(&mp->m_perag_lock);
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000252 kmem_free(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254}
255
Nathan Scott4cc929e2007-05-14 18:24:02 +1000256/*
257 * Check size of device based on the (data/realtime) block count.
258 * Note: this check is used by the growfs code as well as mount.
259 */
260int
261xfs_sb_validate_fsb_count(
262 xfs_sb_t *sbp,
263 __uint64_t nblocks)
264{
265 ASSERT(PAGE_SHIFT >= sbp->sb_blocklog);
266 ASSERT(sbp->sb_blocklog >= BBSHIFT);
267
268#if XFS_BIG_BLKNOS /* Limited by ULONG_MAX of page cache index */
269 if (nblocks >> (PAGE_CACHE_SHIFT - sbp->sb_blocklog) > ULONG_MAX)
Eric Sandeen657a4cf2010-04-30 03:42:49 +0000270 return EFBIG;
Nathan Scott4cc929e2007-05-14 18:24:02 +1000271#else /* Limited by UINT_MAX of sectors */
272 if (nblocks << (sbp->sb_blocklog - BBSHIFT) > UINT_MAX)
Eric Sandeen657a4cf2010-04-30 03:42:49 +0000273 return EFBIG;
Nathan Scott4cc929e2007-05-14 18:24:02 +1000274#endif
275 return 0;
276}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
278/*
279 * Check the validity of the SB found.
280 */
281STATIC int
282xfs_mount_validate_sb(
283 xfs_mount_t *mp,
Nathan Scott764d1f82006-03-31 13:04:17 +1000284 xfs_sb_t *sbp,
285 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286{
287 /*
288 * If the log device and data device have the
289 * same device number, the log is internal.
290 * Consequently, the sb_logstart should be non-zero. If
291 * we have a zero sb_logstart in this case, we may be trying to mount
292 * a volume filesystem in a non-volume manner.
293 */
294 if (sbp->sb_magicnum != XFS_SB_MAGIC) {
Nathan Scott764d1f82006-03-31 13:04:17 +1000295 xfs_fs_mount_cmn_err(flags, "bad magic number");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 return XFS_ERROR(EWRONGFS);
297 }
298
Eric Sandeen62118702008-03-06 13:44:28 +1100299 if (!xfs_sb_good_version(sbp)) {
Nathan Scott764d1f82006-03-31 13:04:17 +1000300 xfs_fs_mount_cmn_err(flags, "bad version");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 return XFS_ERROR(EWRONGFS);
302 }
303
304 if (unlikely(
305 sbp->sb_logstart == 0 && mp->m_logdev_targp == mp->m_ddev_targp)) {
Nathan Scott764d1f82006-03-31 13:04:17 +1000306 xfs_fs_mount_cmn_err(flags,
307 "filesystem is marked as having an external log; "
308 "specify logdev on the\nmount command line.");
309 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 }
311
312 if (unlikely(
313 sbp->sb_logstart != 0 && mp->m_logdev_targp != mp->m_ddev_targp)) {
Nathan Scott764d1f82006-03-31 13:04:17 +1000314 xfs_fs_mount_cmn_err(flags,
315 "filesystem is marked as having an internal log; "
316 "do not specify logdev on\nthe mount command line.");
317 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 }
319
320 /*
321 * More sanity checking. These were stolen directly from
322 * xfs_repair.
323 */
324 if (unlikely(
325 sbp->sb_agcount <= 0 ||
326 sbp->sb_sectsize < XFS_MIN_SECTORSIZE ||
327 sbp->sb_sectsize > XFS_MAX_SECTORSIZE ||
328 sbp->sb_sectlog < XFS_MIN_SECTORSIZE_LOG ||
329 sbp->sb_sectlog > XFS_MAX_SECTORSIZE_LOG ||
Olaf Weber2ac00af2009-04-17 16:12:45 -0500330 sbp->sb_sectsize != (1 << sbp->sb_sectlog) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 sbp->sb_blocksize < XFS_MIN_BLOCKSIZE ||
332 sbp->sb_blocksize > XFS_MAX_BLOCKSIZE ||
333 sbp->sb_blocklog < XFS_MIN_BLOCKSIZE_LOG ||
334 sbp->sb_blocklog > XFS_MAX_BLOCKSIZE_LOG ||
Olaf Weber2ac00af2009-04-17 16:12:45 -0500335 sbp->sb_blocksize != (1 << sbp->sb_blocklog) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 sbp->sb_inodesize < XFS_DINODE_MIN_SIZE ||
337 sbp->sb_inodesize > XFS_DINODE_MAX_SIZE ||
Nathan Scott9f989c92006-03-14 13:29:32 +1100338 sbp->sb_inodelog < XFS_DINODE_MIN_LOG ||
339 sbp->sb_inodelog > XFS_DINODE_MAX_LOG ||
Olaf Weber2ac00af2009-04-17 16:12:45 -0500340 sbp->sb_inodesize != (1 << sbp->sb_inodelog) ||
Nathan Scott9f989c92006-03-14 13:29:32 +1100341 (sbp->sb_blocklog - sbp->sb_inodelog != sbp->sb_inopblog) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 (sbp->sb_rextsize * sbp->sb_blocksize > XFS_MAX_RTEXTSIZE) ||
343 (sbp->sb_rextsize * sbp->sb_blocksize < XFS_MIN_RTEXTSIZE) ||
Nathan Scotte50bd162006-04-11 15:10:45 +1000344 (sbp->sb_imax_pct > 100 /* zero sb_imax_pct is valid */))) {
Nathan Scott764d1f82006-03-31 13:04:17 +1000345 xfs_fs_mount_cmn_err(flags, "SB sanity check 1 failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 return XFS_ERROR(EFSCORRUPTED);
347 }
348
349 /*
350 * Sanity check AG count, size fields against data size field
351 */
352 if (unlikely(
353 sbp->sb_dblocks == 0 ||
354 sbp->sb_dblocks >
355 (xfs_drfsbno_t)sbp->sb_agcount * sbp->sb_agblocks ||
356 sbp->sb_dblocks < (xfs_drfsbno_t)(sbp->sb_agcount - 1) *
357 sbp->sb_agblocks + XFS_MIN_AG_BLOCKS)) {
Nathan Scott764d1f82006-03-31 13:04:17 +1000358 xfs_fs_mount_cmn_err(flags, "SB sanity check 2 failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 return XFS_ERROR(EFSCORRUPTED);
360 }
361
Lachlan McIlroy2edbddd2008-06-27 13:34:34 +1000362 /*
363 * Until this is fixed only page-sized or smaller data blocks work.
364 */
365 if (unlikely(sbp->sb_blocksize > PAGE_SIZE)) {
366 xfs_fs_mount_cmn_err(flags,
367 "file system with blocksize %d bytes",
368 sbp->sb_blocksize);
369 xfs_fs_mount_cmn_err(flags,
370 "only pagesize (%ld) or less will currently work.",
371 PAGE_SIZE);
372 return XFS_ERROR(ENOSYS);
373 }
374
Christoph Hellwig1a5902c2009-03-29 19:26:46 +0200375 /*
376 * Currently only very few inode sizes are supported.
377 */
378 switch (sbp->sb_inodesize) {
379 case 256:
380 case 512:
381 case 1024:
382 case 2048:
383 break;
384 default:
385 xfs_fs_mount_cmn_err(flags,
386 "inode size of %d bytes not supported",
387 sbp->sb_inodesize);
388 return XFS_ERROR(ENOSYS);
389 }
390
Nathan Scott4cc929e2007-05-14 18:24:02 +1000391 if (xfs_sb_validate_fsb_count(sbp, sbp->sb_dblocks) ||
392 xfs_sb_validate_fsb_count(sbp, sbp->sb_rblocks)) {
Nathan Scott764d1f82006-03-31 13:04:17 +1000393 xfs_fs_mount_cmn_err(flags,
394 "file system too large to be mounted on this system.");
Eric Sandeen657a4cf2010-04-30 03:42:49 +0000395 return XFS_ERROR(EFBIG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 }
397
398 if (unlikely(sbp->sb_inprogress)) {
Nathan Scott764d1f82006-03-31 13:04:17 +1000399 xfs_fs_mount_cmn_err(flags, "file system busy");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 return XFS_ERROR(EFSCORRUPTED);
401 }
402
403 /*
Nathan Scottde206142005-05-05 13:24:13 -0700404 * Version 1 directory format has never worked on Linux.
405 */
Eric Sandeen62118702008-03-06 13:44:28 +1100406 if (unlikely(!xfs_sb_version_hasdirv2(sbp))) {
Nathan Scott764d1f82006-03-31 13:04:17 +1000407 xfs_fs_mount_cmn_err(flags,
408 "file system using version 1 directory format");
Nathan Scottde206142005-05-05 13:24:13 -0700409 return XFS_ERROR(ENOSYS);
410 }
411
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 return 0;
413}
414
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000415int
Nathan Scottc11e2c32005-11-02 15:11:45 +1100416xfs_initialize_perag(
Nathan Scottc11e2c32005-11-02 15:11:45 +1100417 xfs_mount_t *mp,
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000418 xfs_agnumber_t agcount,
419 xfs_agnumber_t *maxagi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420{
421 xfs_agnumber_t index, max_metadata;
Dave Chinner8b26c582010-01-11 11:47:48 +0000422 xfs_agnumber_t first_initialised = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 xfs_perag_t *pag;
424 xfs_agino_t agino;
425 xfs_ino_t ino;
426 xfs_sb_t *sbp = &mp->m_sb;
Dave Chinner8b26c582010-01-11 11:47:48 +0000427 int error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000429 /*
430 * Walk the current per-ag tree so we don't try to initialise AGs
431 * that already exist (growfs case). Allocate and insert all the
432 * AGs we don't find ready for initialisation.
433 */
434 for (index = 0; index < agcount; index++) {
435 pag = xfs_perag_get(mp, index);
436 if (pag) {
437 xfs_perag_put(pag);
438 continue;
439 }
Dave Chinner8b26c582010-01-11 11:47:48 +0000440 if (!first_initialised)
441 first_initialised = index;
Christoph Hellwigfb3b5042010-05-28 19:03:10 +0000442
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000443 pag = kmem_zalloc(sizeof(*pag), KM_MAYFAIL);
444 if (!pag)
Dave Chinner8b26c582010-01-11 11:47:48 +0000445 goto out_unwind;
Christoph Hellwigfb3b5042010-05-28 19:03:10 +0000446 pag->pag_agno = index;
447 pag->pag_mount = mp;
448 rwlock_init(&pag->pag_ici_lock);
449 INIT_RADIX_TREE(&pag->pag_ici_root, GFP_ATOMIC);
450
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000451 if (radix_tree_preload(GFP_NOFS))
Dave Chinner8b26c582010-01-11 11:47:48 +0000452 goto out_unwind;
Christoph Hellwigfb3b5042010-05-28 19:03:10 +0000453
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000454 spin_lock(&mp->m_perag_lock);
455 if (radix_tree_insert(&mp->m_perag_tree, index, pag)) {
456 BUG();
457 spin_unlock(&mp->m_perag_lock);
Dave Chinner8b26c582010-01-11 11:47:48 +0000458 radix_tree_preload_end();
459 error = -EEXIST;
460 goto out_unwind;
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000461 }
462 spin_unlock(&mp->m_perag_lock);
463 radix_tree_preload_end();
464 }
465
Christoph Hellwigfb3b5042010-05-28 19:03:10 +0000466 /*
467 * If we mount with the inode64 option, or no inode overflows
468 * the legacy 32-bit address space clear the inode32 option.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 */
Christoph Hellwigfb3b5042010-05-28 19:03:10 +0000470 agino = XFS_OFFBNO_TO_AGINO(mp, sbp->sb_agblocks - 1, 0);
471 ino = XFS_AGINO_TO_INO(mp, agcount - 1, agino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
Christoph Hellwigfb3b5042010-05-28 19:03:10 +0000473 if ((mp->m_flags & XFS_MOUNT_SMALL_INUMS) && ino > XFS_MAXINUMBER_32)
474 mp->m_flags |= XFS_MOUNT_32BITINODES;
475 else
476 mp->m_flags &= ~XFS_MOUNT_32BITINODES;
477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 if (mp->m_flags & XFS_MOUNT_32BITINODES) {
Christoph Hellwigfb3b5042010-05-28 19:03:10 +0000479 /*
480 * Calculate how much should be reserved for inodes to meet
481 * the max inode percentage.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 */
483 if (mp->m_maxicount) {
484 __uint64_t icount;
485
486 icount = sbp->sb_dblocks * sbp->sb_imax_pct;
487 do_div(icount, 100);
488 icount += sbp->sb_agblocks - 1;
Eric Sandeena749ee82005-11-02 15:13:42 +1100489 do_div(icount, sbp->sb_agblocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 max_metadata = icount;
491 } else {
492 max_metadata = agcount;
493 }
Christoph Hellwigfb3b5042010-05-28 19:03:10 +0000494
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 for (index = 0; index < agcount; index++) {
496 ino = XFS_AGINO_TO_INO(mp, index, agino);
Christoph Hellwigfb3b5042010-05-28 19:03:10 +0000497 if (ino > XFS_MAXINUMBER_32) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 index++;
499 break;
500 }
501
Dave Chinner44b56e02010-01-11 11:47:43 +0000502 pag = xfs_perag_get(mp, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 pag->pagi_inodeok = 1;
504 if (index < max_metadata)
505 pag->pagf_metadata = 1;
Dave Chinner44b56e02010-01-11 11:47:43 +0000506 xfs_perag_put(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 }
508 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 for (index = 0; index < agcount; index++) {
Dave Chinner44b56e02010-01-11 11:47:43 +0000510 pag = xfs_perag_get(mp, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 pag->pagi_inodeok = 1;
Dave Chinner44b56e02010-01-11 11:47:43 +0000512 xfs_perag_put(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 }
514 }
Christoph Hellwigfb3b5042010-05-28 19:03:10 +0000515
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000516 if (maxagi)
517 *maxagi = index;
518 return 0;
Dave Chinner8b26c582010-01-11 11:47:48 +0000519
520out_unwind:
521 kmem_free(pag);
522 for (; index > first_initialised; index--) {
523 pag = radix_tree_delete(&mp->m_perag_tree, index);
524 kmem_free(pag);
525 }
526 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527}
528
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000529void
530xfs_sb_from_disk(
531 xfs_sb_t *to,
532 xfs_dsb_t *from)
533{
534 to->sb_magicnum = be32_to_cpu(from->sb_magicnum);
535 to->sb_blocksize = be32_to_cpu(from->sb_blocksize);
536 to->sb_dblocks = be64_to_cpu(from->sb_dblocks);
537 to->sb_rblocks = be64_to_cpu(from->sb_rblocks);
538 to->sb_rextents = be64_to_cpu(from->sb_rextents);
539 memcpy(&to->sb_uuid, &from->sb_uuid, sizeof(to->sb_uuid));
540 to->sb_logstart = be64_to_cpu(from->sb_logstart);
541 to->sb_rootino = be64_to_cpu(from->sb_rootino);
542 to->sb_rbmino = be64_to_cpu(from->sb_rbmino);
543 to->sb_rsumino = be64_to_cpu(from->sb_rsumino);
544 to->sb_rextsize = be32_to_cpu(from->sb_rextsize);
545 to->sb_agblocks = be32_to_cpu(from->sb_agblocks);
546 to->sb_agcount = be32_to_cpu(from->sb_agcount);
547 to->sb_rbmblocks = be32_to_cpu(from->sb_rbmblocks);
548 to->sb_logblocks = be32_to_cpu(from->sb_logblocks);
549 to->sb_versionnum = be16_to_cpu(from->sb_versionnum);
550 to->sb_sectsize = be16_to_cpu(from->sb_sectsize);
551 to->sb_inodesize = be16_to_cpu(from->sb_inodesize);
552 to->sb_inopblock = be16_to_cpu(from->sb_inopblock);
553 memcpy(&to->sb_fname, &from->sb_fname, sizeof(to->sb_fname));
554 to->sb_blocklog = from->sb_blocklog;
555 to->sb_sectlog = from->sb_sectlog;
556 to->sb_inodelog = from->sb_inodelog;
557 to->sb_inopblog = from->sb_inopblog;
558 to->sb_agblklog = from->sb_agblklog;
559 to->sb_rextslog = from->sb_rextslog;
560 to->sb_inprogress = from->sb_inprogress;
561 to->sb_imax_pct = from->sb_imax_pct;
562 to->sb_icount = be64_to_cpu(from->sb_icount);
563 to->sb_ifree = be64_to_cpu(from->sb_ifree);
564 to->sb_fdblocks = be64_to_cpu(from->sb_fdblocks);
565 to->sb_frextents = be64_to_cpu(from->sb_frextents);
566 to->sb_uquotino = be64_to_cpu(from->sb_uquotino);
567 to->sb_gquotino = be64_to_cpu(from->sb_gquotino);
568 to->sb_qflags = be16_to_cpu(from->sb_qflags);
569 to->sb_flags = from->sb_flags;
570 to->sb_shared_vn = from->sb_shared_vn;
571 to->sb_inoalignmt = be32_to_cpu(from->sb_inoalignmt);
572 to->sb_unit = be32_to_cpu(from->sb_unit);
573 to->sb_width = be32_to_cpu(from->sb_width);
574 to->sb_dirblklog = from->sb_dirblklog;
575 to->sb_logsectlog = from->sb_logsectlog;
576 to->sb_logsectsize = be16_to_cpu(from->sb_logsectsize);
577 to->sb_logsunit = be32_to_cpu(from->sb_logsunit);
578 to->sb_features2 = be32_to_cpu(from->sb_features2);
David Chinneree1c0902008-03-06 13:45:50 +1100579 to->sb_bad_features2 = be32_to_cpu(from->sb_bad_features2);
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000580}
581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582/*
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000583 * Copy in core superblock to ondisk one.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 *
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000585 * The fields argument is mask of superblock fields to copy.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 */
587void
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000588xfs_sb_to_disk(
589 xfs_dsb_t *to,
590 xfs_sb_t *from,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 __int64_t fields)
592{
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000593 xfs_caddr_t to_ptr = (xfs_caddr_t)to;
594 xfs_caddr_t from_ptr = (xfs_caddr_t)from;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 xfs_sb_field_t f;
596 int first;
597 int size;
598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 ASSERT(fields);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 if (!fields)
601 return;
602
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 while (fields) {
604 f = (xfs_sb_field_t)xfs_lowbit64((__uint64_t)fields);
605 first = xfs_sb_info[f].offset;
606 size = xfs_sb_info[f + 1].offset - first;
607
608 ASSERT(xfs_sb_info[f].type == 0 || xfs_sb_info[f].type == 1);
609
610 if (size == 1 || xfs_sb_info[f].type == 1) {
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000611 memcpy(to_ptr + first, from_ptr + first, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 } else {
613 switch (size) {
614 case 2:
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000615 *(__be16 *)(to_ptr + first) =
616 cpu_to_be16(*(__u16 *)(from_ptr + first));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 break;
618 case 4:
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000619 *(__be32 *)(to_ptr + first) =
620 cpu_to_be32(*(__u32 *)(from_ptr + first));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 break;
622 case 8:
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000623 *(__be64 *)(to_ptr + first) =
624 cpu_to_be64(*(__u64 *)(from_ptr + first));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 break;
626 default:
627 ASSERT(0);
628 }
629 }
630
631 fields &= ~(1LL << f);
632 }
633}
634
635/*
636 * xfs_readsb
637 *
638 * Does the initial read of the superblock.
639 */
640int
Nathan Scott764d1f82006-03-31 13:04:17 +1000641xfs_readsb(xfs_mount_t *mp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
643 unsigned int sector_size;
644 unsigned int extra_flags;
645 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 int error;
647
648 ASSERT(mp->m_sb_bp == NULL);
649 ASSERT(mp->m_ddev_targp != NULL);
650
651 /*
652 * Allocate a (locked) buffer to hold the superblock.
653 * This will be kept around at all times to optimize
654 * access to the superblock.
655 */
656 sector_size = xfs_getsize_buftarg(mp->m_ddev_targp);
Christoph Hellwig0cadda12010-01-19 09:56:44 +0000657 extra_flags = XBF_LOCK | XBF_FS_MANAGED | XBF_MAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Christoph Hellwig6ad112b2009-11-24 18:02:23 +0000659 bp = xfs_buf_read(mp->m_ddev_targp, XFS_SB_DADDR, BTOBB(sector_size),
660 extra_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 if (!bp || XFS_BUF_ISERROR(bp)) {
Nathan Scott764d1f82006-03-31 13:04:17 +1000662 xfs_fs_mount_cmn_err(flags, "SB read failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 error = bp ? XFS_BUF_GETERROR(bp) : ENOMEM;
664 goto fail;
665 }
666 ASSERT(XFS_BUF_ISBUSY(bp));
667 ASSERT(XFS_BUF_VALUSEMA(bp) <= 0);
668
669 /*
670 * Initialize the mount structure from the superblock.
671 * But first do some basic consistency checking.
672 */
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000673 xfs_sb_from_disk(&mp->m_sb, XFS_BUF_TO_SBP(bp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Nathan Scott764d1f82006-03-31 13:04:17 +1000675 error = xfs_mount_validate_sb(mp, &(mp->m_sb), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 if (error) {
Nathan Scott764d1f82006-03-31 13:04:17 +1000677 xfs_fs_mount_cmn_err(flags, "SB validate failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 goto fail;
679 }
680
681 /*
682 * We must be able to do sector-sized and sector-aligned IO.
683 */
684 if (sector_size > mp->m_sb.sb_sectsize) {
Nathan Scott764d1f82006-03-31 13:04:17 +1000685 xfs_fs_mount_cmn_err(flags,
686 "device supports only %u byte sectors (not %u)",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 sector_size, mp->m_sb.sb_sectsize);
688 error = ENOSYS;
689 goto fail;
690 }
691
692 /*
693 * If device sector size is smaller than the superblock size,
694 * re-read the superblock so the buffer is correctly sized.
695 */
696 if (sector_size < mp->m_sb.sb_sectsize) {
697 XFS_BUF_UNMANAGE(bp);
698 xfs_buf_relse(bp);
699 sector_size = mp->m_sb.sb_sectsize;
Christoph Hellwig6ad112b2009-11-24 18:02:23 +0000700 bp = xfs_buf_read(mp->m_ddev_targp, XFS_SB_DADDR,
701 BTOBB(sector_size), extra_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 if (!bp || XFS_BUF_ISERROR(bp)) {
Nathan Scott764d1f82006-03-31 13:04:17 +1000703 xfs_fs_mount_cmn_err(flags, "SB re-read failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 error = bp ? XFS_BUF_GETERROR(bp) : ENOMEM;
705 goto fail;
706 }
707 ASSERT(XFS_BUF_ISBUSY(bp));
708 ASSERT(XFS_BUF_VALUSEMA(bp) <= 0);
709 }
710
Lachlan McIlroy5478eea2007-02-10 18:36:29 +1100711 /* Initialize per-cpu counters */
712 xfs_icsb_reinit_counters(mp);
David Chinner8d280b92006-03-14 13:13:09 +1100713
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 mp->m_sb_bp = bp;
715 xfs_buf_relse(bp);
716 ASSERT(XFS_BUF_VALUSEMA(bp) > 0);
717 return 0;
718
719 fail:
720 if (bp) {
721 XFS_BUF_UNMANAGE(bp);
722 xfs_buf_relse(bp);
723 }
724 return error;
725}
726
727
728/*
729 * xfs_mount_common
730 *
731 * Mount initialization code establishing various mount
732 * fields from the superblock associated with the given
733 * mount structure
734 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +1000735STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736xfs_mount_common(xfs_mount_t *mp, xfs_sb_t *sbp)
737{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 mp->m_agfrotor = mp->m_agirotor = 0;
Eric Sandeen007c61c2007-10-11 17:43:56 +1000739 spin_lock_init(&mp->m_agirotor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 mp->m_maxagi = mp->m_sb.sb_agcount;
741 mp->m_blkbit_log = sbp->sb_blocklog + XFS_NBBYLOG;
742 mp->m_blkbb_log = sbp->sb_blocklog - BBSHIFT;
743 mp->m_sectbb_log = sbp->sb_sectlog - BBSHIFT;
744 mp->m_agno_log = xfs_highbit32(sbp->sb_agcount - 1) + 1;
745 mp->m_agino_log = sbp->sb_inopblog + sbp->sb_agblklog;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 mp->m_blockmask = sbp->sb_blocksize - 1;
747 mp->m_blockwsize = sbp->sb_blocksize >> XFS_WORDLOG;
748 mp->m_blockwmask = mp->m_blockwsize - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Christoph Hellwig60197e82008-10-30 17:11:19 +1100750 mp->m_alloc_mxr[0] = xfs_allocbt_maxrecs(mp, sbp->sb_blocksize, 1);
751 mp->m_alloc_mxr[1] = xfs_allocbt_maxrecs(mp, sbp->sb_blocksize, 0);
752 mp->m_alloc_mnr[0] = mp->m_alloc_mxr[0] / 2;
753 mp->m_alloc_mnr[1] = mp->m_alloc_mxr[1] / 2;
754
755 mp->m_inobt_mxr[0] = xfs_inobt_maxrecs(mp, sbp->sb_blocksize, 1);
756 mp->m_inobt_mxr[1] = xfs_inobt_maxrecs(mp, sbp->sb_blocksize, 0);
757 mp->m_inobt_mnr[0] = mp->m_inobt_mxr[0] / 2;
758 mp->m_inobt_mnr[1] = mp->m_inobt_mxr[1] / 2;
759
760 mp->m_bmap_dmxr[0] = xfs_bmbt_maxrecs(mp, sbp->sb_blocksize, 1);
761 mp->m_bmap_dmxr[1] = xfs_bmbt_maxrecs(mp, sbp->sb_blocksize, 0);
762 mp->m_bmap_dmnr[0] = mp->m_bmap_dmxr[0] / 2;
763 mp->m_bmap_dmnr[1] = mp->m_bmap_dmxr[1] / 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
765 mp->m_bsize = XFS_FSB_TO_BB(mp, 1);
766 mp->m_ialloc_inos = (int)MAX((__uint16_t)XFS_INODES_PER_CHUNK,
767 sbp->sb_inopblock);
768 mp->m_ialloc_blks = mp->m_ialloc_inos >> sbp->sb_inopblog;
769}
David Chinner92821e22007-05-24 15:26:31 +1000770
771/*
772 * xfs_initialize_perag_data
773 *
774 * Read in each per-ag structure so we can count up the number of
775 * allocated inodes, free inodes and used filesystem blocks as this
776 * information is no longer persistent in the superblock. Once we have
777 * this information, write it into the in-core superblock structure.
778 */
779STATIC int
780xfs_initialize_perag_data(xfs_mount_t *mp, xfs_agnumber_t agcount)
781{
782 xfs_agnumber_t index;
783 xfs_perag_t *pag;
784 xfs_sb_t *sbp = &mp->m_sb;
785 uint64_t ifree = 0;
786 uint64_t ialloc = 0;
787 uint64_t bfree = 0;
788 uint64_t bfreelst = 0;
789 uint64_t btree = 0;
790 int error;
David Chinner92821e22007-05-24 15:26:31 +1000791
792 for (index = 0; index < agcount; index++) {
793 /*
794 * read the agf, then the agi. This gets us
Malcolm Parsons9da096f2009-03-29 09:55:42 +0200795 * all the information we need and populates the
David Chinner92821e22007-05-24 15:26:31 +1000796 * per-ag structures for us.
797 */
798 error = xfs_alloc_pagf_init(mp, NULL, index, 0);
799 if (error)
800 return error;
801
802 error = xfs_ialloc_pagi_init(mp, NULL, index);
803 if (error)
804 return error;
Dave Chinner44b56e02010-01-11 11:47:43 +0000805 pag = xfs_perag_get(mp, index);
David Chinner92821e22007-05-24 15:26:31 +1000806 ifree += pag->pagi_freecount;
807 ialloc += pag->pagi_count;
808 bfree += pag->pagf_freeblks;
809 bfreelst += pag->pagf_flcount;
810 btree += pag->pagf_btreeblks;
Dave Chinner44b56e02010-01-11 11:47:43 +0000811 xfs_perag_put(pag);
David Chinner92821e22007-05-24 15:26:31 +1000812 }
813 /*
814 * Overwrite incore superblock counters with just-read data
815 */
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000816 spin_lock(&mp->m_sb_lock);
David Chinner92821e22007-05-24 15:26:31 +1000817 sbp->sb_ifree = ifree;
818 sbp->sb_icount = ialloc;
819 sbp->sb_fdblocks = bfree + bfreelst + btree;
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000820 spin_unlock(&mp->m_sb_lock);
David Chinner92821e22007-05-24 15:26:31 +1000821
822 /* Fixup the per-cpu counters as well. */
823 xfs_icsb_reinit_counters(mp);
824
825 return 0;
826}
827
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828/*
Eric Sandeen0771fb42007-10-12 11:03:40 +1000829 * Update alignment values based on mount options and sb values
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 */
Eric Sandeen0771fb42007-10-12 11:03:40 +1000831STATIC int
Christoph Hellwig7884bc82009-01-19 02:04:07 +0100832xfs_update_alignment(xfs_mount_t *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 xfs_sb_t *sbp = &(mp->m_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
Christoph Hellwig42490232008-08-13 16:49:32 +1000836 if (mp->m_dalign) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 /*
838 * If stripe unit and stripe width are not multiples
839 * of the fs blocksize turn off alignment.
840 */
841 if ((BBTOB(mp->m_dalign) & mp->m_blockmask) ||
842 (BBTOB(mp->m_swidth) & mp->m_blockmask)) {
843 if (mp->m_flags & XFS_MOUNT_RETERR) {
844 cmn_err(CE_WARN,
845 "XFS: alignment check 1 failed");
Eric Sandeen0771fb42007-10-12 11:03:40 +1000846 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 }
848 mp->m_dalign = mp->m_swidth = 0;
849 } else {
850 /*
851 * Convert the stripe unit and width to FSBs.
852 */
853 mp->m_dalign = XFS_BB_TO_FSBT(mp, mp->m_dalign);
854 if (mp->m_dalign && (sbp->sb_agblocks % mp->m_dalign)) {
855 if (mp->m_flags & XFS_MOUNT_RETERR) {
Eric Sandeen0771fb42007-10-12 11:03:40 +1000856 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 }
858 xfs_fs_cmn_err(CE_WARN, mp,
859"stripe alignment turned off: sunit(%d)/swidth(%d) incompatible with agsize(%d)",
860 mp->m_dalign, mp->m_swidth,
861 sbp->sb_agblocks);
862
863 mp->m_dalign = 0;
864 mp->m_swidth = 0;
865 } else if (mp->m_dalign) {
866 mp->m_swidth = XFS_BB_TO_FSBT(mp, mp->m_swidth);
867 } else {
868 if (mp->m_flags & XFS_MOUNT_RETERR) {
869 xfs_fs_cmn_err(CE_WARN, mp,
870"stripe alignment turned off: sunit(%d) less than bsize(%d)",
871 mp->m_dalign,
872 mp->m_blockmask +1);
Eric Sandeen0771fb42007-10-12 11:03:40 +1000873 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 }
875 mp->m_swidth = 0;
876 }
877 }
878
879 /*
880 * Update superblock with new values
881 * and log changes
882 */
Eric Sandeen62118702008-03-06 13:44:28 +1100883 if (xfs_sb_version_hasdalign(sbp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 if (sbp->sb_unit != mp->m_dalign) {
885 sbp->sb_unit = mp->m_dalign;
Christoph Hellwig7884bc82009-01-19 02:04:07 +0100886 mp->m_update_flags |= XFS_SB_UNIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 }
888 if (sbp->sb_width != mp->m_swidth) {
889 sbp->sb_width = mp->m_swidth;
Christoph Hellwig7884bc82009-01-19 02:04:07 +0100890 mp->m_update_flags |= XFS_SB_WIDTH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 }
892 }
893 } else if ((mp->m_flags & XFS_MOUNT_NOALIGN) != XFS_MOUNT_NOALIGN &&
Eric Sandeen62118702008-03-06 13:44:28 +1100894 xfs_sb_version_hasdalign(&mp->m_sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 mp->m_dalign = sbp->sb_unit;
896 mp->m_swidth = sbp->sb_width;
897 }
898
Eric Sandeen0771fb42007-10-12 11:03:40 +1000899 return 0;
900}
901
902/*
903 * Set the maximum inode count for this filesystem
904 */
905STATIC void
906xfs_set_maxicount(xfs_mount_t *mp)
907{
908 xfs_sb_t *sbp = &(mp->m_sb);
909 __uint64_t icount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
911 if (sbp->sb_imax_pct) {
Eric Sandeen0771fb42007-10-12 11:03:40 +1000912 /*
913 * Make sure the maximum inode count is a multiple
914 * of the units we allocate inodes in.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 icount = sbp->sb_dblocks * sbp->sb_imax_pct;
917 do_div(icount, 100);
918 do_div(icount, mp->m_ialloc_blks);
919 mp->m_maxicount = (icount * mp->m_ialloc_blks) <<
920 sbp->sb_inopblog;
Eric Sandeen0771fb42007-10-12 11:03:40 +1000921 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 mp->m_maxicount = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 }
Eric Sandeen0771fb42007-10-12 11:03:40 +1000924}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
Eric Sandeen0771fb42007-10-12 11:03:40 +1000926/*
927 * Set the default minimum read and write sizes unless
928 * already specified in a mount option.
929 * We use smaller I/O sizes when the file system
930 * is being used for NFS service (wsync mount option).
931 */
932STATIC void
933xfs_set_rw_sizes(xfs_mount_t *mp)
934{
935 xfs_sb_t *sbp = &(mp->m_sb);
936 int readio_log, writeio_log;
937
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 if (!(mp->m_flags & XFS_MOUNT_DFLT_IOSIZE)) {
939 if (mp->m_flags & XFS_MOUNT_WSYNC) {
940 readio_log = XFS_WSYNC_READIO_LOG;
941 writeio_log = XFS_WSYNC_WRITEIO_LOG;
942 } else {
943 readio_log = XFS_READIO_LOG_LARGE;
944 writeio_log = XFS_WRITEIO_LOG_LARGE;
945 }
946 } else {
947 readio_log = mp->m_readio_log;
948 writeio_log = mp->m_writeio_log;
949 }
950
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 if (sbp->sb_blocklog > readio_log) {
952 mp->m_readio_log = sbp->sb_blocklog;
953 } else {
954 mp->m_readio_log = readio_log;
955 }
956 mp->m_readio_blocks = 1 << (mp->m_readio_log - sbp->sb_blocklog);
957 if (sbp->sb_blocklog > writeio_log) {
958 mp->m_writeio_log = sbp->sb_blocklog;
959 } else {
960 mp->m_writeio_log = writeio_log;
961 }
962 mp->m_writeio_blocks = 1 << (mp->m_writeio_log - sbp->sb_blocklog);
Eric Sandeen0771fb42007-10-12 11:03:40 +1000963}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
Eric Sandeen0771fb42007-10-12 11:03:40 +1000965/*
966 * Set whether we're using inode alignment.
967 */
968STATIC void
969xfs_set_inoalignment(xfs_mount_t *mp)
970{
Eric Sandeen62118702008-03-06 13:44:28 +1100971 if (xfs_sb_version_hasalign(&mp->m_sb) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 mp->m_sb.sb_inoalignmt >=
973 XFS_B_TO_FSBT(mp, mp->m_inode_cluster_size))
974 mp->m_inoalign_mask = mp->m_sb.sb_inoalignmt - 1;
975 else
976 mp->m_inoalign_mask = 0;
977 /*
978 * If we are using stripe alignment, check whether
979 * the stripe unit is a multiple of the inode alignment
980 */
981 if (mp->m_dalign && mp->m_inoalign_mask &&
982 !(mp->m_dalign & mp->m_inoalign_mask))
983 mp->m_sinoalign = mp->m_dalign;
984 else
985 mp->m_sinoalign = 0;
Eric Sandeen0771fb42007-10-12 11:03:40 +1000986}
987
988/*
989 * Check that the data (and log if separate) are an ok size.
990 */
991STATIC int
Christoph Hellwig42490232008-08-13 16:49:32 +1000992xfs_check_sizes(xfs_mount_t *mp)
Eric Sandeen0771fb42007-10-12 11:03:40 +1000993{
994 xfs_buf_t *bp;
995 xfs_daddr_t d;
996 int error;
997
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 d = (xfs_daddr_t)XFS_FSB_TO_BB(mp, mp->m_sb.sb_dblocks);
999 if (XFS_BB_TO_FSB(mp, d) != mp->m_sb.sb_dblocks) {
1000 cmn_err(CE_WARN, "XFS: size check 1 failed");
Eric Sandeen657a4cf2010-04-30 03:42:49 +00001001 return XFS_ERROR(EFBIG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 }
1003 error = xfs_read_buf(mp, mp->m_ddev_targp,
1004 d - XFS_FSS_TO_BB(mp, 1),
1005 XFS_FSS_TO_BB(mp, 1), 0, &bp);
1006 if (!error) {
1007 xfs_buf_relse(bp);
1008 } else {
1009 cmn_err(CE_WARN, "XFS: size check 2 failed");
Eric Sandeen0771fb42007-10-12 11:03:40 +10001010 if (error == ENOSPC)
Eric Sandeen657a4cf2010-04-30 03:42:49 +00001011 error = XFS_ERROR(EFBIG);
Eric Sandeen0771fb42007-10-12 11:03:40 +10001012 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 }
1014
Christoph Hellwig42490232008-08-13 16:49:32 +10001015 if (mp->m_logdev_targp != mp->m_ddev_targp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 d = (xfs_daddr_t)XFS_FSB_TO_BB(mp, mp->m_sb.sb_logblocks);
1017 if (XFS_BB_TO_FSB(mp, d) != mp->m_sb.sb_logblocks) {
1018 cmn_err(CE_WARN, "XFS: size check 3 failed");
Eric Sandeen657a4cf2010-04-30 03:42:49 +00001019 return XFS_ERROR(EFBIG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 }
1021 error = xfs_read_buf(mp, mp->m_logdev_targp,
1022 d - XFS_FSB_TO_BB(mp, 1),
1023 XFS_FSB_TO_BB(mp, 1), 0, &bp);
1024 if (!error) {
1025 xfs_buf_relse(bp);
1026 } else {
1027 cmn_err(CE_WARN, "XFS: size check 3 failed");
Eric Sandeen0771fb42007-10-12 11:03:40 +10001028 if (error == ENOSPC)
Eric Sandeen657a4cf2010-04-30 03:42:49 +00001029 error = XFS_ERROR(EFBIG);
Eric Sandeen0771fb42007-10-12 11:03:40 +10001030 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 }
1032 }
Eric Sandeen0771fb42007-10-12 11:03:40 +10001033 return 0;
1034}
1035
1036/*
Christoph Hellwig7d095252009-06-08 15:33:32 +02001037 * Clear the quotaflags in memory and in the superblock.
1038 */
1039int
1040xfs_mount_reset_sbqflags(
1041 struct xfs_mount *mp)
1042{
1043 int error;
1044 struct xfs_trans *tp;
1045
1046 mp->m_qflags = 0;
1047
1048 /*
1049 * It is OK to look at sb_qflags here in mount path,
1050 * without m_sb_lock.
1051 */
1052 if (mp->m_sb.sb_qflags == 0)
1053 return 0;
1054 spin_lock(&mp->m_sb_lock);
1055 mp->m_sb.sb_qflags = 0;
1056 spin_unlock(&mp->m_sb_lock);
1057
1058 /*
1059 * If the fs is readonly, let the incore superblock run
1060 * with quotas off but don't flush the update out to disk
1061 */
1062 if (mp->m_flags & XFS_MOUNT_RDONLY)
1063 return 0;
1064
1065#ifdef QUOTADEBUG
1066 xfs_fs_cmn_err(CE_NOTE, mp, "Writing superblock quota changes");
1067#endif
1068
1069 tp = xfs_trans_alloc(mp, XFS_TRANS_QM_SBCHANGE);
1070 error = xfs_trans_reserve(tp, 0, mp->m_sb.sb_sectsize + 128, 0, 0,
1071 XFS_DEFAULT_LOG_COUNT);
1072 if (error) {
1073 xfs_trans_cancel(tp, 0);
1074 xfs_fs_cmn_err(CE_ALERT, mp,
1075 "xfs_mount_reset_sbqflags: Superblock update failed!");
1076 return error;
1077 }
1078
1079 xfs_mod_sb(tp, XFS_SB_QFLAGS);
1080 return xfs_trans_commit(tp, 0);
1081}
1082
Eric Sandeend5db0f92010-02-05 22:59:53 +00001083__uint64_t
1084xfs_default_resblks(xfs_mount_t *mp)
1085{
1086 __uint64_t resblks;
1087
1088 /*
Dave Chinner8babd8a2010-03-04 01:46:25 +00001089 * We default to 5% or 8192 fsbs of space reserved, whichever is
1090 * smaller. This is intended to cover concurrent allocation
1091 * transactions when we initially hit enospc. These each require a 4
1092 * block reservation. Hence by default we cover roughly 2000 concurrent
1093 * allocation reservations.
Eric Sandeend5db0f92010-02-05 22:59:53 +00001094 */
1095 resblks = mp->m_sb.sb_dblocks;
1096 do_div(resblks, 20);
Dave Chinner8babd8a2010-03-04 01:46:25 +00001097 resblks = min_t(__uint64_t, resblks, 8192);
Eric Sandeend5db0f92010-02-05 22:59:53 +00001098 return resblks;
1099}
1100
Christoph Hellwig7d095252009-06-08 15:33:32 +02001101/*
Eric Sandeen0771fb42007-10-12 11:03:40 +10001102 * This function does the following on an initial mount of a file system:
1103 * - reads the superblock from disk and init the mount struct
1104 * - if we're a 32-bit kernel, do a size check on the superblock
1105 * so we don't mount terabyte filesystems
1106 * - init mount struct realtime fields
1107 * - allocate inode hash table for fs
1108 * - init directory manager
1109 * - perform recovery and init the log manager
1110 */
1111int
1112xfs_mountfs(
Christoph Hellwig42490232008-08-13 16:49:32 +10001113 xfs_mount_t *mp)
Eric Sandeen0771fb42007-10-12 11:03:40 +10001114{
1115 xfs_sb_t *sbp = &(mp->m_sb);
1116 xfs_inode_t *rip;
Eric Sandeen0771fb42007-10-12 11:03:40 +10001117 __uint64_t resblks;
Christoph Hellwig7d095252009-06-08 15:33:32 +02001118 uint quotamount = 0;
1119 uint quotaflags = 0;
Eric Sandeen0771fb42007-10-12 11:03:40 +10001120 int error = 0;
1121
Eric Sandeen0771fb42007-10-12 11:03:40 +10001122 xfs_mount_common(mp, sbp);
1123
1124 /*
Eric Sandeene6957ea2008-04-10 12:19:34 +10001125 * Check for a mismatched features2 values. Older kernels
1126 * read & wrote into the wrong sb offset for sb_features2
1127 * on some platforms due to xfs_sb_t not being 64bit size aligned
1128 * when sb_features2 was added, which made older superblock
1129 * reading/writing routines swap it as a 64-bit value.
David Chinneree1c0902008-03-06 13:45:50 +11001130 *
Eric Sandeene6957ea2008-04-10 12:19:34 +10001131 * For backwards compatibility, we make both slots equal.
1132 *
1133 * If we detect a mismatched field, we OR the set bits into the
1134 * existing features2 field in case it has already been modified; we
1135 * don't want to lose any features. We then update the bad location
1136 * with the ORed value so that older kernels will see any features2
1137 * flags, and mark the two fields as needing updates once the
1138 * transaction subsystem is online.
David Chinneree1c0902008-03-06 13:45:50 +11001139 */
Eric Sandeene6957ea2008-04-10 12:19:34 +10001140 if (xfs_sb_has_mismatched_features2(sbp)) {
David Chinneree1c0902008-03-06 13:45:50 +11001141 cmn_err(CE_WARN,
1142 "XFS: correcting sb_features alignment problem");
1143 sbp->sb_features2 |= sbp->sb_bad_features2;
Eric Sandeene6957ea2008-04-10 12:19:34 +10001144 sbp->sb_bad_features2 = sbp->sb_features2;
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001145 mp->m_update_flags |= XFS_SB_FEATURES2 | XFS_SB_BAD_FEATURES2;
Eric Sandeene6957ea2008-04-10 12:19:34 +10001146
1147 /*
1148 * Re-check for ATTR2 in case it was found in bad_features2
1149 * slot.
1150 */
Tim Shimmin7c12f292008-04-30 18:15:28 +10001151 if (xfs_sb_version_hasattr2(&mp->m_sb) &&
1152 !(mp->m_flags & XFS_MOUNT_NOATTR2))
Eric Sandeene6957ea2008-04-10 12:19:34 +10001153 mp->m_flags |= XFS_MOUNT_ATTR2;
Tim Shimmin7c12f292008-04-30 18:15:28 +10001154 }
Eric Sandeene6957ea2008-04-10 12:19:34 +10001155
Tim Shimmin7c12f292008-04-30 18:15:28 +10001156 if (xfs_sb_version_hasattr2(&mp->m_sb) &&
1157 (mp->m_flags & XFS_MOUNT_NOATTR2)) {
1158 xfs_sb_version_removeattr2(&mp->m_sb);
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001159 mp->m_update_flags |= XFS_SB_FEATURES2;
Tim Shimmin7c12f292008-04-30 18:15:28 +10001160
1161 /* update sb_versionnum for the clearing of the morebits */
1162 if (!sbp->sb_features2)
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001163 mp->m_update_flags |= XFS_SB_VERSIONNUM;
David Chinneree1c0902008-03-06 13:45:50 +11001164 }
1165
1166 /*
Eric Sandeen0771fb42007-10-12 11:03:40 +10001167 * Check if sb_agblocks is aligned at stripe boundary
1168 * If sb_agblocks is NOT aligned turn off m_dalign since
1169 * allocator alignment is within an ag, therefore ag has
1170 * to be aligned at stripe boundary.
1171 */
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001172 error = xfs_update_alignment(mp);
Eric Sandeen0771fb42007-10-12 11:03:40 +10001173 if (error)
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001174 goto out;
Eric Sandeen0771fb42007-10-12 11:03:40 +10001175
1176 xfs_alloc_compute_maxlevels(mp);
1177 xfs_bmap_compute_maxlevels(mp, XFS_DATA_FORK);
1178 xfs_bmap_compute_maxlevels(mp, XFS_ATTR_FORK);
1179 xfs_ialloc_compute_maxlevels(mp);
1180
1181 xfs_set_maxicount(mp);
1182
1183 mp->m_maxioffset = xfs_max_file_offset(sbp->sb_blocklog);
1184
Christoph Hellwig27174202009-03-30 10:21:31 +02001185 error = xfs_uuid_mount(mp);
1186 if (error)
1187 goto out;
Eric Sandeen0771fb42007-10-12 11:03:40 +10001188
1189 /*
1190 * Set the minimum read and write sizes
1191 */
1192 xfs_set_rw_sizes(mp);
1193
1194 /*
1195 * Set the inode cluster size.
1196 * This may still be overridden by the file system
1197 * block size if it is larger than the chosen cluster size.
1198 */
1199 mp->m_inode_cluster_size = XFS_INODE_BIG_CLUSTER_SIZE;
1200
1201 /*
1202 * Set inode alignment fields
1203 */
1204 xfs_set_inoalignment(mp);
1205
1206 /*
1207 * Check that the data (and log if separate) are an ok size.
1208 */
Christoph Hellwig42490232008-08-13 16:49:32 +10001209 error = xfs_check_sizes(mp);
Eric Sandeen0771fb42007-10-12 11:03:40 +10001210 if (error)
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001211 goto out_remove_uuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
1213 /*
1214 * Initialize realtime fields in the mount structure
1215 */
Eric Sandeen0771fb42007-10-12 11:03:40 +10001216 error = xfs_rtmount_init(mp);
1217 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 cmn_err(CE_WARN, "XFS: RT mount failed");
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001219 goto out_remove_uuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 }
1221
1222 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 * Copies the low order bits of the timestamp and the randomly
1224 * set "sequence" number out of a UUID.
1225 */
1226 uuid_getnodeuniq(&sbp->sb_uuid, mp->m_fixedfsid);
1227
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 mp->m_dmevmask = 0; /* not persistent; set after each mount */
1229
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10001230 xfs_dir_mount(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
1232 /*
1233 * Initialize the attribute manager's entries.
1234 */
1235 mp->m_attr_magicpct = (mp->m_sb.sb_blocksize * 37) / 100;
1236
1237 /*
1238 * Initialize the precomputed transaction reservations values.
1239 */
1240 xfs_trans_init(mp);
1241
1242 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 * Allocate and initialize the per-ag data.
1244 */
Dave Chinner1c1c6eb2010-01-11 11:47:44 +00001245 spin_lock_init(&mp->m_perag_lock);
Dave Chinner9b98b6f2010-05-27 01:58:13 +00001246 INIT_RADIX_TREE(&mp->m_perag_tree, GFP_ATOMIC);
Dave Chinner1c1c6eb2010-01-11 11:47:44 +00001247 error = xfs_initialize_perag(mp, sbp->sb_agcount, &mp->m_maxagi);
1248 if (error) {
1249 cmn_err(CE_WARN, "XFS: Failed per-ag init: %d", error);
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001250 goto out_remove_uuid;
Dave Chinner1c1c6eb2010-01-11 11:47:44 +00001251 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001253 if (!sbp->sb_logblocks) {
1254 cmn_err(CE_WARN, "XFS: no log defined");
1255 XFS_ERROR_REPORT("xfs_mountfs", XFS_ERRLEVEL_LOW, mp);
1256 error = XFS_ERROR(EFSCORRUPTED);
1257 goto out_free_perag;
1258 }
1259
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 /*
1261 * log's mount-time initialization. Perform 1st part recovery if needed
1262 */
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001263 error = xfs_log_mount(mp, mp->m_logdev_targp,
1264 XFS_FSB_TO_DADDR(mp, sbp->sb_logstart),
1265 XFS_FSB_TO_BB(mp, sbp->sb_logblocks));
1266 if (error) {
1267 cmn_err(CE_WARN, "XFS: log mount failed");
1268 goto out_free_perag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 }
1270
1271 /*
David Chinner92821e22007-05-24 15:26:31 +10001272 * Now the log is mounted, we know if it was an unclean shutdown or
1273 * not. If it was, with the first phase of recovery has completed, we
1274 * have consistent AG blocks on disk. We have not recovered EFIs yet,
1275 * but they are recovered transactionally in the second recovery phase
1276 * later.
1277 *
1278 * Hence we can safely re-initialise incore superblock counters from
1279 * the per-ag data. These may not be correct if the filesystem was not
1280 * cleanly unmounted, so we need to wait for recovery to finish before
1281 * doing this.
1282 *
1283 * If the filesystem was cleanly unmounted, then we can trust the
1284 * values in the superblock to be correct and we don't need to do
1285 * anything here.
1286 *
1287 * If we are currently making the filesystem, the initialisation will
1288 * fail as the perag data is in an undefined state.
1289 */
David Chinner92821e22007-05-24 15:26:31 +10001290 if (xfs_sb_version_haslazysbcount(&mp->m_sb) &&
1291 !XFS_LAST_UNMOUNT_WAS_CLEAN(mp) &&
1292 !mp->m_sb.sb_inprogress) {
1293 error = xfs_initialize_perag_data(mp, sbp->sb_agcount);
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001294 if (error)
1295 goto out_free_perag;
David Chinner92821e22007-05-24 15:26:31 +10001296 }
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001297
David Chinner92821e22007-05-24 15:26:31 +10001298 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 * Get and sanity-check the root inode.
1300 * Save the pointer to it in the mount structure.
1301 */
Dave Chinner7b6259e2010-06-24 11:35:17 +10001302 error = xfs_iget(mp, NULL, sbp->sb_rootino, 0, XFS_ILOCK_EXCL, &rip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 if (error) {
1304 cmn_err(CE_WARN, "XFS: failed to read root inode");
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001305 goto out_log_dealloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 }
1307
1308 ASSERT(rip != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
1310 if (unlikely((rip->i_d.di_mode & S_IFMT) != S_IFDIR)) {
1311 cmn_err(CE_WARN, "XFS: corrupted root inode");
Nathan Scottb6574522006-06-09 15:29:40 +10001312 cmn_err(CE_WARN, "Device %s - root %llu is not a directory",
1313 XFS_BUFTARG_NAME(mp->m_ddev_targp),
1314 (unsigned long long)rip->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 xfs_iunlock(rip, XFS_ILOCK_EXCL);
1316 XFS_ERROR_REPORT("xfs_mountfs_int(2)", XFS_ERRLEVEL_LOW,
1317 mp);
1318 error = XFS_ERROR(EFSCORRUPTED);
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001319 goto out_rele_rip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 }
1321 mp->m_rootip = rip; /* save it */
1322
1323 xfs_iunlock(rip, XFS_ILOCK_EXCL);
1324
1325 /*
1326 * Initialize realtime inode pointers in the mount structure
1327 */
Eric Sandeen0771fb42007-10-12 11:03:40 +10001328 error = xfs_rtmount_inodes(mp);
1329 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 /*
1331 * Free up the root inode.
1332 */
1333 cmn_err(CE_WARN, "XFS: failed to read RT inodes");
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001334 goto out_rele_rip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 }
1336
1337 /*
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001338 * If this is a read-only mount defer the superblock updates until
1339 * the next remount into writeable mode. Otherwise we would never
1340 * perform the update e.g. for the root filesystem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 */
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001342 if (mp->m_update_flags && !(mp->m_flags & XFS_MOUNT_RDONLY)) {
1343 error = xfs_mount_log_sb(mp, mp->m_update_flags);
David Chinnere5720ee2008-04-10 12:21:18 +10001344 if (error) {
1345 cmn_err(CE_WARN, "XFS: failed to write sb changes");
Christoph Hellwigb93b6e42009-02-04 09:33:58 +01001346 goto out_rtunmount;
David Chinnere5720ee2008-04-10 12:21:18 +10001347 }
1348 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349
1350 /*
1351 * Initialise the XFS quota management subsystem for this mount
1352 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02001353 if (XFS_IS_QUOTA_RUNNING(mp)) {
1354 error = xfs_qm_newmount(mp, &quotamount, &quotaflags);
1355 if (error)
1356 goto out_rtunmount;
1357 } else {
1358 ASSERT(!XFS_IS_QUOTA_ON(mp));
1359
1360 /*
1361 * If a file system had quotas running earlier, but decided to
1362 * mount without -o uquota/pquota/gquota options, revoke the
1363 * quotachecked license.
1364 */
1365 if (mp->m_sb.sb_qflags & XFS_ALL_QUOTA_ACCT) {
1366 cmn_err(CE_NOTE,
1367 "XFS: resetting qflags for filesystem %s",
1368 mp->m_fsname);
1369
1370 error = xfs_mount_reset_sbqflags(mp);
1371 if (error)
1372 return error;
1373 }
1374 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
1376 /*
1377 * Finish recovering the file system. This part needed to be
1378 * delayed until after the root and real-time bitmap inodes
1379 * were consistently read in.
1380 */
Christoph Hellwig42490232008-08-13 16:49:32 +10001381 error = xfs_log_mount_finish(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 if (error) {
1383 cmn_err(CE_WARN, "XFS: log mount finish failed");
Christoph Hellwigb93b6e42009-02-04 09:33:58 +01001384 goto out_rtunmount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 }
1386
1387 /*
1388 * Complete the quota initialisation, post-log-replay component.
1389 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02001390 if (quotamount) {
1391 ASSERT(mp->m_qflags == 0);
1392 mp->m_qflags = quotaflags;
1393
1394 xfs_qm_mount_quotas(mp);
1395 }
1396
David Chinner84e1e992007-06-18 16:50:27 +10001397 /*
1398 * Now we are mounted, reserve a small amount of unused space for
1399 * privileged transactions. This is needed so that transaction
1400 * space required for critical operations can dip into this pool
1401 * when at ENOSPC. This is needed for operations like create with
1402 * attr, unwritten extent conversion at ENOSPC, etc. Data allocations
1403 * are not allowed to use this reserved space.
Dave Chinner8babd8a2010-03-04 01:46:25 +00001404 *
1405 * This may drive us straight to ENOSPC on mount, but that implies
1406 * we were already there on the last unmount. Warn if this occurs.
David Chinner84e1e992007-06-18 16:50:27 +10001407 */
Eric Sandeend5db0f92010-02-05 22:59:53 +00001408 if (!(mp->m_flags & XFS_MOUNT_RDONLY)) {
1409 resblks = xfs_default_resblks(mp);
1410 error = xfs_reserve_blocks(mp, &resblks, NULL);
1411 if (error)
1412 cmn_err(CE_WARN, "XFS: Unable to allocate reserve "
1413 "blocks. Continuing without a reserve pool.");
1414 }
David Chinner84e1e992007-06-18 16:50:27 +10001415
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 return 0;
1417
Christoph Hellwigb93b6e42009-02-04 09:33:58 +01001418 out_rtunmount:
1419 xfs_rtunmount_inodes(mp);
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001420 out_rele_rip:
Christoph Hellwig43355092008-03-27 18:01:08 +11001421 IRELE(rip);
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001422 out_log_dealloc:
Christoph Hellwig21b699c2009-03-16 08:19:29 +01001423 xfs_log_unmount(mp);
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001424 out_free_perag:
Christoph Hellwigff4f0382008-08-13 16:50:47 +10001425 xfs_free_perag(mp);
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001426 out_remove_uuid:
Christoph Hellwig27174202009-03-30 10:21:31 +02001427 xfs_uuid_unmount(mp);
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001428 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 return error;
1430}
1431
1432/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 * This flushes out the inodes,dquots and the superblock, unmounts the
1434 * log and makes sure that incore structures are freed.
1435 */
Christoph Hellwig41b5c2e2008-08-13 16:49:57 +10001436void
1437xfs_unmountfs(
1438 struct xfs_mount *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439{
Christoph Hellwig41b5c2e2008-08-13 16:49:57 +10001440 __uint64_t resblks;
1441 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
Christoph Hellwig7d095252009-06-08 15:33:32 +02001443 xfs_qm_unmount_quotas(mp);
Christoph Hellwigb93b6e42009-02-04 09:33:58 +01001444 xfs_rtunmount_inodes(mp);
Christoph Hellwig77508ec2008-08-13 16:49:04 +10001445 IRELE(mp->m_rootip);
1446
David Chinner641c56f2007-06-18 16:50:17 +10001447 /*
1448 * We can potentially deadlock here if we have an inode cluster
Malcolm Parsons9da096f2009-03-29 09:55:42 +02001449 * that has been freed has its buffer still pinned in memory because
David Chinner641c56f2007-06-18 16:50:17 +10001450 * the transaction is still sitting in a iclog. The stale inodes
1451 * on that buffer will have their flush locks held until the
1452 * transaction hits the disk and the callbacks run. the inode
1453 * flush takes the flush lock unconditionally and with nothing to
1454 * push out the iclog we will never get that unlocked. hence we
1455 * need to force the log first.
1456 */
Christoph Hellwiga14a3482010-01-19 09:56:46 +00001457 xfs_log_force(mp, XFS_LOG_SYNC);
Dave Chinnerc8543632010-02-06 12:39:36 +11001458
1459 /*
1460 * Do a delwri reclaim pass first so that as many dirty inodes are
1461 * queued up for IO as possible. Then flush the buffers before making
1462 * a synchronous path to catch all the remaining inodes are reclaimed.
1463 * This makes the reclaim process as quick as possible by avoiding
1464 * synchronous writeout and blocking on inodes already in the delwri
1465 * state as much as possible.
1466 */
1467 xfs_reclaim_inodes(mp, 0);
1468 XFS_bflush(mp->m_ddev_targp);
1469 xfs_reclaim_inodes(mp, SYNC_WAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
Christoph Hellwig7d095252009-06-08 15:33:32 +02001471 xfs_qm_unmount(mp);
Lachlan McIlroya357a122008-10-30 16:53:25 +11001472
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 /*
1474 * Flush out the log synchronously so that we know for sure
1475 * that nothing is pinned. This is important because bflush()
1476 * will skip pinned buffers.
1477 */
Christoph Hellwiga14a3482010-01-19 09:56:46 +00001478 xfs_log_force(mp, XFS_LOG_SYNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479
1480 xfs_binval(mp->m_ddev_targp);
1481 if (mp->m_rtdev_targp) {
1482 xfs_binval(mp->m_rtdev_targp);
1483 }
1484
David Chinner84e1e992007-06-18 16:50:27 +10001485 /*
1486 * Unreserve any blocks we have so that when we unmount we don't account
1487 * the reserved free space as used. This is really only necessary for
1488 * lazy superblock counting because it trusts the incore superblock
Malcolm Parsons9da096f2009-03-29 09:55:42 +02001489 * counters to be absolutely correct on clean unmount.
David Chinner84e1e992007-06-18 16:50:27 +10001490 *
1491 * We don't bother correcting this elsewhere for lazy superblock
1492 * counting because on mount of an unclean filesystem we reconstruct the
1493 * correct counter value and this is irrelevant.
1494 *
1495 * For non-lazy counter filesystems, this doesn't matter at all because
1496 * we only every apply deltas to the superblock and hence the incore
1497 * value does not matter....
1498 */
1499 resblks = 0;
David Chinner714082b2008-04-10 12:20:03 +10001500 error = xfs_reserve_blocks(mp, &resblks, NULL);
1501 if (error)
1502 cmn_err(CE_WARN, "XFS: Unable to free reserved block pool. "
1503 "Freespace may not be correct on next mount.");
1504
David Chinnere5720ee2008-04-10 12:21:18 +10001505 error = xfs_log_sbcount(mp, 1);
1506 if (error)
1507 cmn_err(CE_WARN, "XFS: Unable to update superblock counters. "
1508 "Freespace may not be correct on next mount.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 xfs_unmountfs_writesb(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 xfs_unmountfs_wait(mp); /* wait for async bufs */
Christoph Hellwig21b699c2009-03-16 08:19:29 +01001511 xfs_log_unmount_write(mp);
1512 xfs_log_unmount(mp);
Christoph Hellwig27174202009-03-30 10:21:31 +02001513 xfs_uuid_unmount(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
Christoph Hellwig1550d0b2008-08-13 16:17:37 +10001515#if defined(DEBUG)
Christoph Hellwig0ce4cfd2007-08-30 17:20:53 +10001516 xfs_errortag_clearall(mp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517#endif
Christoph Hellwigff4f0382008-08-13 16:50:47 +10001518 xfs_free_perag(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519}
1520
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10001521STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522xfs_unmountfs_wait(xfs_mount_t *mp)
1523{
1524 if (mp->m_logdev_targp != mp->m_ddev_targp)
1525 xfs_wait_buftarg(mp->m_logdev_targp);
1526 if (mp->m_rtdev_targp)
1527 xfs_wait_buftarg(mp->m_rtdev_targp);
1528 xfs_wait_buftarg(mp->m_ddev_targp);
1529}
1530
1531int
David Chinner92821e22007-05-24 15:26:31 +10001532xfs_fs_writable(xfs_mount_t *mp)
1533{
Christoph Hellwigb267ce92007-08-30 17:21:30 +10001534 return !(xfs_test_for_freeze(mp) || XFS_FORCED_SHUTDOWN(mp) ||
Christoph Hellwigbd186aa2007-08-30 17:21:12 +10001535 (mp->m_flags & XFS_MOUNT_RDONLY));
David Chinner92821e22007-05-24 15:26:31 +10001536}
1537
1538/*
1539 * xfs_log_sbcount
1540 *
1541 * Called either periodically to keep the on disk superblock values
1542 * roughly up to date or from unmount to make sure the values are
1543 * correct on a clean unmount.
1544 *
1545 * Note this code can be called during the process of freezing, so
1546 * we may need to use the transaction allocator which does not not
1547 * block when the transaction subsystem is in its frozen state.
1548 */
1549int
1550xfs_log_sbcount(
1551 xfs_mount_t *mp,
1552 uint sync)
1553{
1554 xfs_trans_t *tp;
1555 int error;
1556
1557 if (!xfs_fs_writable(mp))
1558 return 0;
1559
Christoph Hellwigd4d90b52008-04-22 17:34:37 +10001560 xfs_icsb_sync_counters(mp, 0);
David Chinner92821e22007-05-24 15:26:31 +10001561
1562 /*
1563 * we don't need to do this if we are updating the superblock
1564 * counters on every modification.
1565 */
1566 if (!xfs_sb_version_haslazysbcount(&mp->m_sb))
1567 return 0;
1568
Christoph Hellwig80641dc2009-10-19 04:00:03 +00001569 tp = _xfs_trans_alloc(mp, XFS_TRANS_SB_COUNT, KM_SLEEP);
David Chinner92821e22007-05-24 15:26:31 +10001570 error = xfs_trans_reserve(tp, 0, mp->m_sb.sb_sectsize + 128, 0, 0,
1571 XFS_DEFAULT_LOG_COUNT);
1572 if (error) {
1573 xfs_trans_cancel(tp, 0);
1574 return error;
1575 }
1576
1577 xfs_mod_sb(tp, XFS_SB_IFREE | XFS_SB_ICOUNT | XFS_SB_FDBLOCKS);
1578 if (sync)
1579 xfs_trans_set_sync(tp);
David Chinnere5720ee2008-04-10 12:21:18 +10001580 error = xfs_trans_commit(tp, 0);
1581 return error;
David Chinner92821e22007-05-24 15:26:31 +10001582}
1583
1584int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585xfs_unmountfs_writesb(xfs_mount_t *mp)
1586{
1587 xfs_buf_t *sbp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 int error = 0;
1589
1590 /*
1591 * skip superblock write if fs is read-only, or
1592 * if we are doing a forced umount.
1593 */
Christoph Hellwigbd186aa2007-08-30 17:21:12 +10001594 if (!((mp->m_flags & XFS_MOUNT_RDONLY) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 XFS_FORCED_SHUTDOWN(mp))) {
David Chinner8d280b92006-03-14 13:13:09 +11001596
David Chinner92821e22007-05-24 15:26:31 +10001597 sbp = xfs_getsb(mp, 0);
David Chinner8d280b92006-03-14 13:13:09 +11001598
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 XFS_BUF_UNDONE(sbp);
1600 XFS_BUF_UNREAD(sbp);
1601 XFS_BUF_UNDELAYWRITE(sbp);
1602 XFS_BUF_WRITE(sbp);
1603 XFS_BUF_UNASYNC(sbp);
1604 ASSERT(XFS_BUF_TARGET(sbp) == mp->m_ddev_targp);
1605 xfsbdstrat(mp, sbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 error = xfs_iowait(sbp);
1607 if (error)
1608 xfs_ioerror_alert("xfs_unmountfs_writesb",
1609 mp, sbp, XFS_BUF_ADDR(sbp));
David Chinner92821e22007-05-24 15:26:31 +10001610 xfs_buf_relse(sbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 }
Jesper Juhl014c2542006-01-15 02:37:08 +01001612 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613}
1614
1615/*
1616 * xfs_mod_sb() can be used to copy arbitrary changes to the
1617 * in-core superblock into the superblock buffer to be logged.
1618 * It does not provide the higher level of locking that is
1619 * needed to protect the in-core superblock from concurrent
1620 * access.
1621 */
1622void
1623xfs_mod_sb(xfs_trans_t *tp, __int64_t fields)
1624{
1625 xfs_buf_t *bp;
1626 int first;
1627 int last;
1628 xfs_mount_t *mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 xfs_sb_field_t f;
1630
1631 ASSERT(fields);
1632 if (!fields)
1633 return;
1634 mp = tp->t_mountp;
1635 bp = xfs_trans_getsb(tp, mp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 first = sizeof(xfs_sb_t);
1637 last = 0;
1638
1639 /* translate/copy */
1640
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +10001641 xfs_sb_to_disk(XFS_BUF_TO_SBP(bp), &mp->m_sb, fields);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642
1643 /* find modified range */
Dave Chinner587aa0f2010-01-20 12:04:53 +11001644 f = (xfs_sb_field_t)xfs_highbit64((__uint64_t)fields);
1645 ASSERT((1LL << f) & XFS_SB_MOD_BITS);
1646 last = xfs_sb_info[f + 1].offset - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647
1648 f = (xfs_sb_field_t)xfs_lowbit64((__uint64_t)fields);
1649 ASSERT((1LL << f) & XFS_SB_MOD_BITS);
1650 first = xfs_sb_info[f].offset;
1651
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 xfs_trans_log_buf(tp, bp, first, last);
1653}
Yingping Lud210a282006-06-09 14:55:18 +10001654
Yingping Lud210a282006-06-09 14:55:18 +10001655
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656/*
1657 * xfs_mod_incore_sb_unlocked() is a utility routine common used to apply
1658 * a delta to a specified field in the in-core superblock. Simply
1659 * switch on the field indicated and apply the delta to that field.
1660 * Fields are not allowed to dip below zero, so if the delta would
1661 * do this do not apply it and return EINVAL.
1662 *
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001663 * The m_sb_lock must be held when this routine is called.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 */
Eric Sandeend96f8f82009-07-02 00:09:33 -05001665STATIC int
David Chinner20f4ebf2007-02-10 18:36:10 +11001666xfs_mod_incore_sb_unlocked(
1667 xfs_mount_t *mp,
1668 xfs_sb_field_t field,
1669 int64_t delta,
1670 int rsvd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671{
1672 int scounter; /* short counter for 32 bit fields */
1673 long long lcounter; /* long counter for 64 bit fields */
1674 long long res_used, rem;
1675
1676 /*
1677 * With the in-core superblock spin lock held, switch
1678 * on the indicated field. Apply the delta to the
1679 * proper field. If the fields value would dip below
1680 * 0, then do not apply the delta and return EINVAL.
1681 */
1682 switch (field) {
1683 case XFS_SBS_ICOUNT:
1684 lcounter = (long long)mp->m_sb.sb_icount;
1685 lcounter += delta;
1686 if (lcounter < 0) {
1687 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001688 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 }
1690 mp->m_sb.sb_icount = lcounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001691 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 case XFS_SBS_IFREE:
1693 lcounter = (long long)mp->m_sb.sb_ifree;
1694 lcounter += delta;
1695 if (lcounter < 0) {
1696 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001697 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 }
1699 mp->m_sb.sb_ifree = lcounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001700 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 case XFS_SBS_FDBLOCKS:
David Chinner4be536d2006-09-07 14:26:50 +10001702 lcounter = (long long)
1703 mp->m_sb.sb_fdblocks - XFS_ALLOC_SET_ASIDE(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 res_used = (long long)(mp->m_resblks - mp->m_resblks_avail);
1705
1706 if (delta > 0) { /* Putting blocks back */
1707 if (res_used > delta) {
1708 mp->m_resblks_avail += delta;
1709 } else {
1710 rem = delta - res_used;
1711 mp->m_resblks_avail = mp->m_resblks;
1712 lcounter += rem;
1713 }
1714 } else { /* Taking blocks away */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 lcounter += delta;
Dave Chinner8babd8a2010-03-04 01:46:25 +00001716 if (lcounter >= 0) {
1717 mp->m_sb.sb_fdblocks = lcounter +
1718 XFS_ALLOC_SET_ASIDE(mp);
1719 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 }
Dave Chinner8babd8a2010-03-04 01:46:25 +00001721
1722 /*
1723 * We are out of blocks, use any available reserved
1724 * blocks if were allowed to.
1725 */
1726 if (!rsvd)
1727 return XFS_ERROR(ENOSPC);
1728
1729 lcounter = (long long)mp->m_resblks_avail + delta;
1730 if (lcounter >= 0) {
1731 mp->m_resblks_avail = lcounter;
1732 return 0;
1733 }
1734 printk_once(KERN_WARNING
1735 "Filesystem \"%s\": reserve blocks depleted! "
1736 "Consider increasing reserve pool size.",
1737 mp->m_fsname);
1738 return XFS_ERROR(ENOSPC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 }
1740
David Chinner4be536d2006-09-07 14:26:50 +10001741 mp->m_sb.sb_fdblocks = lcounter + XFS_ALLOC_SET_ASIDE(mp);
Jesper Juhl014c2542006-01-15 02:37:08 +01001742 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 case XFS_SBS_FREXTENTS:
1744 lcounter = (long long)mp->m_sb.sb_frextents;
1745 lcounter += delta;
1746 if (lcounter < 0) {
Jesper Juhl014c2542006-01-15 02:37:08 +01001747 return XFS_ERROR(ENOSPC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 }
1749 mp->m_sb.sb_frextents = lcounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001750 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 case XFS_SBS_DBLOCKS:
1752 lcounter = (long long)mp->m_sb.sb_dblocks;
1753 lcounter += delta;
1754 if (lcounter < 0) {
1755 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001756 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 }
1758 mp->m_sb.sb_dblocks = lcounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001759 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 case XFS_SBS_AGCOUNT:
1761 scounter = mp->m_sb.sb_agcount;
1762 scounter += delta;
1763 if (scounter < 0) {
1764 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001765 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 }
1767 mp->m_sb.sb_agcount = scounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001768 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 case XFS_SBS_IMAX_PCT:
1770 scounter = mp->m_sb.sb_imax_pct;
1771 scounter += delta;
1772 if (scounter < 0) {
1773 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001774 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 }
1776 mp->m_sb.sb_imax_pct = scounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001777 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 case XFS_SBS_REXTSIZE:
1779 scounter = mp->m_sb.sb_rextsize;
1780 scounter += delta;
1781 if (scounter < 0) {
1782 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001783 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 }
1785 mp->m_sb.sb_rextsize = scounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001786 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 case XFS_SBS_RBMBLOCKS:
1788 scounter = mp->m_sb.sb_rbmblocks;
1789 scounter += delta;
1790 if (scounter < 0) {
1791 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001792 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 }
1794 mp->m_sb.sb_rbmblocks = scounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001795 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 case XFS_SBS_RBLOCKS:
1797 lcounter = (long long)mp->m_sb.sb_rblocks;
1798 lcounter += delta;
1799 if (lcounter < 0) {
1800 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001801 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 }
1803 mp->m_sb.sb_rblocks = lcounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001804 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 case XFS_SBS_REXTENTS:
1806 lcounter = (long long)mp->m_sb.sb_rextents;
1807 lcounter += delta;
1808 if (lcounter < 0) {
1809 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001810 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 }
1812 mp->m_sb.sb_rextents = lcounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001813 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 case XFS_SBS_REXTSLOG:
1815 scounter = mp->m_sb.sb_rextslog;
1816 scounter += delta;
1817 if (scounter < 0) {
1818 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001819 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 }
1821 mp->m_sb.sb_rextslog = scounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001822 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 default:
1824 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001825 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 }
1827}
1828
1829/*
1830 * xfs_mod_incore_sb() is used to change a field in the in-core
1831 * superblock structure by the specified delta. This modification
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001832 * is protected by the m_sb_lock. Just use the xfs_mod_incore_sb_unlocked()
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 * routine to do the work.
1834 */
1835int
David Chinner20f4ebf2007-02-10 18:36:10 +11001836xfs_mod_incore_sb(
1837 xfs_mount_t *mp,
1838 xfs_sb_field_t field,
1839 int64_t delta,
1840 int rsvd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 int status;
1843
David Chinner8d280b92006-03-14 13:13:09 +11001844 /* check for per-cpu counters */
1845 switch (field) {
1846#ifdef HAVE_PERCPU_SB
1847 case XFS_SBS_ICOUNT:
1848 case XFS_SBS_IFREE:
1849 case XFS_SBS_FDBLOCKS:
1850 if (!(mp->m_flags & XFS_MOUNT_NO_PERCPU_SB)) {
1851 status = xfs_icsb_modify_counters(mp, field,
1852 delta, rsvd);
1853 break;
1854 }
1855 /* FALLTHROUGH */
1856#endif
1857 default:
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001858 spin_lock(&mp->m_sb_lock);
David Chinner8d280b92006-03-14 13:13:09 +11001859 status = xfs_mod_incore_sb_unlocked(mp, field, delta, rsvd);
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001860 spin_unlock(&mp->m_sb_lock);
David Chinner8d280b92006-03-14 13:13:09 +11001861 break;
1862 }
1863
Jesper Juhl014c2542006-01-15 02:37:08 +01001864 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865}
1866
1867/*
1868 * xfs_mod_incore_sb_batch() is used to change more than one field
1869 * in the in-core superblock structure at a time. This modification
1870 * is protected by a lock internal to this module. The fields and
1871 * changes to those fields are specified in the array of xfs_mod_sb
1872 * structures passed in.
1873 *
1874 * Either all of the specified deltas will be applied or none of
1875 * them will. If any modified field dips below 0, then all modifications
1876 * will be backed out and EINVAL will be returned.
1877 */
1878int
1879xfs_mod_incore_sb_batch(xfs_mount_t *mp, xfs_mod_sb_t *msb, uint nmsb, int rsvd)
1880{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 int status=0;
1882 xfs_mod_sb_t *msbp;
1883
1884 /*
1885 * Loop through the array of mod structures and apply each
1886 * individually. If any fail, then back out all those
1887 * which have already been applied. Do all of this within
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001888 * the scope of the m_sb_lock so that all of the changes will
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 * be atomic.
1890 */
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001891 spin_lock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 msbp = &msb[0];
1893 for (msbp = &msbp[0]; msbp < (msb + nmsb); msbp++) {
1894 /*
1895 * Apply the delta at index n. If it fails, break
1896 * from the loop so we'll fall into the undo loop
1897 * below.
1898 */
David Chinner8d280b92006-03-14 13:13:09 +11001899 switch (msbp->msb_field) {
1900#ifdef HAVE_PERCPU_SB
1901 case XFS_SBS_ICOUNT:
1902 case XFS_SBS_IFREE:
1903 case XFS_SBS_FDBLOCKS:
1904 if (!(mp->m_flags & XFS_MOUNT_NO_PERCPU_SB)) {
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001905 spin_unlock(&mp->m_sb_lock);
David Chinner20b64282007-02-10 18:35:09 +11001906 status = xfs_icsb_modify_counters(mp,
David Chinner8d280b92006-03-14 13:13:09 +11001907 msbp->msb_field,
1908 msbp->msb_delta, rsvd);
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001909 spin_lock(&mp->m_sb_lock);
David Chinner8d280b92006-03-14 13:13:09 +11001910 break;
1911 }
1912 /* FALLTHROUGH */
1913#endif
1914 default:
1915 status = xfs_mod_incore_sb_unlocked(mp,
1916 msbp->msb_field,
1917 msbp->msb_delta, rsvd);
1918 break;
1919 }
1920
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 if (status != 0) {
1922 break;
1923 }
1924 }
1925
1926 /*
1927 * If we didn't complete the loop above, then back out
1928 * any changes made to the superblock. If you add code
1929 * between the loop above and here, make sure that you
1930 * preserve the value of status. Loop back until
1931 * we step below the beginning of the array. Make sure
1932 * we don't touch anything back there.
1933 */
1934 if (status != 0) {
1935 msbp--;
1936 while (msbp >= msb) {
David Chinner8d280b92006-03-14 13:13:09 +11001937 switch (msbp->msb_field) {
1938#ifdef HAVE_PERCPU_SB
1939 case XFS_SBS_ICOUNT:
1940 case XFS_SBS_IFREE:
1941 case XFS_SBS_FDBLOCKS:
1942 if (!(mp->m_flags & XFS_MOUNT_NO_PERCPU_SB)) {
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001943 spin_unlock(&mp->m_sb_lock);
David Chinner20b64282007-02-10 18:35:09 +11001944 status = xfs_icsb_modify_counters(mp,
David Chinner8d280b92006-03-14 13:13:09 +11001945 msbp->msb_field,
1946 -(msbp->msb_delta),
1947 rsvd);
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001948 spin_lock(&mp->m_sb_lock);
David Chinner8d280b92006-03-14 13:13:09 +11001949 break;
1950 }
1951 /* FALLTHROUGH */
1952#endif
1953 default:
1954 status = xfs_mod_incore_sb_unlocked(mp,
1955 msbp->msb_field,
1956 -(msbp->msb_delta),
1957 rsvd);
1958 break;
1959 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 ASSERT(status == 0);
1961 msbp--;
1962 }
1963 }
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001964 spin_unlock(&mp->m_sb_lock);
Jesper Juhl014c2542006-01-15 02:37:08 +01001965 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966}
1967
1968/*
1969 * xfs_getsb() is called to obtain the buffer for the superblock.
1970 * The buffer is returned locked and read in from disk.
1971 * The buffer should be released with a call to xfs_brelse().
1972 *
1973 * If the flags parameter is BUF_TRYLOCK, then we'll only return
1974 * the superblock buffer if it can be locked without sleeping.
1975 * If it can't then we'll return NULL.
1976 */
1977xfs_buf_t *
1978xfs_getsb(
1979 xfs_mount_t *mp,
1980 int flags)
1981{
1982 xfs_buf_t *bp;
1983
1984 ASSERT(mp->m_sb_bp != NULL);
1985 bp = mp->m_sb_bp;
Christoph Hellwig0cadda12010-01-19 09:56:44 +00001986 if (flags & XBF_TRYLOCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 if (!XFS_BUF_CPSEMA(bp)) {
1988 return NULL;
1989 }
1990 } else {
1991 XFS_BUF_PSEMA(bp, PRIBIO);
1992 }
1993 XFS_BUF_HOLD(bp);
1994 ASSERT(XFS_BUF_ISDONE(bp));
Jesper Juhl014c2542006-01-15 02:37:08 +01001995 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996}
1997
1998/*
1999 * Used to free the superblock along various error paths.
2000 */
2001void
2002xfs_freesb(
2003 xfs_mount_t *mp)
2004{
2005 xfs_buf_t *bp;
2006
2007 /*
2008 * Use xfs_getsb() so that the buffer will be locked
2009 * when we call xfs_buf_relse().
2010 */
2011 bp = xfs_getsb(mp, 0);
2012 XFS_BUF_UNMANAGE(bp);
2013 xfs_buf_relse(bp);
2014 mp->m_sb_bp = NULL;
2015}
2016
2017/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 * Used to log changes to the superblock unit and width fields which could
Eric Sandeene6957ea2008-04-10 12:19:34 +10002019 * be altered by the mount options, as well as any potential sb_features2
2020 * fixup. Only the first superblock is updated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 */
Christoph Hellwig7884bc82009-01-19 02:04:07 +01002022int
David Chinneree1c0902008-03-06 13:45:50 +11002023xfs_mount_log_sb(
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 xfs_mount_t *mp,
2025 __int64_t fields)
2026{
2027 xfs_trans_t *tp;
David Chinnere5720ee2008-04-10 12:21:18 +10002028 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029
David Chinneree1c0902008-03-06 13:45:50 +11002030 ASSERT(fields & (XFS_SB_UNIT | XFS_SB_WIDTH | XFS_SB_UUID |
David Chinner4b166de2008-05-20 11:30:27 +10002031 XFS_SB_FEATURES2 | XFS_SB_BAD_FEATURES2 |
2032 XFS_SB_VERSIONNUM));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033
2034 tp = xfs_trans_alloc(mp, XFS_TRANS_SB_UNIT);
David Chinnere5720ee2008-04-10 12:21:18 +10002035 error = xfs_trans_reserve(tp, 0, mp->m_sb.sb_sectsize + 128, 0, 0,
2036 XFS_DEFAULT_LOG_COUNT);
2037 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 xfs_trans_cancel(tp, 0);
David Chinnere5720ee2008-04-10 12:21:18 +10002039 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 }
2041 xfs_mod_sb(tp, fields);
David Chinnere5720ee2008-04-10 12:21:18 +10002042 error = xfs_trans_commit(tp, 0);
2043 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044}
David Chinner8d280b92006-03-14 13:13:09 +11002045
Christoph Hellwigdda35b82010-02-15 09:44:46 +00002046/*
2047 * If the underlying (data/log/rt) device is readonly, there are some
2048 * operations that cannot proceed.
2049 */
2050int
2051xfs_dev_is_read_only(
2052 struct xfs_mount *mp,
2053 char *message)
2054{
2055 if (xfs_readonly_buftarg(mp->m_ddev_targp) ||
2056 xfs_readonly_buftarg(mp->m_logdev_targp) ||
2057 (mp->m_rtdev_targp && xfs_readonly_buftarg(mp->m_rtdev_targp))) {
2058 cmn_err(CE_NOTE,
2059 "XFS: %s required on read-only device.", message);
2060 cmn_err(CE_NOTE,
2061 "XFS: write access unavailable, cannot proceed.");
2062 return EROFS;
2063 }
2064 return 0;
2065}
David Chinner8d280b92006-03-14 13:13:09 +11002066
2067#ifdef HAVE_PERCPU_SB
2068/*
2069 * Per-cpu incore superblock counters
2070 *
2071 * Simple concept, difficult implementation
2072 *
2073 * Basically, replace the incore superblock counters with a distributed per cpu
2074 * counter for contended fields (e.g. free block count).
2075 *
2076 * Difficulties arise in that the incore sb is used for ENOSPC checking, and
2077 * hence needs to be accurately read when we are running low on space. Hence
2078 * there is a method to enable and disable the per-cpu counters based on how
2079 * much "stuff" is available in them.
2080 *
2081 * Basically, a counter is enabled if there is enough free resource to justify
2082 * running a per-cpu fast-path. If the per-cpu counter runs out (i.e. a local
2083 * ENOSPC), then we disable the counters to synchronise all callers and
2084 * re-distribute the available resources.
2085 *
2086 * If, once we redistributed the available resources, we still get a failure,
2087 * we disable the per-cpu counter and go through the slow path.
2088 *
2089 * The slow path is the current xfs_mod_incore_sb() function. This means that
Malcolm Parsons9da096f2009-03-29 09:55:42 +02002090 * when we disable a per-cpu counter, we need to drain its resources back to
David Chinner8d280b92006-03-14 13:13:09 +11002091 * the global superblock. We do this after disabling the counter to prevent
2092 * more threads from queueing up on the counter.
2093 *
2094 * Essentially, this means that we still need a lock in the fast path to enable
2095 * synchronisation between the global counters and the per-cpu counters. This
2096 * is not a problem because the lock will be local to a CPU almost all the time
2097 * and have little contention except when we get to ENOSPC conditions.
2098 *
2099 * Basically, this lock becomes a barrier that enables us to lock out the fast
2100 * path while we do things like enabling and disabling counters and
2101 * synchronising the counters.
2102 *
2103 * Locking rules:
2104 *
Eric Sandeen3685c2a2007-10-11 17:42:32 +10002105 * 1. m_sb_lock before picking up per-cpu locks
David Chinner8d280b92006-03-14 13:13:09 +11002106 * 2. per-cpu locks always picked up via for_each_online_cpu() order
Eric Sandeen3685c2a2007-10-11 17:42:32 +10002107 * 3. accurate counter sync requires m_sb_lock + per cpu locks
David Chinner8d280b92006-03-14 13:13:09 +11002108 * 4. modifying per-cpu counters requires holding per-cpu lock
Eric Sandeen3685c2a2007-10-11 17:42:32 +10002109 * 5. modifying global counters requires holding m_sb_lock
2110 * 6. enabling or disabling a counter requires holding the m_sb_lock
David Chinner8d280b92006-03-14 13:13:09 +11002111 * and _none_ of the per-cpu locks.
2112 *
2113 * Disabled counters are only ever re-enabled by a balance operation
2114 * that results in more free resources per CPU than a given threshold.
2115 * To ensure counters don't remain disabled, they are rebalanced when
2116 * the global resource goes above a higher threshold (i.e. some hysteresis
2117 * is present to prevent thrashing).
David Chinner8d280b92006-03-14 13:13:09 +11002118 */
David Chinnere8234a62006-03-14 13:23:52 +11002119
Chandra Seetharaman5a67e4c2006-06-27 02:54:11 -07002120#ifdef CONFIG_HOTPLUG_CPU
David Chinnere8234a62006-03-14 13:23:52 +11002121/*
2122 * hot-plug CPU notifier support.
2123 *
Chandra Seetharaman5a67e4c2006-06-27 02:54:11 -07002124 * We need a notifier per filesystem as we need to be able to identify
2125 * the filesystem to balance the counters out. This is achieved by
2126 * having a notifier block embedded in the xfs_mount_t and doing pointer
2127 * magic to get the mount pointer from the notifier block address.
David Chinnere8234a62006-03-14 13:23:52 +11002128 */
2129STATIC int
2130xfs_icsb_cpu_notify(
2131 struct notifier_block *nfb,
2132 unsigned long action,
2133 void *hcpu)
2134{
2135 xfs_icsb_cnts_t *cntp;
2136 xfs_mount_t *mp;
David Chinnere8234a62006-03-14 13:23:52 +11002137
2138 mp = (xfs_mount_t *)container_of(nfb, xfs_mount_t, m_icsb_notifier);
2139 cntp = (xfs_icsb_cnts_t *)
2140 per_cpu_ptr(mp->m_sb_cnts, (unsigned long)hcpu);
2141 switch (action) {
2142 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07002143 case CPU_UP_PREPARE_FROZEN:
David Chinnere8234a62006-03-14 13:23:52 +11002144 /* Easy Case - initialize the area and locks, and
2145 * then rebalance when online does everything else for us. */
David Chinner01e1b692006-03-14 13:29:16 +11002146 memset(cntp, 0, sizeof(xfs_icsb_cnts_t));
David Chinnere8234a62006-03-14 13:23:52 +11002147 break;
2148 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07002149 case CPU_ONLINE_FROZEN:
David Chinner03135cf2007-02-10 18:35:15 +11002150 xfs_icsb_lock(mp);
Christoph Hellwig45af6c62008-04-22 17:34:44 +10002151 xfs_icsb_balance_counter(mp, XFS_SBS_ICOUNT, 0);
2152 xfs_icsb_balance_counter(mp, XFS_SBS_IFREE, 0);
2153 xfs_icsb_balance_counter(mp, XFS_SBS_FDBLOCKS, 0);
David Chinner03135cf2007-02-10 18:35:15 +11002154 xfs_icsb_unlock(mp);
David Chinnere8234a62006-03-14 13:23:52 +11002155 break;
2156 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07002157 case CPU_DEAD_FROZEN:
David Chinnere8234a62006-03-14 13:23:52 +11002158 /* Disable all the counters, then fold the dead cpu's
2159 * count into the total on the global superblock and
2160 * re-enable the counters. */
David Chinner03135cf2007-02-10 18:35:15 +11002161 xfs_icsb_lock(mp);
Eric Sandeen3685c2a2007-10-11 17:42:32 +10002162 spin_lock(&mp->m_sb_lock);
David Chinnere8234a62006-03-14 13:23:52 +11002163 xfs_icsb_disable_counter(mp, XFS_SBS_ICOUNT);
2164 xfs_icsb_disable_counter(mp, XFS_SBS_IFREE);
2165 xfs_icsb_disable_counter(mp, XFS_SBS_FDBLOCKS);
2166
2167 mp->m_sb.sb_icount += cntp->icsb_icount;
2168 mp->m_sb.sb_ifree += cntp->icsb_ifree;
2169 mp->m_sb.sb_fdblocks += cntp->icsb_fdblocks;
2170
David Chinner01e1b692006-03-14 13:29:16 +11002171 memset(cntp, 0, sizeof(xfs_icsb_cnts_t));
David Chinnere8234a62006-03-14 13:23:52 +11002172
Christoph Hellwig45af6c62008-04-22 17:34:44 +10002173 xfs_icsb_balance_counter_locked(mp, XFS_SBS_ICOUNT, 0);
2174 xfs_icsb_balance_counter_locked(mp, XFS_SBS_IFREE, 0);
2175 xfs_icsb_balance_counter_locked(mp, XFS_SBS_FDBLOCKS, 0);
Eric Sandeen3685c2a2007-10-11 17:42:32 +10002176 spin_unlock(&mp->m_sb_lock);
David Chinner03135cf2007-02-10 18:35:15 +11002177 xfs_icsb_unlock(mp);
David Chinnere8234a62006-03-14 13:23:52 +11002178 break;
2179 }
2180
2181 return NOTIFY_OK;
2182}
Chandra Seetharaman5a67e4c2006-06-27 02:54:11 -07002183#endif /* CONFIG_HOTPLUG_CPU */
David Chinnere8234a62006-03-14 13:23:52 +11002184
David Chinner8d280b92006-03-14 13:13:09 +11002185int
2186xfs_icsb_init_counters(
2187 xfs_mount_t *mp)
2188{
2189 xfs_icsb_cnts_t *cntp;
2190 int i;
2191
2192 mp->m_sb_cnts = alloc_percpu(xfs_icsb_cnts_t);
2193 if (mp->m_sb_cnts == NULL)
2194 return -ENOMEM;
2195
Chandra Seetharaman5a67e4c2006-06-27 02:54:11 -07002196#ifdef CONFIG_HOTPLUG_CPU
David Chinnere8234a62006-03-14 13:23:52 +11002197 mp->m_icsb_notifier.notifier_call = xfs_icsb_cpu_notify;
2198 mp->m_icsb_notifier.priority = 0;
Chandra Seetharaman5a67e4c2006-06-27 02:54:11 -07002199 register_hotcpu_notifier(&mp->m_icsb_notifier);
2200#endif /* CONFIG_HOTPLUG_CPU */
David Chinnere8234a62006-03-14 13:23:52 +11002201
David Chinner8d280b92006-03-14 13:13:09 +11002202 for_each_online_cpu(i) {
2203 cntp = (xfs_icsb_cnts_t *)per_cpu_ptr(mp->m_sb_cnts, i);
David Chinner01e1b692006-03-14 13:29:16 +11002204 memset(cntp, 0, sizeof(xfs_icsb_cnts_t));
David Chinner8d280b92006-03-14 13:13:09 +11002205 }
David Chinner20b64282007-02-10 18:35:09 +11002206
2207 mutex_init(&mp->m_icsb_mutex);
2208
David Chinner8d280b92006-03-14 13:13:09 +11002209 /*
2210 * start with all counters disabled so that the
2211 * initial balance kicks us off correctly
2212 */
2213 mp->m_icsb_counters = -1;
2214 return 0;
2215}
2216
Lachlan McIlroy5478eea2007-02-10 18:36:29 +11002217void
2218xfs_icsb_reinit_counters(
2219 xfs_mount_t *mp)
2220{
2221 xfs_icsb_lock(mp);
2222 /*
2223 * start with all counters disabled so that the
2224 * initial balance kicks us off correctly
2225 */
2226 mp->m_icsb_counters = -1;
Christoph Hellwig45af6c62008-04-22 17:34:44 +10002227 xfs_icsb_balance_counter(mp, XFS_SBS_ICOUNT, 0);
2228 xfs_icsb_balance_counter(mp, XFS_SBS_IFREE, 0);
2229 xfs_icsb_balance_counter(mp, XFS_SBS_FDBLOCKS, 0);
Lachlan McIlroy5478eea2007-02-10 18:36:29 +11002230 xfs_icsb_unlock(mp);
2231}
2232
Christoph Hellwigc962fb72008-05-20 15:10:52 +10002233void
David Chinner8d280b92006-03-14 13:13:09 +11002234xfs_icsb_destroy_counters(
2235 xfs_mount_t *mp)
2236{
David Chinnere8234a62006-03-14 13:23:52 +11002237 if (mp->m_sb_cnts) {
Chandra Seetharaman5a67e4c2006-06-27 02:54:11 -07002238 unregister_hotcpu_notifier(&mp->m_icsb_notifier);
David Chinner8d280b92006-03-14 13:13:09 +11002239 free_percpu(mp->m_sb_cnts);
David Chinnere8234a62006-03-14 13:23:52 +11002240 }
David Chinner03135cf2007-02-10 18:35:15 +11002241 mutex_destroy(&mp->m_icsb_mutex);
David Chinner8d280b92006-03-14 13:13:09 +11002242}
2243
Christoph Hellwigb8f82a42009-11-14 16:17:22 +00002244STATIC void
David Chinner01e1b692006-03-14 13:29:16 +11002245xfs_icsb_lock_cntr(
2246 xfs_icsb_cnts_t *icsbp)
2247{
2248 while (test_and_set_bit(XFS_ICSB_FLAG_LOCK, &icsbp->icsb_flags)) {
2249 ndelay(1000);
2250 }
2251}
2252
Christoph Hellwigb8f82a42009-11-14 16:17:22 +00002253STATIC void
David Chinner01e1b692006-03-14 13:29:16 +11002254xfs_icsb_unlock_cntr(
2255 xfs_icsb_cnts_t *icsbp)
2256{
2257 clear_bit(XFS_ICSB_FLAG_LOCK, &icsbp->icsb_flags);
2258}
2259
David Chinner8d280b92006-03-14 13:13:09 +11002260
Christoph Hellwigb8f82a42009-11-14 16:17:22 +00002261STATIC void
David Chinner8d280b92006-03-14 13:13:09 +11002262xfs_icsb_lock_all_counters(
2263 xfs_mount_t *mp)
2264{
2265 xfs_icsb_cnts_t *cntp;
2266 int i;
2267
2268 for_each_online_cpu(i) {
2269 cntp = (xfs_icsb_cnts_t *)per_cpu_ptr(mp->m_sb_cnts, i);
David Chinner01e1b692006-03-14 13:29:16 +11002270 xfs_icsb_lock_cntr(cntp);
David Chinner8d280b92006-03-14 13:13:09 +11002271 }
2272}
2273
Christoph Hellwigb8f82a42009-11-14 16:17:22 +00002274STATIC void
David Chinner8d280b92006-03-14 13:13:09 +11002275xfs_icsb_unlock_all_counters(
2276 xfs_mount_t *mp)
2277{
2278 xfs_icsb_cnts_t *cntp;
2279 int i;
2280
2281 for_each_online_cpu(i) {
2282 cntp = (xfs_icsb_cnts_t *)per_cpu_ptr(mp->m_sb_cnts, i);
David Chinner01e1b692006-03-14 13:29:16 +11002283 xfs_icsb_unlock_cntr(cntp);
David Chinner8d280b92006-03-14 13:13:09 +11002284 }
2285}
2286
2287STATIC void
2288xfs_icsb_count(
2289 xfs_mount_t *mp,
2290 xfs_icsb_cnts_t *cnt,
2291 int flags)
2292{
2293 xfs_icsb_cnts_t *cntp;
2294 int i;
2295
2296 memset(cnt, 0, sizeof(xfs_icsb_cnts_t));
2297
2298 if (!(flags & XFS_ICSB_LAZY_COUNT))
2299 xfs_icsb_lock_all_counters(mp);
2300
2301 for_each_online_cpu(i) {
2302 cntp = (xfs_icsb_cnts_t *)per_cpu_ptr(mp->m_sb_cnts, i);
2303 cnt->icsb_icount += cntp->icsb_icount;
2304 cnt->icsb_ifree += cntp->icsb_ifree;
2305 cnt->icsb_fdblocks += cntp->icsb_fdblocks;
2306 }
2307
2308 if (!(flags & XFS_ICSB_LAZY_COUNT))
2309 xfs_icsb_unlock_all_counters(mp);
2310}
2311
2312STATIC int
2313xfs_icsb_counter_disabled(
2314 xfs_mount_t *mp,
2315 xfs_sb_field_t field)
2316{
2317 ASSERT((field >= XFS_SBS_ICOUNT) && (field <= XFS_SBS_FDBLOCKS));
2318 return test_bit(field, &mp->m_icsb_counters);
2319}
2320
David Chinner36fbe6e2008-04-10 12:19:56 +10002321STATIC void
David Chinner8d280b92006-03-14 13:13:09 +11002322xfs_icsb_disable_counter(
2323 xfs_mount_t *mp,
2324 xfs_sb_field_t field)
2325{
2326 xfs_icsb_cnts_t cnt;
2327
2328 ASSERT((field >= XFS_SBS_ICOUNT) && (field <= XFS_SBS_FDBLOCKS));
2329
David Chinner20b64282007-02-10 18:35:09 +11002330 /*
2331 * If we are already disabled, then there is nothing to do
2332 * here. We check before locking all the counters to avoid
2333 * the expensive lock operation when being called in the
2334 * slow path and the counter is already disabled. This is
2335 * safe because the only time we set or clear this state is under
2336 * the m_icsb_mutex.
2337 */
2338 if (xfs_icsb_counter_disabled(mp, field))
David Chinner36fbe6e2008-04-10 12:19:56 +10002339 return;
David Chinner20b64282007-02-10 18:35:09 +11002340
David Chinner8d280b92006-03-14 13:13:09 +11002341 xfs_icsb_lock_all_counters(mp);
2342 if (!test_and_set_bit(field, &mp->m_icsb_counters)) {
2343 /* drain back to superblock */
2344
Christoph Hellwigce461932008-04-22 17:34:50 +10002345 xfs_icsb_count(mp, &cnt, XFS_ICSB_LAZY_COUNT);
David Chinner8d280b92006-03-14 13:13:09 +11002346 switch(field) {
2347 case XFS_SBS_ICOUNT:
2348 mp->m_sb.sb_icount = cnt.icsb_icount;
2349 break;
2350 case XFS_SBS_IFREE:
2351 mp->m_sb.sb_ifree = cnt.icsb_ifree;
2352 break;
2353 case XFS_SBS_FDBLOCKS:
2354 mp->m_sb.sb_fdblocks = cnt.icsb_fdblocks;
2355 break;
2356 default:
2357 BUG();
2358 }
2359 }
2360
2361 xfs_icsb_unlock_all_counters(mp);
David Chinner8d280b92006-03-14 13:13:09 +11002362}
2363
2364STATIC void
2365xfs_icsb_enable_counter(
2366 xfs_mount_t *mp,
2367 xfs_sb_field_t field,
2368 uint64_t count,
2369 uint64_t resid)
2370{
2371 xfs_icsb_cnts_t *cntp;
2372 int i;
2373
2374 ASSERT((field >= XFS_SBS_ICOUNT) && (field <= XFS_SBS_FDBLOCKS));
2375
2376 xfs_icsb_lock_all_counters(mp);
2377 for_each_online_cpu(i) {
2378 cntp = per_cpu_ptr(mp->m_sb_cnts, i);
2379 switch (field) {
2380 case XFS_SBS_ICOUNT:
2381 cntp->icsb_icount = count + resid;
2382 break;
2383 case XFS_SBS_IFREE:
2384 cntp->icsb_ifree = count + resid;
2385 break;
2386 case XFS_SBS_FDBLOCKS:
2387 cntp->icsb_fdblocks = count + resid;
2388 break;
2389 default:
2390 BUG();
2391 break;
2392 }
2393 resid = 0;
2394 }
2395 clear_bit(field, &mp->m_icsb_counters);
2396 xfs_icsb_unlock_all_counters(mp);
2397}
2398
David Chinnerdbcabad2007-02-10 18:36:17 +11002399void
Christoph Hellwigd4d90b52008-04-22 17:34:37 +10002400xfs_icsb_sync_counters_locked(
David Chinner8d280b92006-03-14 13:13:09 +11002401 xfs_mount_t *mp,
2402 int flags)
2403{
2404 xfs_icsb_cnts_t cnt;
David Chinner8d280b92006-03-14 13:13:09 +11002405
David Chinner8d280b92006-03-14 13:13:09 +11002406 xfs_icsb_count(mp, &cnt, flags);
2407
David Chinner8d280b92006-03-14 13:13:09 +11002408 if (!xfs_icsb_counter_disabled(mp, XFS_SBS_ICOUNT))
2409 mp->m_sb.sb_icount = cnt.icsb_icount;
2410 if (!xfs_icsb_counter_disabled(mp, XFS_SBS_IFREE))
2411 mp->m_sb.sb_ifree = cnt.icsb_ifree;
2412 if (!xfs_icsb_counter_disabled(mp, XFS_SBS_FDBLOCKS))
2413 mp->m_sb.sb_fdblocks = cnt.icsb_fdblocks;
David Chinner8d280b92006-03-14 13:13:09 +11002414}
2415
2416/*
2417 * Accurate update of per-cpu counters to incore superblock
2418 */
Christoph Hellwigd4d90b52008-04-22 17:34:37 +10002419void
David Chinner8d280b92006-03-14 13:13:09 +11002420xfs_icsb_sync_counters(
Christoph Hellwigd4d90b52008-04-22 17:34:37 +10002421 xfs_mount_t *mp,
2422 int flags)
David Chinner8d280b92006-03-14 13:13:09 +11002423{
Christoph Hellwigd4d90b52008-04-22 17:34:37 +10002424 spin_lock(&mp->m_sb_lock);
2425 xfs_icsb_sync_counters_locked(mp, flags);
2426 spin_unlock(&mp->m_sb_lock);
David Chinner8d280b92006-03-14 13:13:09 +11002427}
2428
2429/*
2430 * Balance and enable/disable counters as necessary.
2431 *
David Chinner20b64282007-02-10 18:35:09 +11002432 * Thresholds for re-enabling counters are somewhat magic. inode counts are
2433 * chosen to be the same number as single on disk allocation chunk per CPU, and
2434 * free blocks is something far enough zero that we aren't going thrash when we
2435 * get near ENOSPC. We also need to supply a minimum we require per cpu to
2436 * prevent looping endlessly when xfs_alloc_space asks for more than will
2437 * be distributed to a single CPU but each CPU has enough blocks to be
2438 * reenabled.
2439 *
2440 * Note that we can be called when counters are already disabled.
2441 * xfs_icsb_disable_counter() optimises the counter locking in this case to
2442 * prevent locking every per-cpu counter needlessly.
David Chinner8d280b92006-03-14 13:13:09 +11002443 */
David Chinner20b64282007-02-10 18:35:09 +11002444
2445#define XFS_ICSB_INO_CNTR_REENABLE (uint64_t)64
David Chinner4be536d2006-09-07 14:26:50 +10002446#define XFS_ICSB_FDBLK_CNTR_REENABLE(mp) \
David Chinner20b64282007-02-10 18:35:09 +11002447 (uint64_t)(512 + XFS_ALLOC_SET_ASIDE(mp))
David Chinner8d280b92006-03-14 13:13:09 +11002448STATIC void
Christoph Hellwig45af6c62008-04-22 17:34:44 +10002449xfs_icsb_balance_counter_locked(
David Chinner8d280b92006-03-14 13:13:09 +11002450 xfs_mount_t *mp,
2451 xfs_sb_field_t field,
David Chinner20b64282007-02-10 18:35:09 +11002452 int min_per_cpu)
David Chinner8d280b92006-03-14 13:13:09 +11002453{
Nathan Scott6fdf8cc2006-06-28 10:13:52 +10002454 uint64_t count, resid;
David Chinner8d280b92006-03-14 13:13:09 +11002455 int weight = num_online_cpus();
David Chinner20b64282007-02-10 18:35:09 +11002456 uint64_t min = (uint64_t)min_per_cpu;
David Chinner8d280b92006-03-14 13:13:09 +11002457
David Chinner8d280b92006-03-14 13:13:09 +11002458 /* disable counter and sync counter */
2459 xfs_icsb_disable_counter(mp, field);
2460
2461 /* update counters - first CPU gets residual*/
2462 switch (field) {
2463 case XFS_SBS_ICOUNT:
2464 count = mp->m_sb.sb_icount;
2465 resid = do_div(count, weight);
David Chinner20b64282007-02-10 18:35:09 +11002466 if (count < max(min, XFS_ICSB_INO_CNTR_REENABLE))
Christoph Hellwig45af6c62008-04-22 17:34:44 +10002467 return;
David Chinner8d280b92006-03-14 13:13:09 +11002468 break;
2469 case XFS_SBS_IFREE:
2470 count = mp->m_sb.sb_ifree;
2471 resid = do_div(count, weight);
David Chinner20b64282007-02-10 18:35:09 +11002472 if (count < max(min, XFS_ICSB_INO_CNTR_REENABLE))
Christoph Hellwig45af6c62008-04-22 17:34:44 +10002473 return;
David Chinner8d280b92006-03-14 13:13:09 +11002474 break;
2475 case XFS_SBS_FDBLOCKS:
2476 count = mp->m_sb.sb_fdblocks;
2477 resid = do_div(count, weight);
David Chinner20b64282007-02-10 18:35:09 +11002478 if (count < max(min, XFS_ICSB_FDBLK_CNTR_REENABLE(mp)))
Christoph Hellwig45af6c62008-04-22 17:34:44 +10002479 return;
David Chinner8d280b92006-03-14 13:13:09 +11002480 break;
2481 default:
2482 BUG();
Nathan Scott6fdf8cc2006-06-28 10:13:52 +10002483 count = resid = 0; /* quiet, gcc */
David Chinner8d280b92006-03-14 13:13:09 +11002484 break;
2485 }
2486
2487 xfs_icsb_enable_counter(mp, field, count, resid);
Christoph Hellwig45af6c62008-04-22 17:34:44 +10002488}
2489
2490STATIC void
2491xfs_icsb_balance_counter(
2492 xfs_mount_t *mp,
2493 xfs_sb_field_t fields,
2494 int min_per_cpu)
2495{
2496 spin_lock(&mp->m_sb_lock);
2497 xfs_icsb_balance_counter_locked(mp, fields, min_per_cpu);
2498 spin_unlock(&mp->m_sb_lock);
David Chinner8d280b92006-03-14 13:13:09 +11002499}
2500
David Chinnera8272ce2007-11-23 16:28:09 +11002501STATIC int
David Chinner20b64282007-02-10 18:35:09 +11002502xfs_icsb_modify_counters(
David Chinner8d280b92006-03-14 13:13:09 +11002503 xfs_mount_t *mp,
2504 xfs_sb_field_t field,
David Chinner20f4ebf2007-02-10 18:36:10 +11002505 int64_t delta,
David Chinner20b64282007-02-10 18:35:09 +11002506 int rsvd)
David Chinner8d280b92006-03-14 13:13:09 +11002507{
2508 xfs_icsb_cnts_t *icsbp;
2509 long long lcounter; /* long counter for 64 bit fields */
Christoph Lameter7a9e02d2009-10-03 19:48:23 +09002510 int ret = 0;
David Chinner8d280b92006-03-14 13:13:09 +11002511
David Chinner20b64282007-02-10 18:35:09 +11002512 might_sleep();
David Chinner8d280b92006-03-14 13:13:09 +11002513again:
Christoph Lameter7a9e02d2009-10-03 19:48:23 +09002514 preempt_disable();
2515 icsbp = this_cpu_ptr(mp->m_sb_cnts);
David Chinner20b64282007-02-10 18:35:09 +11002516
2517 /*
2518 * if the counter is disabled, go to slow path
2519 */
David Chinner8d280b92006-03-14 13:13:09 +11002520 if (unlikely(xfs_icsb_counter_disabled(mp, field)))
2521 goto slow_path;
David Chinner20b64282007-02-10 18:35:09 +11002522 xfs_icsb_lock_cntr(icsbp);
2523 if (unlikely(xfs_icsb_counter_disabled(mp, field))) {
2524 xfs_icsb_unlock_cntr(icsbp);
2525 goto slow_path;
2526 }
David Chinner8d280b92006-03-14 13:13:09 +11002527
2528 switch (field) {
2529 case XFS_SBS_ICOUNT:
2530 lcounter = icsbp->icsb_icount;
2531 lcounter += delta;
2532 if (unlikely(lcounter < 0))
David Chinner20b64282007-02-10 18:35:09 +11002533 goto balance_counter;
David Chinner8d280b92006-03-14 13:13:09 +11002534 icsbp->icsb_icount = lcounter;
2535 break;
2536
2537 case XFS_SBS_IFREE:
2538 lcounter = icsbp->icsb_ifree;
2539 lcounter += delta;
2540 if (unlikely(lcounter < 0))
David Chinner20b64282007-02-10 18:35:09 +11002541 goto balance_counter;
David Chinner8d280b92006-03-14 13:13:09 +11002542 icsbp->icsb_ifree = lcounter;
2543 break;
2544
2545 case XFS_SBS_FDBLOCKS:
2546 BUG_ON((mp->m_resblks - mp->m_resblks_avail) != 0);
2547
David Chinner4be536d2006-09-07 14:26:50 +10002548 lcounter = icsbp->icsb_fdblocks - XFS_ALLOC_SET_ASIDE(mp);
David Chinner8d280b92006-03-14 13:13:09 +11002549 lcounter += delta;
2550 if (unlikely(lcounter < 0))
David Chinner20b64282007-02-10 18:35:09 +11002551 goto balance_counter;
David Chinner4be536d2006-09-07 14:26:50 +10002552 icsbp->icsb_fdblocks = lcounter + XFS_ALLOC_SET_ASIDE(mp);
David Chinner8d280b92006-03-14 13:13:09 +11002553 break;
2554 default:
2555 BUG();
2556 break;
2557 }
David Chinner01e1b692006-03-14 13:29:16 +11002558 xfs_icsb_unlock_cntr(icsbp);
Christoph Lameter7a9e02d2009-10-03 19:48:23 +09002559 preempt_enable();
David Chinner8d280b92006-03-14 13:13:09 +11002560 return 0;
2561
David Chinner8d280b92006-03-14 13:13:09 +11002562slow_path:
Christoph Lameter7a9e02d2009-10-03 19:48:23 +09002563 preempt_enable();
David Chinner20b64282007-02-10 18:35:09 +11002564
2565 /*
2566 * serialise with a mutex so we don't burn lots of cpu on
2567 * the superblock lock. We still need to hold the superblock
2568 * lock, however, when we modify the global structures.
2569 */
David Chinner03135cf2007-02-10 18:35:15 +11002570 xfs_icsb_lock(mp);
David Chinner20b64282007-02-10 18:35:09 +11002571
2572 /*
2573 * Now running atomically.
2574 *
2575 * If the counter is enabled, someone has beaten us to rebalancing.
2576 * Drop the lock and try again in the fast path....
2577 */
2578 if (!(xfs_icsb_counter_disabled(mp, field))) {
David Chinner03135cf2007-02-10 18:35:15 +11002579 xfs_icsb_unlock(mp);
David Chinner20b64282007-02-10 18:35:09 +11002580 goto again;
2581 }
2582
2583 /*
2584 * The counter is currently disabled. Because we are
2585 * running atomically here, we know a rebalance cannot
2586 * be in progress. Hence we can go straight to operating
2587 * on the global superblock. We do not call xfs_mod_incore_sb()
Eric Sandeen3685c2a2007-10-11 17:42:32 +10002588 * here even though we need to get the m_sb_lock. Doing so
David Chinner20b64282007-02-10 18:35:09 +11002589 * will cause us to re-enter this function and deadlock.
Eric Sandeen3685c2a2007-10-11 17:42:32 +10002590 * Hence we get the m_sb_lock ourselves and then call
David Chinner20b64282007-02-10 18:35:09 +11002591 * xfs_mod_incore_sb_unlocked() as the unlocked path operates
2592 * directly on the global counters.
2593 */
Eric Sandeen3685c2a2007-10-11 17:42:32 +10002594 spin_lock(&mp->m_sb_lock);
David Chinner20b64282007-02-10 18:35:09 +11002595 ret = xfs_mod_incore_sb_unlocked(mp, field, delta, rsvd);
Eric Sandeen3685c2a2007-10-11 17:42:32 +10002596 spin_unlock(&mp->m_sb_lock);
David Chinner20b64282007-02-10 18:35:09 +11002597
2598 /*
2599 * Now that we've modified the global superblock, we
2600 * may be able to re-enable the distributed counters
2601 * (e.g. lots of space just got freed). After that
2602 * we are done.
2603 */
2604 if (ret != ENOSPC)
Christoph Hellwig45af6c62008-04-22 17:34:44 +10002605 xfs_icsb_balance_counter(mp, field, 0);
David Chinner03135cf2007-02-10 18:35:15 +11002606 xfs_icsb_unlock(mp);
David Chinner20b64282007-02-10 18:35:09 +11002607 return ret;
2608
2609balance_counter:
David Chinner01e1b692006-03-14 13:29:16 +11002610 xfs_icsb_unlock_cntr(icsbp);
Christoph Lameter7a9e02d2009-10-03 19:48:23 +09002611 preempt_enable();
David Chinner8d280b92006-03-14 13:13:09 +11002612
David Chinner20b64282007-02-10 18:35:09 +11002613 /*
2614 * We may have multiple threads here if multiple per-cpu
2615 * counters run dry at the same time. This will mean we can
2616 * do more balances than strictly necessary but it is not
2617 * the common slowpath case.
2618 */
David Chinner03135cf2007-02-10 18:35:15 +11002619 xfs_icsb_lock(mp);
David Chinner8d280b92006-03-14 13:13:09 +11002620
David Chinner20b64282007-02-10 18:35:09 +11002621 /*
2622 * running atomically.
2623 *
2624 * This will leave the counter in the correct state for future
2625 * accesses. After the rebalance, we simply try again and our retry
2626 * will either succeed through the fast path or slow path without
2627 * another balance operation being required.
2628 */
Christoph Hellwig45af6c62008-04-22 17:34:44 +10002629 xfs_icsb_balance_counter(mp, field, delta);
David Chinner03135cf2007-02-10 18:35:15 +11002630 xfs_icsb_unlock(mp);
David Chinner20b64282007-02-10 18:35:09 +11002631 goto again;
David Chinner8d280b92006-03-14 13:13:09 +11002632}
2633
David Chinner8d280b92006-03-14 13:13:09 +11002634#endif