blob: f241fec26070ac4e4a737e1c45012b7776458a83 [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"
28#include "xfs_dmapi.h"
29#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "xfs_bmap_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110031#include "xfs_alloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_ialloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "xfs_dir2_sf.h"
Nathan Scotta844f452005-11-02 14:38:42 +110034#include "xfs_attr_sf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "xfs_dinode.h"
36#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110037#include "xfs_btree.h"
38#include "xfs_ialloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include "xfs_alloc.h"
40#include "xfs_rtalloc.h"
41#include "xfs_bmap.h"
42#include "xfs_error.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include "xfs_rw.h"
44#include "xfs_quota.h"
45#include "xfs_fsops.h"
Christoph Hellwig43355092008-03-27 18:01:08 +110046#include "xfs_utils.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000047#include "xfs_trace.h"
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Christoph Hellwigba0f32d2005-06-21 15:36:52 +100050STATIC void xfs_unmountfs_wait(xfs_mount_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
David Chinner8d280b92006-03-14 13:13:09 +110052
53#ifdef HAVE_PERCPU_SB
David Chinner20f4ebf2007-02-10 18:36:10 +110054STATIC void xfs_icsb_balance_counter(xfs_mount_t *, xfs_sb_field_t,
Christoph Hellwig45af6c62008-04-22 17:34:44 +100055 int);
56STATIC void xfs_icsb_balance_counter_locked(xfs_mount_t *, xfs_sb_field_t,
57 int);
David Chinner8d280b92006-03-14 13:13:09 +110058STATIC int xfs_icsb_modify_counters(xfs_mount_t *, xfs_sb_field_t,
David Chinner20f4ebf2007-02-10 18:36:10 +110059 int64_t, int);
David Chinner36fbe6e2008-04-10 12:19:56 +100060STATIC void xfs_icsb_disable_counter(xfs_mount_t *, xfs_sb_field_t);
David Chinner8d280b92006-03-14 13:13:09 +110061
62#else
63
Christoph Hellwig45af6c62008-04-22 17:34:44 +100064#define xfs_icsb_balance_counter(mp, a, b) do { } while (0)
65#define xfs_icsb_balance_counter_locked(mp, a, b) do { } while (0)
David Chinner8d280b92006-03-14 13:13:09 +110066#define xfs_icsb_modify_counters(mp, a, b, c) do { } while (0)
David Chinner8d280b92006-03-14 13:13:09 +110067
68#endif
69
Christoph Hellwig1df84c92006-01-11 15:29:52 +110070static const struct {
David Chinner8d280b92006-03-14 13:13:09 +110071 short offset;
72 short type; /* 0 = integer
73 * 1 = binary / string (no translation)
74 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070075} xfs_sb_info[] = {
76 { offsetof(xfs_sb_t, sb_magicnum), 0 },
77 { offsetof(xfs_sb_t, sb_blocksize), 0 },
78 { offsetof(xfs_sb_t, sb_dblocks), 0 },
79 { offsetof(xfs_sb_t, sb_rblocks), 0 },
80 { offsetof(xfs_sb_t, sb_rextents), 0 },
81 { offsetof(xfs_sb_t, sb_uuid), 1 },
82 { offsetof(xfs_sb_t, sb_logstart), 0 },
83 { offsetof(xfs_sb_t, sb_rootino), 0 },
84 { offsetof(xfs_sb_t, sb_rbmino), 0 },
85 { offsetof(xfs_sb_t, sb_rsumino), 0 },
86 { offsetof(xfs_sb_t, sb_rextsize), 0 },
87 { offsetof(xfs_sb_t, sb_agblocks), 0 },
88 { offsetof(xfs_sb_t, sb_agcount), 0 },
89 { offsetof(xfs_sb_t, sb_rbmblocks), 0 },
90 { offsetof(xfs_sb_t, sb_logblocks), 0 },
91 { offsetof(xfs_sb_t, sb_versionnum), 0 },
92 { offsetof(xfs_sb_t, sb_sectsize), 0 },
93 { offsetof(xfs_sb_t, sb_inodesize), 0 },
94 { offsetof(xfs_sb_t, sb_inopblock), 0 },
95 { offsetof(xfs_sb_t, sb_fname[0]), 1 },
96 { offsetof(xfs_sb_t, sb_blocklog), 0 },
97 { offsetof(xfs_sb_t, sb_sectlog), 0 },
98 { offsetof(xfs_sb_t, sb_inodelog), 0 },
99 { offsetof(xfs_sb_t, sb_inopblog), 0 },
100 { offsetof(xfs_sb_t, sb_agblklog), 0 },
101 { offsetof(xfs_sb_t, sb_rextslog), 0 },
102 { offsetof(xfs_sb_t, sb_inprogress), 0 },
103 { offsetof(xfs_sb_t, sb_imax_pct), 0 },
104 { offsetof(xfs_sb_t, sb_icount), 0 },
105 { offsetof(xfs_sb_t, sb_ifree), 0 },
106 { offsetof(xfs_sb_t, sb_fdblocks), 0 },
107 { offsetof(xfs_sb_t, sb_frextents), 0 },
108 { offsetof(xfs_sb_t, sb_uquotino), 0 },
109 { offsetof(xfs_sb_t, sb_gquotino), 0 },
110 { offsetof(xfs_sb_t, sb_qflags), 0 },
111 { offsetof(xfs_sb_t, sb_flags), 0 },
112 { offsetof(xfs_sb_t, sb_shared_vn), 0 },
113 { offsetof(xfs_sb_t, sb_inoalignmt), 0 },
114 { offsetof(xfs_sb_t, sb_unit), 0 },
115 { offsetof(xfs_sb_t, sb_width), 0 },
116 { offsetof(xfs_sb_t, sb_dirblklog), 0 },
117 { offsetof(xfs_sb_t, sb_logsectlog), 0 },
118 { offsetof(xfs_sb_t, sb_logsectsize),0 },
119 { offsetof(xfs_sb_t, sb_logsunit), 0 },
120 { offsetof(xfs_sb_t, sb_features2), 0 },
David Chinneree1c0902008-03-06 13:45:50 +1100121 { offsetof(xfs_sb_t, sb_bad_features2), 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 { sizeof(xfs_sb_t), 0 }
123};
124
Christoph Hellwig27174202009-03-30 10:21:31 +0200125static DEFINE_MUTEX(xfs_uuid_table_mutex);
126static int xfs_uuid_table_size;
127static uuid_t *xfs_uuid_table;
128
129/*
130 * See if the UUID is unique among mounted XFS filesystems.
131 * Mount fails if UUID is nil or a FS with the same UUID is already mounted.
132 */
133STATIC int
134xfs_uuid_mount(
135 struct xfs_mount *mp)
136{
137 uuid_t *uuid = &mp->m_sb.sb_uuid;
138 int hole, i;
139
140 if (mp->m_flags & XFS_MOUNT_NOUUID)
141 return 0;
142
143 if (uuid_is_nil(uuid)) {
144 cmn_err(CE_WARN,
145 "XFS: Filesystem %s has nil UUID - can't mount",
146 mp->m_fsname);
147 return XFS_ERROR(EINVAL);
148 }
149
150 mutex_lock(&xfs_uuid_table_mutex);
151 for (i = 0, hole = -1; i < xfs_uuid_table_size; i++) {
152 if (uuid_is_nil(&xfs_uuid_table[i])) {
153 hole = i;
154 continue;
155 }
156 if (uuid_equal(uuid, &xfs_uuid_table[i]))
157 goto out_duplicate;
158 }
159
160 if (hole < 0) {
161 xfs_uuid_table = kmem_realloc(xfs_uuid_table,
162 (xfs_uuid_table_size + 1) * sizeof(*xfs_uuid_table),
163 xfs_uuid_table_size * sizeof(*xfs_uuid_table),
164 KM_SLEEP);
165 hole = xfs_uuid_table_size++;
166 }
167 xfs_uuid_table[hole] = *uuid;
168 mutex_unlock(&xfs_uuid_table_mutex);
169
170 return 0;
171
172 out_duplicate:
173 mutex_unlock(&xfs_uuid_table_mutex);
174 cmn_err(CE_WARN, "XFS: Filesystem %s has duplicate UUID - can't mount",
175 mp->m_fsname);
176 return XFS_ERROR(EINVAL);
177}
178
179STATIC void
180xfs_uuid_unmount(
181 struct xfs_mount *mp)
182{
183 uuid_t *uuid = &mp->m_sb.sb_uuid;
184 int i;
185
186 if (mp->m_flags & XFS_MOUNT_NOUUID)
187 return;
188
189 mutex_lock(&xfs_uuid_table_mutex);
190 for (i = 0; i < xfs_uuid_table_size; i++) {
191 if (uuid_is_nil(&xfs_uuid_table[i]))
192 continue;
193 if (!uuid_equal(uuid, &xfs_uuid_table[i]))
194 continue;
195 memset(&xfs_uuid_table[i], 0, sizeof(uuid_t));
196 break;
197 }
198 ASSERT(i < xfs_uuid_table_size);
199 mutex_unlock(&xfs_uuid_table_mutex);
200}
201
202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 * Free up the resources associated with a mount structure. Assume that
205 * the structure was initially zeroed, so we can tell which fields got
206 * initialized.
207 */
Christoph Hellwigc962fb72008-05-20 15:10:52 +1000208STATIC void
Christoph Hellwigff4f0382008-08-13 16:50:47 +1000209xfs_free_perag(
Christoph Hellwig745f6912007-08-30 17:20:39 +1000210 xfs_mount_t *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000212 xfs_agnumber_t agno;
213 struct xfs_perag *pag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000215 for (agno = 0; agno < mp->m_sb.sb_agcount; agno++) {
216 spin_lock(&mp->m_perag_lock);
217 pag = radix_tree_delete(&mp->m_perag_tree, agno);
Dave Chinneraed3bb92010-01-11 11:47:45 +0000218 ASSERT(atomic_read(&pag->pag_ref) == 0);
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000219 spin_unlock(&mp->m_perag_lock);
220 ASSERT(pag);
221 kmem_free(pag->pagb_list);
222 kmem_free(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224}
225
Nathan Scott4cc929e2007-05-14 18:24:02 +1000226/*
227 * Check size of device based on the (data/realtime) block count.
228 * Note: this check is used by the growfs code as well as mount.
229 */
230int
231xfs_sb_validate_fsb_count(
232 xfs_sb_t *sbp,
233 __uint64_t nblocks)
234{
235 ASSERT(PAGE_SHIFT >= sbp->sb_blocklog);
236 ASSERT(sbp->sb_blocklog >= BBSHIFT);
237
238#if XFS_BIG_BLKNOS /* Limited by ULONG_MAX of page cache index */
239 if (nblocks >> (PAGE_CACHE_SHIFT - sbp->sb_blocklog) > ULONG_MAX)
240 return E2BIG;
241#else /* Limited by UINT_MAX of sectors */
242 if (nblocks << (sbp->sb_blocklog - BBSHIFT) > UINT_MAX)
243 return E2BIG;
244#endif
245 return 0;
246}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
248/*
249 * Check the validity of the SB found.
250 */
251STATIC int
252xfs_mount_validate_sb(
253 xfs_mount_t *mp,
Nathan Scott764d1f82006-03-31 13:04:17 +1000254 xfs_sb_t *sbp,
255 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256{
257 /*
258 * If the log device and data device have the
259 * same device number, the log is internal.
260 * Consequently, the sb_logstart should be non-zero. If
261 * we have a zero sb_logstart in this case, we may be trying to mount
262 * a volume filesystem in a non-volume manner.
263 */
264 if (sbp->sb_magicnum != XFS_SB_MAGIC) {
Nathan Scott764d1f82006-03-31 13:04:17 +1000265 xfs_fs_mount_cmn_err(flags, "bad magic number");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 return XFS_ERROR(EWRONGFS);
267 }
268
Eric Sandeen62118702008-03-06 13:44:28 +1100269 if (!xfs_sb_good_version(sbp)) {
Nathan Scott764d1f82006-03-31 13:04:17 +1000270 xfs_fs_mount_cmn_err(flags, "bad version");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 return XFS_ERROR(EWRONGFS);
272 }
273
274 if (unlikely(
275 sbp->sb_logstart == 0 && mp->m_logdev_targp == mp->m_ddev_targp)) {
Nathan Scott764d1f82006-03-31 13:04:17 +1000276 xfs_fs_mount_cmn_err(flags,
277 "filesystem is marked as having an external log; "
278 "specify logdev on the\nmount command line.");
279 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 }
281
282 if (unlikely(
283 sbp->sb_logstart != 0 && mp->m_logdev_targp != mp->m_ddev_targp)) {
Nathan Scott764d1f82006-03-31 13:04:17 +1000284 xfs_fs_mount_cmn_err(flags,
285 "filesystem is marked as having an internal log; "
286 "do not specify logdev on\nthe mount command line.");
287 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 }
289
290 /*
291 * More sanity checking. These were stolen directly from
292 * xfs_repair.
293 */
294 if (unlikely(
295 sbp->sb_agcount <= 0 ||
296 sbp->sb_sectsize < XFS_MIN_SECTORSIZE ||
297 sbp->sb_sectsize > XFS_MAX_SECTORSIZE ||
298 sbp->sb_sectlog < XFS_MIN_SECTORSIZE_LOG ||
299 sbp->sb_sectlog > XFS_MAX_SECTORSIZE_LOG ||
Olaf Weber2ac00af2009-04-17 16:12:45 -0500300 sbp->sb_sectsize != (1 << sbp->sb_sectlog) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 sbp->sb_blocksize < XFS_MIN_BLOCKSIZE ||
302 sbp->sb_blocksize > XFS_MAX_BLOCKSIZE ||
303 sbp->sb_blocklog < XFS_MIN_BLOCKSIZE_LOG ||
304 sbp->sb_blocklog > XFS_MAX_BLOCKSIZE_LOG ||
Olaf Weber2ac00af2009-04-17 16:12:45 -0500305 sbp->sb_blocksize != (1 << sbp->sb_blocklog) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 sbp->sb_inodesize < XFS_DINODE_MIN_SIZE ||
307 sbp->sb_inodesize > XFS_DINODE_MAX_SIZE ||
Nathan Scott9f989c92006-03-14 13:29:32 +1100308 sbp->sb_inodelog < XFS_DINODE_MIN_LOG ||
309 sbp->sb_inodelog > XFS_DINODE_MAX_LOG ||
Olaf Weber2ac00af2009-04-17 16:12:45 -0500310 sbp->sb_inodesize != (1 << sbp->sb_inodelog) ||
Nathan Scott9f989c92006-03-14 13:29:32 +1100311 (sbp->sb_blocklog - sbp->sb_inodelog != sbp->sb_inopblog) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 (sbp->sb_rextsize * sbp->sb_blocksize > XFS_MAX_RTEXTSIZE) ||
313 (sbp->sb_rextsize * sbp->sb_blocksize < XFS_MIN_RTEXTSIZE) ||
Nathan Scotte50bd162006-04-11 15:10:45 +1000314 (sbp->sb_imax_pct > 100 /* zero sb_imax_pct is valid */))) {
Nathan Scott764d1f82006-03-31 13:04:17 +1000315 xfs_fs_mount_cmn_err(flags, "SB sanity check 1 failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 return XFS_ERROR(EFSCORRUPTED);
317 }
318
319 /*
320 * Sanity check AG count, size fields against data size field
321 */
322 if (unlikely(
323 sbp->sb_dblocks == 0 ||
324 sbp->sb_dblocks >
325 (xfs_drfsbno_t)sbp->sb_agcount * sbp->sb_agblocks ||
326 sbp->sb_dblocks < (xfs_drfsbno_t)(sbp->sb_agcount - 1) *
327 sbp->sb_agblocks + XFS_MIN_AG_BLOCKS)) {
Nathan Scott764d1f82006-03-31 13:04:17 +1000328 xfs_fs_mount_cmn_err(flags, "SB sanity check 2 failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 return XFS_ERROR(EFSCORRUPTED);
330 }
331
Lachlan McIlroy2edbddd2008-06-27 13:34:34 +1000332 /*
333 * Until this is fixed only page-sized or smaller data blocks work.
334 */
335 if (unlikely(sbp->sb_blocksize > PAGE_SIZE)) {
336 xfs_fs_mount_cmn_err(flags,
337 "file system with blocksize %d bytes",
338 sbp->sb_blocksize);
339 xfs_fs_mount_cmn_err(flags,
340 "only pagesize (%ld) or less will currently work.",
341 PAGE_SIZE);
342 return XFS_ERROR(ENOSYS);
343 }
344
Christoph Hellwig1a5902c2009-03-29 19:26:46 +0200345 /*
346 * Currently only very few inode sizes are supported.
347 */
348 switch (sbp->sb_inodesize) {
349 case 256:
350 case 512:
351 case 1024:
352 case 2048:
353 break;
354 default:
355 xfs_fs_mount_cmn_err(flags,
356 "inode size of %d bytes not supported",
357 sbp->sb_inodesize);
358 return XFS_ERROR(ENOSYS);
359 }
360
Nathan Scott4cc929e2007-05-14 18:24:02 +1000361 if (xfs_sb_validate_fsb_count(sbp, sbp->sb_dblocks) ||
362 xfs_sb_validate_fsb_count(sbp, sbp->sb_rblocks)) {
Nathan Scott764d1f82006-03-31 13:04:17 +1000363 xfs_fs_mount_cmn_err(flags,
364 "file system too large to be mounted on this system.");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 return XFS_ERROR(E2BIG);
366 }
367
368 if (unlikely(sbp->sb_inprogress)) {
Nathan Scott764d1f82006-03-31 13:04:17 +1000369 xfs_fs_mount_cmn_err(flags, "file system busy");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 return XFS_ERROR(EFSCORRUPTED);
371 }
372
373 /*
Nathan Scottde206142005-05-05 13:24:13 -0700374 * Version 1 directory format has never worked on Linux.
375 */
Eric Sandeen62118702008-03-06 13:44:28 +1100376 if (unlikely(!xfs_sb_version_hasdirv2(sbp))) {
Nathan Scott764d1f82006-03-31 13:04:17 +1000377 xfs_fs_mount_cmn_err(flags,
378 "file system using version 1 directory format");
Nathan Scottde206142005-05-05 13:24:13 -0700379 return XFS_ERROR(ENOSYS);
380 }
381
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 return 0;
383}
384
David Chinnerda353b02007-08-28 14:00:13 +1000385STATIC void
386xfs_initialize_perag_icache(
387 xfs_perag_t *pag)
388{
389 if (!pag->pag_ici_init) {
390 rwlock_init(&pag->pag_ici_lock);
391 INIT_RADIX_TREE(&pag->pag_ici_root, GFP_ATOMIC);
392 pag->pag_ici_init = 1;
393 }
394}
395
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000396int
Nathan Scottc11e2c32005-11-02 15:11:45 +1100397xfs_initialize_perag(
Nathan Scottc11e2c32005-11-02 15:11:45 +1100398 xfs_mount_t *mp,
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000399 xfs_agnumber_t agcount,
400 xfs_agnumber_t *maxagi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401{
402 xfs_agnumber_t index, max_metadata;
403 xfs_perag_t *pag;
404 xfs_agino_t agino;
405 xfs_ino_t ino;
406 xfs_sb_t *sbp = &mp->m_sb;
407 xfs_ino_t max_inum = XFS_MAXINUMBER_32;
408
409 /* Check to see if the filesystem can overflow 32 bit inodes */
410 agino = XFS_OFFBNO_TO_AGINO(mp, sbp->sb_agblocks - 1, 0);
411 ino = XFS_AGINO_TO_INO(mp, agcount - 1, agino);
412
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000413 /*
414 * Walk the current per-ag tree so we don't try to initialise AGs
415 * that already exist (growfs case). Allocate and insert all the
416 * AGs we don't find ready for initialisation.
417 */
418 for (index = 0; index < agcount; index++) {
419 pag = xfs_perag_get(mp, index);
420 if (pag) {
421 xfs_perag_put(pag);
422 continue;
423 }
424 pag = kmem_zalloc(sizeof(*pag), KM_MAYFAIL);
425 if (!pag)
426 return -ENOMEM;
427 if (radix_tree_preload(GFP_NOFS))
428 return -ENOMEM;
429 spin_lock(&mp->m_perag_lock);
430 if (radix_tree_insert(&mp->m_perag_tree, index, pag)) {
431 BUG();
432 spin_unlock(&mp->m_perag_lock);
433 kmem_free(pag);
434 return -EEXIST;
435 }
436 spin_unlock(&mp->m_perag_lock);
437 radix_tree_preload_end();
438 }
439
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 /* Clear the mount flag if no inode can overflow 32 bits
441 * on this filesystem, or if specifically requested..
442 */
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000443 if ((mp->m_flags & XFS_MOUNT_SMALL_INUMS) && ino > max_inum) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 mp->m_flags |= XFS_MOUNT_32BITINODES;
445 } else {
446 mp->m_flags &= ~XFS_MOUNT_32BITINODES;
447 }
448
449 /* If we can overflow then setup the ag headers accordingly */
450 if (mp->m_flags & XFS_MOUNT_32BITINODES) {
451 /* Calculate how much should be reserved for inodes to
452 * meet the max inode percentage.
453 */
454 if (mp->m_maxicount) {
455 __uint64_t icount;
456
457 icount = sbp->sb_dblocks * sbp->sb_imax_pct;
458 do_div(icount, 100);
459 icount += sbp->sb_agblocks - 1;
Eric Sandeena749ee82005-11-02 15:13:42 +1100460 do_div(icount, sbp->sb_agblocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 max_metadata = icount;
462 } else {
463 max_metadata = agcount;
464 }
465 for (index = 0; index < agcount; index++) {
466 ino = XFS_AGINO_TO_INO(mp, index, agino);
467 if (ino > max_inum) {
468 index++;
469 break;
470 }
471
Nathan Scottc41564b2006-03-29 08:55:14 +1000472 /* This ag is preferred for inodes */
Dave Chinner44b56e02010-01-11 11:47:43 +0000473 pag = xfs_perag_get(mp, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 pag->pagi_inodeok = 1;
475 if (index < max_metadata)
476 pag->pagf_metadata = 1;
David Chinnerda353b02007-08-28 14:00:13 +1000477 xfs_initialize_perag_icache(pag);
Dave Chinner44b56e02010-01-11 11:47:43 +0000478 xfs_perag_put(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 }
480 } else {
481 /* Setup default behavior for smaller filesystems */
482 for (index = 0; index < agcount; index++) {
Dave Chinner44b56e02010-01-11 11:47:43 +0000483 pag = xfs_perag_get(mp, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 pag->pagi_inodeok = 1;
David Chinnerda353b02007-08-28 14:00:13 +1000485 xfs_initialize_perag_icache(pag);
Dave Chinner44b56e02010-01-11 11:47:43 +0000486 xfs_perag_put(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 }
488 }
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000489 if (maxagi)
490 *maxagi = index;
491 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492}
493
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000494void
495xfs_sb_from_disk(
496 xfs_sb_t *to,
497 xfs_dsb_t *from)
498{
499 to->sb_magicnum = be32_to_cpu(from->sb_magicnum);
500 to->sb_blocksize = be32_to_cpu(from->sb_blocksize);
501 to->sb_dblocks = be64_to_cpu(from->sb_dblocks);
502 to->sb_rblocks = be64_to_cpu(from->sb_rblocks);
503 to->sb_rextents = be64_to_cpu(from->sb_rextents);
504 memcpy(&to->sb_uuid, &from->sb_uuid, sizeof(to->sb_uuid));
505 to->sb_logstart = be64_to_cpu(from->sb_logstart);
506 to->sb_rootino = be64_to_cpu(from->sb_rootino);
507 to->sb_rbmino = be64_to_cpu(from->sb_rbmino);
508 to->sb_rsumino = be64_to_cpu(from->sb_rsumino);
509 to->sb_rextsize = be32_to_cpu(from->sb_rextsize);
510 to->sb_agblocks = be32_to_cpu(from->sb_agblocks);
511 to->sb_agcount = be32_to_cpu(from->sb_agcount);
512 to->sb_rbmblocks = be32_to_cpu(from->sb_rbmblocks);
513 to->sb_logblocks = be32_to_cpu(from->sb_logblocks);
514 to->sb_versionnum = be16_to_cpu(from->sb_versionnum);
515 to->sb_sectsize = be16_to_cpu(from->sb_sectsize);
516 to->sb_inodesize = be16_to_cpu(from->sb_inodesize);
517 to->sb_inopblock = be16_to_cpu(from->sb_inopblock);
518 memcpy(&to->sb_fname, &from->sb_fname, sizeof(to->sb_fname));
519 to->sb_blocklog = from->sb_blocklog;
520 to->sb_sectlog = from->sb_sectlog;
521 to->sb_inodelog = from->sb_inodelog;
522 to->sb_inopblog = from->sb_inopblog;
523 to->sb_agblklog = from->sb_agblklog;
524 to->sb_rextslog = from->sb_rextslog;
525 to->sb_inprogress = from->sb_inprogress;
526 to->sb_imax_pct = from->sb_imax_pct;
527 to->sb_icount = be64_to_cpu(from->sb_icount);
528 to->sb_ifree = be64_to_cpu(from->sb_ifree);
529 to->sb_fdblocks = be64_to_cpu(from->sb_fdblocks);
530 to->sb_frextents = be64_to_cpu(from->sb_frextents);
531 to->sb_uquotino = be64_to_cpu(from->sb_uquotino);
532 to->sb_gquotino = be64_to_cpu(from->sb_gquotino);
533 to->sb_qflags = be16_to_cpu(from->sb_qflags);
534 to->sb_flags = from->sb_flags;
535 to->sb_shared_vn = from->sb_shared_vn;
536 to->sb_inoalignmt = be32_to_cpu(from->sb_inoalignmt);
537 to->sb_unit = be32_to_cpu(from->sb_unit);
538 to->sb_width = be32_to_cpu(from->sb_width);
539 to->sb_dirblklog = from->sb_dirblklog;
540 to->sb_logsectlog = from->sb_logsectlog;
541 to->sb_logsectsize = be16_to_cpu(from->sb_logsectsize);
542 to->sb_logsunit = be32_to_cpu(from->sb_logsunit);
543 to->sb_features2 = be32_to_cpu(from->sb_features2);
David Chinneree1c0902008-03-06 13:45:50 +1100544 to->sb_bad_features2 = be32_to_cpu(from->sb_bad_features2);
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000545}
546
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547/*
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000548 * Copy in core superblock to ondisk one.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 *
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000550 * The fields argument is mask of superblock fields to copy.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 */
552void
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000553xfs_sb_to_disk(
554 xfs_dsb_t *to,
555 xfs_sb_t *from,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 __int64_t fields)
557{
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000558 xfs_caddr_t to_ptr = (xfs_caddr_t)to;
559 xfs_caddr_t from_ptr = (xfs_caddr_t)from;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 xfs_sb_field_t f;
561 int first;
562 int size;
563
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 ASSERT(fields);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 if (!fields)
566 return;
567
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 while (fields) {
569 f = (xfs_sb_field_t)xfs_lowbit64((__uint64_t)fields);
570 first = xfs_sb_info[f].offset;
571 size = xfs_sb_info[f + 1].offset - first;
572
573 ASSERT(xfs_sb_info[f].type == 0 || xfs_sb_info[f].type == 1);
574
575 if (size == 1 || xfs_sb_info[f].type == 1) {
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000576 memcpy(to_ptr + first, from_ptr + first, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 } else {
578 switch (size) {
579 case 2:
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000580 *(__be16 *)(to_ptr + first) =
581 cpu_to_be16(*(__u16 *)(from_ptr + first));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 break;
583 case 4:
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000584 *(__be32 *)(to_ptr + first) =
585 cpu_to_be32(*(__u32 *)(from_ptr + first));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 break;
587 case 8:
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000588 *(__be64 *)(to_ptr + first) =
589 cpu_to_be64(*(__u64 *)(from_ptr + first));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 break;
591 default:
592 ASSERT(0);
593 }
594 }
595
596 fields &= ~(1LL << f);
597 }
598}
599
600/*
601 * xfs_readsb
602 *
603 * Does the initial read of the superblock.
604 */
605int
Nathan Scott764d1f82006-03-31 13:04:17 +1000606xfs_readsb(xfs_mount_t *mp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607{
608 unsigned int sector_size;
609 unsigned int extra_flags;
610 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 int error;
612
613 ASSERT(mp->m_sb_bp == NULL);
614 ASSERT(mp->m_ddev_targp != NULL);
615
616 /*
617 * Allocate a (locked) buffer to hold the superblock.
618 * This will be kept around at all times to optimize
619 * access to the superblock.
620 */
621 sector_size = xfs_getsize_buftarg(mp->m_ddev_targp);
622 extra_flags = XFS_BUF_LOCK | XFS_BUF_MANAGE | XFS_BUF_MAPPED;
623
Christoph Hellwig6ad112b2009-11-24 18:02:23 +0000624 bp = xfs_buf_read(mp->m_ddev_targp, XFS_SB_DADDR, BTOBB(sector_size),
625 extra_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 if (!bp || XFS_BUF_ISERROR(bp)) {
Nathan Scott764d1f82006-03-31 13:04:17 +1000627 xfs_fs_mount_cmn_err(flags, "SB read failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 error = bp ? XFS_BUF_GETERROR(bp) : ENOMEM;
629 goto fail;
630 }
631 ASSERT(XFS_BUF_ISBUSY(bp));
632 ASSERT(XFS_BUF_VALUSEMA(bp) <= 0);
633
634 /*
635 * Initialize the mount structure from the superblock.
636 * But first do some basic consistency checking.
637 */
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000638 xfs_sb_from_disk(&mp->m_sb, XFS_BUF_TO_SBP(bp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
Nathan Scott764d1f82006-03-31 13:04:17 +1000640 error = xfs_mount_validate_sb(mp, &(mp->m_sb), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 if (error) {
Nathan Scott764d1f82006-03-31 13:04:17 +1000642 xfs_fs_mount_cmn_err(flags, "SB validate failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 goto fail;
644 }
645
646 /*
647 * We must be able to do sector-sized and sector-aligned IO.
648 */
649 if (sector_size > mp->m_sb.sb_sectsize) {
Nathan Scott764d1f82006-03-31 13:04:17 +1000650 xfs_fs_mount_cmn_err(flags,
651 "device supports only %u byte sectors (not %u)",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 sector_size, mp->m_sb.sb_sectsize);
653 error = ENOSYS;
654 goto fail;
655 }
656
657 /*
658 * If device sector size is smaller than the superblock size,
659 * re-read the superblock so the buffer is correctly sized.
660 */
661 if (sector_size < mp->m_sb.sb_sectsize) {
662 XFS_BUF_UNMANAGE(bp);
663 xfs_buf_relse(bp);
664 sector_size = mp->m_sb.sb_sectsize;
Christoph Hellwig6ad112b2009-11-24 18:02:23 +0000665 bp = xfs_buf_read(mp->m_ddev_targp, XFS_SB_DADDR,
666 BTOBB(sector_size), extra_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 if (!bp || XFS_BUF_ISERROR(bp)) {
Nathan Scott764d1f82006-03-31 13:04:17 +1000668 xfs_fs_mount_cmn_err(flags, "SB re-read failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 error = bp ? XFS_BUF_GETERROR(bp) : ENOMEM;
670 goto fail;
671 }
672 ASSERT(XFS_BUF_ISBUSY(bp));
673 ASSERT(XFS_BUF_VALUSEMA(bp) <= 0);
674 }
675
Lachlan McIlroy5478eea2007-02-10 18:36:29 +1100676 /* Initialize per-cpu counters */
677 xfs_icsb_reinit_counters(mp);
David Chinner8d280b92006-03-14 13:13:09 +1100678
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 mp->m_sb_bp = bp;
680 xfs_buf_relse(bp);
681 ASSERT(XFS_BUF_VALUSEMA(bp) > 0);
682 return 0;
683
684 fail:
685 if (bp) {
686 XFS_BUF_UNMANAGE(bp);
687 xfs_buf_relse(bp);
688 }
689 return error;
690}
691
692
693/*
694 * xfs_mount_common
695 *
696 * Mount initialization code establishing various mount
697 * fields from the superblock associated with the given
698 * mount structure
699 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +1000700STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701xfs_mount_common(xfs_mount_t *mp, xfs_sb_t *sbp)
702{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 mp->m_agfrotor = mp->m_agirotor = 0;
Eric Sandeen007c61c2007-10-11 17:43:56 +1000704 spin_lock_init(&mp->m_agirotor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 mp->m_maxagi = mp->m_sb.sb_agcount;
706 mp->m_blkbit_log = sbp->sb_blocklog + XFS_NBBYLOG;
707 mp->m_blkbb_log = sbp->sb_blocklog - BBSHIFT;
708 mp->m_sectbb_log = sbp->sb_sectlog - BBSHIFT;
709 mp->m_agno_log = xfs_highbit32(sbp->sb_agcount - 1) + 1;
710 mp->m_agino_log = sbp->sb_inopblog + sbp->sb_agblklog;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 mp->m_blockmask = sbp->sb_blocksize - 1;
712 mp->m_blockwsize = sbp->sb_blocksize >> XFS_WORDLOG;
713 mp->m_blockwmask = mp->m_blockwsize - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
Christoph Hellwig60197e82008-10-30 17:11:19 +1100715 mp->m_alloc_mxr[0] = xfs_allocbt_maxrecs(mp, sbp->sb_blocksize, 1);
716 mp->m_alloc_mxr[1] = xfs_allocbt_maxrecs(mp, sbp->sb_blocksize, 0);
717 mp->m_alloc_mnr[0] = mp->m_alloc_mxr[0] / 2;
718 mp->m_alloc_mnr[1] = mp->m_alloc_mxr[1] / 2;
719
720 mp->m_inobt_mxr[0] = xfs_inobt_maxrecs(mp, sbp->sb_blocksize, 1);
721 mp->m_inobt_mxr[1] = xfs_inobt_maxrecs(mp, sbp->sb_blocksize, 0);
722 mp->m_inobt_mnr[0] = mp->m_inobt_mxr[0] / 2;
723 mp->m_inobt_mnr[1] = mp->m_inobt_mxr[1] / 2;
724
725 mp->m_bmap_dmxr[0] = xfs_bmbt_maxrecs(mp, sbp->sb_blocksize, 1);
726 mp->m_bmap_dmxr[1] = xfs_bmbt_maxrecs(mp, sbp->sb_blocksize, 0);
727 mp->m_bmap_dmnr[0] = mp->m_bmap_dmxr[0] / 2;
728 mp->m_bmap_dmnr[1] = mp->m_bmap_dmxr[1] / 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
730 mp->m_bsize = XFS_FSB_TO_BB(mp, 1);
731 mp->m_ialloc_inos = (int)MAX((__uint16_t)XFS_INODES_PER_CHUNK,
732 sbp->sb_inopblock);
733 mp->m_ialloc_blks = mp->m_ialloc_inos >> sbp->sb_inopblog;
734}
David Chinner92821e22007-05-24 15:26:31 +1000735
736/*
737 * xfs_initialize_perag_data
738 *
739 * Read in each per-ag structure so we can count up the number of
740 * allocated inodes, free inodes and used filesystem blocks as this
741 * information is no longer persistent in the superblock. Once we have
742 * this information, write it into the in-core superblock structure.
743 */
744STATIC int
745xfs_initialize_perag_data(xfs_mount_t *mp, xfs_agnumber_t agcount)
746{
747 xfs_agnumber_t index;
748 xfs_perag_t *pag;
749 xfs_sb_t *sbp = &mp->m_sb;
750 uint64_t ifree = 0;
751 uint64_t ialloc = 0;
752 uint64_t bfree = 0;
753 uint64_t bfreelst = 0;
754 uint64_t btree = 0;
755 int error;
David Chinner92821e22007-05-24 15:26:31 +1000756
757 for (index = 0; index < agcount; index++) {
758 /*
759 * read the agf, then the agi. This gets us
Malcolm Parsons9da096f2009-03-29 09:55:42 +0200760 * all the information we need and populates the
David Chinner92821e22007-05-24 15:26:31 +1000761 * per-ag structures for us.
762 */
763 error = xfs_alloc_pagf_init(mp, NULL, index, 0);
764 if (error)
765 return error;
766
767 error = xfs_ialloc_pagi_init(mp, NULL, index);
768 if (error)
769 return error;
Dave Chinner44b56e02010-01-11 11:47:43 +0000770 pag = xfs_perag_get(mp, index);
David Chinner92821e22007-05-24 15:26:31 +1000771 ifree += pag->pagi_freecount;
772 ialloc += pag->pagi_count;
773 bfree += pag->pagf_freeblks;
774 bfreelst += pag->pagf_flcount;
775 btree += pag->pagf_btreeblks;
Dave Chinner44b56e02010-01-11 11:47:43 +0000776 xfs_perag_put(pag);
David Chinner92821e22007-05-24 15:26:31 +1000777 }
778 /*
779 * Overwrite incore superblock counters with just-read data
780 */
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000781 spin_lock(&mp->m_sb_lock);
David Chinner92821e22007-05-24 15:26:31 +1000782 sbp->sb_ifree = ifree;
783 sbp->sb_icount = ialloc;
784 sbp->sb_fdblocks = bfree + bfreelst + btree;
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000785 spin_unlock(&mp->m_sb_lock);
David Chinner92821e22007-05-24 15:26:31 +1000786
787 /* Fixup the per-cpu counters as well. */
788 xfs_icsb_reinit_counters(mp);
789
790 return 0;
791}
792
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793/*
Eric Sandeen0771fb42007-10-12 11:03:40 +1000794 * Update alignment values based on mount options and sb values
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 */
Eric Sandeen0771fb42007-10-12 11:03:40 +1000796STATIC int
Christoph Hellwig7884bc82009-01-19 02:04:07 +0100797xfs_update_alignment(xfs_mount_t *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 xfs_sb_t *sbp = &(mp->m_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
Christoph Hellwig42490232008-08-13 16:49:32 +1000801 if (mp->m_dalign) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 /*
803 * If stripe unit and stripe width are not multiples
804 * of the fs blocksize turn off alignment.
805 */
806 if ((BBTOB(mp->m_dalign) & mp->m_blockmask) ||
807 (BBTOB(mp->m_swidth) & mp->m_blockmask)) {
808 if (mp->m_flags & XFS_MOUNT_RETERR) {
809 cmn_err(CE_WARN,
810 "XFS: alignment check 1 failed");
Eric Sandeen0771fb42007-10-12 11:03:40 +1000811 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 }
813 mp->m_dalign = mp->m_swidth = 0;
814 } else {
815 /*
816 * Convert the stripe unit and width to FSBs.
817 */
818 mp->m_dalign = XFS_BB_TO_FSBT(mp, mp->m_dalign);
819 if (mp->m_dalign && (sbp->sb_agblocks % mp->m_dalign)) {
820 if (mp->m_flags & XFS_MOUNT_RETERR) {
Eric Sandeen0771fb42007-10-12 11:03:40 +1000821 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 }
823 xfs_fs_cmn_err(CE_WARN, mp,
824"stripe alignment turned off: sunit(%d)/swidth(%d) incompatible with agsize(%d)",
825 mp->m_dalign, mp->m_swidth,
826 sbp->sb_agblocks);
827
828 mp->m_dalign = 0;
829 mp->m_swidth = 0;
830 } else if (mp->m_dalign) {
831 mp->m_swidth = XFS_BB_TO_FSBT(mp, mp->m_swidth);
832 } else {
833 if (mp->m_flags & XFS_MOUNT_RETERR) {
834 xfs_fs_cmn_err(CE_WARN, mp,
835"stripe alignment turned off: sunit(%d) less than bsize(%d)",
836 mp->m_dalign,
837 mp->m_blockmask +1);
Eric Sandeen0771fb42007-10-12 11:03:40 +1000838 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 }
840 mp->m_swidth = 0;
841 }
842 }
843
844 /*
845 * Update superblock with new values
846 * and log changes
847 */
Eric Sandeen62118702008-03-06 13:44:28 +1100848 if (xfs_sb_version_hasdalign(sbp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 if (sbp->sb_unit != mp->m_dalign) {
850 sbp->sb_unit = mp->m_dalign;
Christoph Hellwig7884bc82009-01-19 02:04:07 +0100851 mp->m_update_flags |= XFS_SB_UNIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 }
853 if (sbp->sb_width != mp->m_swidth) {
854 sbp->sb_width = mp->m_swidth;
Christoph Hellwig7884bc82009-01-19 02:04:07 +0100855 mp->m_update_flags |= XFS_SB_WIDTH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 }
857 }
858 } else if ((mp->m_flags & XFS_MOUNT_NOALIGN) != XFS_MOUNT_NOALIGN &&
Eric Sandeen62118702008-03-06 13:44:28 +1100859 xfs_sb_version_hasdalign(&mp->m_sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 mp->m_dalign = sbp->sb_unit;
861 mp->m_swidth = sbp->sb_width;
862 }
863
Eric Sandeen0771fb42007-10-12 11:03:40 +1000864 return 0;
865}
866
867/*
868 * Set the maximum inode count for this filesystem
869 */
870STATIC void
871xfs_set_maxicount(xfs_mount_t *mp)
872{
873 xfs_sb_t *sbp = &(mp->m_sb);
874 __uint64_t icount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
876 if (sbp->sb_imax_pct) {
Eric Sandeen0771fb42007-10-12 11:03:40 +1000877 /*
878 * Make sure the maximum inode count is a multiple
879 * of the units we allocate inodes in.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 icount = sbp->sb_dblocks * sbp->sb_imax_pct;
882 do_div(icount, 100);
883 do_div(icount, mp->m_ialloc_blks);
884 mp->m_maxicount = (icount * mp->m_ialloc_blks) <<
885 sbp->sb_inopblog;
Eric Sandeen0771fb42007-10-12 11:03:40 +1000886 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 mp->m_maxicount = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 }
Eric Sandeen0771fb42007-10-12 11:03:40 +1000889}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
Eric Sandeen0771fb42007-10-12 11:03:40 +1000891/*
892 * Set the default minimum read and write sizes unless
893 * already specified in a mount option.
894 * We use smaller I/O sizes when the file system
895 * is being used for NFS service (wsync mount option).
896 */
897STATIC void
898xfs_set_rw_sizes(xfs_mount_t *mp)
899{
900 xfs_sb_t *sbp = &(mp->m_sb);
901 int readio_log, writeio_log;
902
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 if (!(mp->m_flags & XFS_MOUNT_DFLT_IOSIZE)) {
904 if (mp->m_flags & XFS_MOUNT_WSYNC) {
905 readio_log = XFS_WSYNC_READIO_LOG;
906 writeio_log = XFS_WSYNC_WRITEIO_LOG;
907 } else {
908 readio_log = XFS_READIO_LOG_LARGE;
909 writeio_log = XFS_WRITEIO_LOG_LARGE;
910 }
911 } else {
912 readio_log = mp->m_readio_log;
913 writeio_log = mp->m_writeio_log;
914 }
915
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 if (sbp->sb_blocklog > readio_log) {
917 mp->m_readio_log = sbp->sb_blocklog;
918 } else {
919 mp->m_readio_log = readio_log;
920 }
921 mp->m_readio_blocks = 1 << (mp->m_readio_log - sbp->sb_blocklog);
922 if (sbp->sb_blocklog > writeio_log) {
923 mp->m_writeio_log = sbp->sb_blocklog;
924 } else {
925 mp->m_writeio_log = writeio_log;
926 }
927 mp->m_writeio_blocks = 1 << (mp->m_writeio_log - sbp->sb_blocklog);
Eric Sandeen0771fb42007-10-12 11:03:40 +1000928}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
Eric Sandeen0771fb42007-10-12 11:03:40 +1000930/*
931 * Set whether we're using inode alignment.
932 */
933STATIC void
934xfs_set_inoalignment(xfs_mount_t *mp)
935{
Eric Sandeen62118702008-03-06 13:44:28 +1100936 if (xfs_sb_version_hasalign(&mp->m_sb) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 mp->m_sb.sb_inoalignmt >=
938 XFS_B_TO_FSBT(mp, mp->m_inode_cluster_size))
939 mp->m_inoalign_mask = mp->m_sb.sb_inoalignmt - 1;
940 else
941 mp->m_inoalign_mask = 0;
942 /*
943 * If we are using stripe alignment, check whether
944 * the stripe unit is a multiple of the inode alignment
945 */
946 if (mp->m_dalign && mp->m_inoalign_mask &&
947 !(mp->m_dalign & mp->m_inoalign_mask))
948 mp->m_sinoalign = mp->m_dalign;
949 else
950 mp->m_sinoalign = 0;
Eric Sandeen0771fb42007-10-12 11:03:40 +1000951}
952
953/*
954 * Check that the data (and log if separate) are an ok size.
955 */
956STATIC int
Christoph Hellwig42490232008-08-13 16:49:32 +1000957xfs_check_sizes(xfs_mount_t *mp)
Eric Sandeen0771fb42007-10-12 11:03:40 +1000958{
959 xfs_buf_t *bp;
960 xfs_daddr_t d;
961 int error;
962
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 d = (xfs_daddr_t)XFS_FSB_TO_BB(mp, mp->m_sb.sb_dblocks);
964 if (XFS_BB_TO_FSB(mp, d) != mp->m_sb.sb_dblocks) {
965 cmn_err(CE_WARN, "XFS: size check 1 failed");
Eric Sandeen0771fb42007-10-12 11:03:40 +1000966 return XFS_ERROR(E2BIG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 }
968 error = xfs_read_buf(mp, mp->m_ddev_targp,
969 d - XFS_FSS_TO_BB(mp, 1),
970 XFS_FSS_TO_BB(mp, 1), 0, &bp);
971 if (!error) {
972 xfs_buf_relse(bp);
973 } else {
974 cmn_err(CE_WARN, "XFS: size check 2 failed");
Eric Sandeen0771fb42007-10-12 11:03:40 +1000975 if (error == ENOSPC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 error = XFS_ERROR(E2BIG);
Eric Sandeen0771fb42007-10-12 11:03:40 +1000977 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 }
979
Christoph Hellwig42490232008-08-13 16:49:32 +1000980 if (mp->m_logdev_targp != mp->m_ddev_targp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 d = (xfs_daddr_t)XFS_FSB_TO_BB(mp, mp->m_sb.sb_logblocks);
982 if (XFS_BB_TO_FSB(mp, d) != mp->m_sb.sb_logblocks) {
983 cmn_err(CE_WARN, "XFS: size check 3 failed");
Eric Sandeen0771fb42007-10-12 11:03:40 +1000984 return XFS_ERROR(E2BIG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 }
986 error = xfs_read_buf(mp, mp->m_logdev_targp,
987 d - XFS_FSB_TO_BB(mp, 1),
988 XFS_FSB_TO_BB(mp, 1), 0, &bp);
989 if (!error) {
990 xfs_buf_relse(bp);
991 } else {
992 cmn_err(CE_WARN, "XFS: size check 3 failed");
Eric Sandeen0771fb42007-10-12 11:03:40 +1000993 if (error == ENOSPC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 error = XFS_ERROR(E2BIG);
Eric Sandeen0771fb42007-10-12 11:03:40 +1000995 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 }
997 }
Eric Sandeen0771fb42007-10-12 11:03:40 +1000998 return 0;
999}
1000
1001/*
Christoph Hellwig7d095252009-06-08 15:33:32 +02001002 * Clear the quotaflags in memory and in the superblock.
1003 */
1004int
1005xfs_mount_reset_sbqflags(
1006 struct xfs_mount *mp)
1007{
1008 int error;
1009 struct xfs_trans *tp;
1010
1011 mp->m_qflags = 0;
1012
1013 /*
1014 * It is OK to look at sb_qflags here in mount path,
1015 * without m_sb_lock.
1016 */
1017 if (mp->m_sb.sb_qflags == 0)
1018 return 0;
1019 spin_lock(&mp->m_sb_lock);
1020 mp->m_sb.sb_qflags = 0;
1021 spin_unlock(&mp->m_sb_lock);
1022
1023 /*
1024 * If the fs is readonly, let the incore superblock run
1025 * with quotas off but don't flush the update out to disk
1026 */
1027 if (mp->m_flags & XFS_MOUNT_RDONLY)
1028 return 0;
1029
1030#ifdef QUOTADEBUG
1031 xfs_fs_cmn_err(CE_NOTE, mp, "Writing superblock quota changes");
1032#endif
1033
1034 tp = xfs_trans_alloc(mp, XFS_TRANS_QM_SBCHANGE);
1035 error = xfs_trans_reserve(tp, 0, mp->m_sb.sb_sectsize + 128, 0, 0,
1036 XFS_DEFAULT_LOG_COUNT);
1037 if (error) {
1038 xfs_trans_cancel(tp, 0);
1039 xfs_fs_cmn_err(CE_ALERT, mp,
1040 "xfs_mount_reset_sbqflags: Superblock update failed!");
1041 return error;
1042 }
1043
1044 xfs_mod_sb(tp, XFS_SB_QFLAGS);
1045 return xfs_trans_commit(tp, 0);
1046}
1047
1048/*
Eric Sandeen0771fb42007-10-12 11:03:40 +10001049 * This function does the following on an initial mount of a file system:
1050 * - reads the superblock from disk and init the mount struct
1051 * - if we're a 32-bit kernel, do a size check on the superblock
1052 * so we don't mount terabyte filesystems
1053 * - init mount struct realtime fields
1054 * - allocate inode hash table for fs
1055 * - init directory manager
1056 * - perform recovery and init the log manager
1057 */
1058int
1059xfs_mountfs(
Christoph Hellwig42490232008-08-13 16:49:32 +10001060 xfs_mount_t *mp)
Eric Sandeen0771fb42007-10-12 11:03:40 +10001061{
1062 xfs_sb_t *sbp = &(mp->m_sb);
1063 xfs_inode_t *rip;
Eric Sandeen0771fb42007-10-12 11:03:40 +10001064 __uint64_t resblks;
Christoph Hellwig7d095252009-06-08 15:33:32 +02001065 uint quotamount = 0;
1066 uint quotaflags = 0;
Eric Sandeen0771fb42007-10-12 11:03:40 +10001067 int error = 0;
1068
Eric Sandeen0771fb42007-10-12 11:03:40 +10001069 xfs_mount_common(mp, sbp);
1070
1071 /*
Eric Sandeene6957ea2008-04-10 12:19:34 +10001072 * Check for a mismatched features2 values. Older kernels
1073 * read & wrote into the wrong sb offset for sb_features2
1074 * on some platforms due to xfs_sb_t not being 64bit size aligned
1075 * when sb_features2 was added, which made older superblock
1076 * reading/writing routines swap it as a 64-bit value.
David Chinneree1c0902008-03-06 13:45:50 +11001077 *
Eric Sandeene6957ea2008-04-10 12:19:34 +10001078 * For backwards compatibility, we make both slots equal.
1079 *
1080 * If we detect a mismatched field, we OR the set bits into the
1081 * existing features2 field in case it has already been modified; we
1082 * don't want to lose any features. We then update the bad location
1083 * with the ORed value so that older kernels will see any features2
1084 * flags, and mark the two fields as needing updates once the
1085 * transaction subsystem is online.
David Chinneree1c0902008-03-06 13:45:50 +11001086 */
Eric Sandeene6957ea2008-04-10 12:19:34 +10001087 if (xfs_sb_has_mismatched_features2(sbp)) {
David Chinneree1c0902008-03-06 13:45:50 +11001088 cmn_err(CE_WARN,
1089 "XFS: correcting sb_features alignment problem");
1090 sbp->sb_features2 |= sbp->sb_bad_features2;
Eric Sandeene6957ea2008-04-10 12:19:34 +10001091 sbp->sb_bad_features2 = sbp->sb_features2;
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001092 mp->m_update_flags |= XFS_SB_FEATURES2 | XFS_SB_BAD_FEATURES2;
Eric Sandeene6957ea2008-04-10 12:19:34 +10001093
1094 /*
1095 * Re-check for ATTR2 in case it was found in bad_features2
1096 * slot.
1097 */
Tim Shimmin7c12f292008-04-30 18:15:28 +10001098 if (xfs_sb_version_hasattr2(&mp->m_sb) &&
1099 !(mp->m_flags & XFS_MOUNT_NOATTR2))
Eric Sandeene6957ea2008-04-10 12:19:34 +10001100 mp->m_flags |= XFS_MOUNT_ATTR2;
Tim Shimmin7c12f292008-04-30 18:15:28 +10001101 }
Eric Sandeene6957ea2008-04-10 12:19:34 +10001102
Tim Shimmin7c12f292008-04-30 18:15:28 +10001103 if (xfs_sb_version_hasattr2(&mp->m_sb) &&
1104 (mp->m_flags & XFS_MOUNT_NOATTR2)) {
1105 xfs_sb_version_removeattr2(&mp->m_sb);
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001106 mp->m_update_flags |= XFS_SB_FEATURES2;
Tim Shimmin7c12f292008-04-30 18:15:28 +10001107
1108 /* update sb_versionnum for the clearing of the morebits */
1109 if (!sbp->sb_features2)
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001110 mp->m_update_flags |= XFS_SB_VERSIONNUM;
David Chinneree1c0902008-03-06 13:45:50 +11001111 }
1112
1113 /*
Eric Sandeen0771fb42007-10-12 11:03:40 +10001114 * Check if sb_agblocks is aligned at stripe boundary
1115 * If sb_agblocks is NOT aligned turn off m_dalign since
1116 * allocator alignment is within an ag, therefore ag has
1117 * to be aligned at stripe boundary.
1118 */
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001119 error = xfs_update_alignment(mp);
Eric Sandeen0771fb42007-10-12 11:03:40 +10001120 if (error)
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001121 goto out;
Eric Sandeen0771fb42007-10-12 11:03:40 +10001122
1123 xfs_alloc_compute_maxlevels(mp);
1124 xfs_bmap_compute_maxlevels(mp, XFS_DATA_FORK);
1125 xfs_bmap_compute_maxlevels(mp, XFS_ATTR_FORK);
1126 xfs_ialloc_compute_maxlevels(mp);
1127
1128 xfs_set_maxicount(mp);
1129
1130 mp->m_maxioffset = xfs_max_file_offset(sbp->sb_blocklog);
1131
Christoph Hellwig27174202009-03-30 10:21:31 +02001132 error = xfs_uuid_mount(mp);
1133 if (error)
1134 goto out;
Eric Sandeen0771fb42007-10-12 11:03:40 +10001135
1136 /*
1137 * Set the minimum read and write sizes
1138 */
1139 xfs_set_rw_sizes(mp);
1140
1141 /*
1142 * Set the inode cluster size.
1143 * This may still be overridden by the file system
1144 * block size if it is larger than the chosen cluster size.
1145 */
1146 mp->m_inode_cluster_size = XFS_INODE_BIG_CLUSTER_SIZE;
1147
1148 /*
1149 * Set inode alignment fields
1150 */
1151 xfs_set_inoalignment(mp);
1152
1153 /*
1154 * Check that the data (and log if separate) are an ok size.
1155 */
Christoph Hellwig42490232008-08-13 16:49:32 +10001156 error = xfs_check_sizes(mp);
Eric Sandeen0771fb42007-10-12 11:03:40 +10001157 if (error)
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001158 goto out_remove_uuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
1160 /*
1161 * Initialize realtime fields in the mount structure
1162 */
Eric Sandeen0771fb42007-10-12 11:03:40 +10001163 error = xfs_rtmount_init(mp);
1164 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 cmn_err(CE_WARN, "XFS: RT mount failed");
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001166 goto out_remove_uuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 }
1168
1169 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 * Copies the low order bits of the timestamp and the randomly
1171 * set "sequence" number out of a UUID.
1172 */
1173 uuid_getnodeuniq(&sbp->sb_uuid, mp->m_fixedfsid);
1174
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 mp->m_dmevmask = 0; /* not persistent; set after each mount */
1176
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10001177 xfs_dir_mount(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
1179 /*
1180 * Initialize the attribute manager's entries.
1181 */
1182 mp->m_attr_magicpct = (mp->m_sb.sb_blocksize * 37) / 100;
1183
1184 /*
1185 * Initialize the precomputed transaction reservations values.
1186 */
1187 xfs_trans_init(mp);
1188
1189 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 * Allocate and initialize the per-ag data.
1191 */
Dave Chinner1c1c6eb2010-01-11 11:47:44 +00001192 spin_lock_init(&mp->m_perag_lock);
1193 INIT_RADIX_TREE(&mp->m_perag_tree, GFP_NOFS);
1194 error = xfs_initialize_perag(mp, sbp->sb_agcount, &mp->m_maxagi);
1195 if (error) {
1196 cmn_err(CE_WARN, "XFS: Failed per-ag init: %d", error);
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001197 goto out_remove_uuid;
Dave Chinner1c1c6eb2010-01-11 11:47:44 +00001198 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001200 if (!sbp->sb_logblocks) {
1201 cmn_err(CE_WARN, "XFS: no log defined");
1202 XFS_ERROR_REPORT("xfs_mountfs", XFS_ERRLEVEL_LOW, mp);
1203 error = XFS_ERROR(EFSCORRUPTED);
1204 goto out_free_perag;
1205 }
1206
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 /*
1208 * log's mount-time initialization. Perform 1st part recovery if needed
1209 */
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001210 error = xfs_log_mount(mp, mp->m_logdev_targp,
1211 XFS_FSB_TO_DADDR(mp, sbp->sb_logstart),
1212 XFS_FSB_TO_BB(mp, sbp->sb_logblocks));
1213 if (error) {
1214 cmn_err(CE_WARN, "XFS: log mount failed");
1215 goto out_free_perag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 }
1217
1218 /*
David Chinner92821e22007-05-24 15:26:31 +10001219 * Now the log is mounted, we know if it was an unclean shutdown or
1220 * not. If it was, with the first phase of recovery has completed, we
1221 * have consistent AG blocks on disk. We have not recovered EFIs yet,
1222 * but they are recovered transactionally in the second recovery phase
1223 * later.
1224 *
1225 * Hence we can safely re-initialise incore superblock counters from
1226 * the per-ag data. These may not be correct if the filesystem was not
1227 * cleanly unmounted, so we need to wait for recovery to finish before
1228 * doing this.
1229 *
1230 * If the filesystem was cleanly unmounted, then we can trust the
1231 * values in the superblock to be correct and we don't need to do
1232 * anything here.
1233 *
1234 * If we are currently making the filesystem, the initialisation will
1235 * fail as the perag data is in an undefined state.
1236 */
David Chinner92821e22007-05-24 15:26:31 +10001237 if (xfs_sb_version_haslazysbcount(&mp->m_sb) &&
1238 !XFS_LAST_UNMOUNT_WAS_CLEAN(mp) &&
1239 !mp->m_sb.sb_inprogress) {
1240 error = xfs_initialize_perag_data(mp, sbp->sb_agcount);
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001241 if (error)
1242 goto out_free_perag;
David Chinner92821e22007-05-24 15:26:31 +10001243 }
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001244
David Chinner92821e22007-05-24 15:26:31 +10001245 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 * Get and sanity-check the root inode.
1247 * Save the pointer to it in the mount structure.
1248 */
1249 error = xfs_iget(mp, NULL, sbp->sb_rootino, 0, XFS_ILOCK_EXCL, &rip, 0);
1250 if (error) {
1251 cmn_err(CE_WARN, "XFS: failed to read root inode");
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001252 goto out_log_dealloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 }
1254
1255 ASSERT(rip != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
1257 if (unlikely((rip->i_d.di_mode & S_IFMT) != S_IFDIR)) {
1258 cmn_err(CE_WARN, "XFS: corrupted root inode");
Nathan Scottb6574522006-06-09 15:29:40 +10001259 cmn_err(CE_WARN, "Device %s - root %llu is not a directory",
1260 XFS_BUFTARG_NAME(mp->m_ddev_targp),
1261 (unsigned long long)rip->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 xfs_iunlock(rip, XFS_ILOCK_EXCL);
1263 XFS_ERROR_REPORT("xfs_mountfs_int(2)", XFS_ERRLEVEL_LOW,
1264 mp);
1265 error = XFS_ERROR(EFSCORRUPTED);
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001266 goto out_rele_rip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 }
1268 mp->m_rootip = rip; /* save it */
1269
1270 xfs_iunlock(rip, XFS_ILOCK_EXCL);
1271
1272 /*
1273 * Initialize realtime inode pointers in the mount structure
1274 */
Eric Sandeen0771fb42007-10-12 11:03:40 +10001275 error = xfs_rtmount_inodes(mp);
1276 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 /*
1278 * Free up the root inode.
1279 */
1280 cmn_err(CE_WARN, "XFS: failed to read RT inodes");
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001281 goto out_rele_rip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 }
1283
1284 /*
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001285 * If this is a read-only mount defer the superblock updates until
1286 * the next remount into writeable mode. Otherwise we would never
1287 * perform the update e.g. for the root filesystem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 */
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001289 if (mp->m_update_flags && !(mp->m_flags & XFS_MOUNT_RDONLY)) {
1290 error = xfs_mount_log_sb(mp, mp->m_update_flags);
David Chinnere5720ee2008-04-10 12:21:18 +10001291 if (error) {
1292 cmn_err(CE_WARN, "XFS: failed to write sb changes");
Christoph Hellwigb93b6e42009-02-04 09:33:58 +01001293 goto out_rtunmount;
David Chinnere5720ee2008-04-10 12:21:18 +10001294 }
1295 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
1297 /*
1298 * Initialise the XFS quota management subsystem for this mount
1299 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02001300 if (XFS_IS_QUOTA_RUNNING(mp)) {
1301 error = xfs_qm_newmount(mp, &quotamount, &quotaflags);
1302 if (error)
1303 goto out_rtunmount;
1304 } else {
1305 ASSERT(!XFS_IS_QUOTA_ON(mp));
1306
1307 /*
1308 * If a file system had quotas running earlier, but decided to
1309 * mount without -o uquota/pquota/gquota options, revoke the
1310 * quotachecked license.
1311 */
1312 if (mp->m_sb.sb_qflags & XFS_ALL_QUOTA_ACCT) {
1313 cmn_err(CE_NOTE,
1314 "XFS: resetting qflags for filesystem %s",
1315 mp->m_fsname);
1316
1317 error = xfs_mount_reset_sbqflags(mp);
1318 if (error)
1319 return error;
1320 }
1321 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
1323 /*
1324 * Finish recovering the file system. This part needed to be
1325 * delayed until after the root and real-time bitmap inodes
1326 * were consistently read in.
1327 */
Christoph Hellwig42490232008-08-13 16:49:32 +10001328 error = xfs_log_mount_finish(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 if (error) {
1330 cmn_err(CE_WARN, "XFS: log mount finish failed");
Christoph Hellwigb93b6e42009-02-04 09:33:58 +01001331 goto out_rtunmount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 }
1333
1334 /*
1335 * Complete the quota initialisation, post-log-replay component.
1336 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02001337 if (quotamount) {
1338 ASSERT(mp->m_qflags == 0);
1339 mp->m_qflags = quotaflags;
1340
1341 xfs_qm_mount_quotas(mp);
1342 }
1343
1344#if defined(DEBUG) && defined(XFS_LOUD_RECOVERY)
1345 if (XFS_IS_QUOTA_ON(mp))
1346 xfs_fs_cmn_err(CE_NOTE, mp, "Disk quotas turned on");
1347 else
1348 xfs_fs_cmn_err(CE_NOTE, mp, "Disk quotas not turned on");
1349#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
David Chinner84e1e992007-06-18 16:50:27 +10001351 /*
1352 * Now we are mounted, reserve a small amount of unused space for
1353 * privileged transactions. This is needed so that transaction
1354 * space required for critical operations can dip into this pool
1355 * when at ENOSPC. This is needed for operations like create with
1356 * attr, unwritten extent conversion at ENOSPC, etc. Data allocations
1357 * are not allowed to use this reserved space.
1358 *
1359 * We default to 5% or 1024 fsbs of space reserved, whichever is smaller.
1360 * This may drive us straight to ENOSPC on mount, but that implies
David Chinner714082b2008-04-10 12:20:03 +10001361 * we were already there on the last unmount. Warn if this occurs.
David Chinner84e1e992007-06-18 16:50:27 +10001362 */
Christoph Hellwig39726be2007-06-18 17:57:45 +10001363 resblks = mp->m_sb.sb_dblocks;
1364 do_div(resblks, 20);
1365 resblks = min_t(__uint64_t, resblks, 1024);
David Chinner714082b2008-04-10 12:20:03 +10001366 error = xfs_reserve_blocks(mp, &resblks, NULL);
1367 if (error)
1368 cmn_err(CE_WARN, "XFS: Unable to allocate reserve blocks. "
1369 "Continuing without a reserve pool.");
David Chinner84e1e992007-06-18 16:50:27 +10001370
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 return 0;
1372
Christoph Hellwigb93b6e42009-02-04 09:33:58 +01001373 out_rtunmount:
1374 xfs_rtunmount_inodes(mp);
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001375 out_rele_rip:
Christoph Hellwig43355092008-03-27 18:01:08 +11001376 IRELE(rip);
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001377 out_log_dealloc:
Christoph Hellwig21b699c2009-03-16 08:19:29 +01001378 xfs_log_unmount(mp);
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001379 out_free_perag:
Christoph Hellwigff4f0382008-08-13 16:50:47 +10001380 xfs_free_perag(mp);
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001381 out_remove_uuid:
Christoph Hellwig27174202009-03-30 10:21:31 +02001382 xfs_uuid_unmount(mp);
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001383 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 return error;
1385}
1386
1387/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 * This flushes out the inodes,dquots and the superblock, unmounts the
1389 * log and makes sure that incore structures are freed.
1390 */
Christoph Hellwig41b5c2e2008-08-13 16:49:57 +10001391void
1392xfs_unmountfs(
1393 struct xfs_mount *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394{
Christoph Hellwig41b5c2e2008-08-13 16:49:57 +10001395 __uint64_t resblks;
1396 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
Christoph Hellwig7d095252009-06-08 15:33:32 +02001398 xfs_qm_unmount_quotas(mp);
Christoph Hellwigb93b6e42009-02-04 09:33:58 +01001399 xfs_rtunmount_inodes(mp);
Christoph Hellwig77508ec2008-08-13 16:49:04 +10001400 IRELE(mp->m_rootip);
1401
David Chinner641c56f2007-06-18 16:50:17 +10001402 /*
1403 * We can potentially deadlock here if we have an inode cluster
Malcolm Parsons9da096f2009-03-29 09:55:42 +02001404 * that has been freed has its buffer still pinned in memory because
David Chinner641c56f2007-06-18 16:50:17 +10001405 * the transaction is still sitting in a iclog. The stale inodes
1406 * on that buffer will have their flush locks held until the
1407 * transaction hits the disk and the callbacks run. the inode
1408 * flush takes the flush lock unconditionally and with nothing to
1409 * push out the iclog we will never get that unlocked. hence we
1410 * need to force the log first.
1411 */
1412 xfs_log_force(mp, (xfs_lsn_t)0, XFS_LOG_FORCE | XFS_LOG_SYNC);
Dave Chinnerabc10642009-06-08 15:35:12 +02001413 xfs_reclaim_inodes(mp, XFS_IFLUSH_ASYNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
Christoph Hellwig7d095252009-06-08 15:33:32 +02001415 xfs_qm_unmount(mp);
Lachlan McIlroya357a122008-10-30 16:53:25 +11001416
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 /*
1418 * Flush out the log synchronously so that we know for sure
1419 * that nothing is pinned. This is important because bflush()
1420 * will skip pinned buffers.
1421 */
1422 xfs_log_force(mp, (xfs_lsn_t)0, XFS_LOG_FORCE | XFS_LOG_SYNC);
1423
1424 xfs_binval(mp->m_ddev_targp);
1425 if (mp->m_rtdev_targp) {
1426 xfs_binval(mp->m_rtdev_targp);
1427 }
1428
David Chinner84e1e992007-06-18 16:50:27 +10001429 /*
1430 * Unreserve any blocks we have so that when we unmount we don't account
1431 * the reserved free space as used. This is really only necessary for
1432 * lazy superblock counting because it trusts the incore superblock
Malcolm Parsons9da096f2009-03-29 09:55:42 +02001433 * counters to be absolutely correct on clean unmount.
David Chinner84e1e992007-06-18 16:50:27 +10001434 *
1435 * We don't bother correcting this elsewhere for lazy superblock
1436 * counting because on mount of an unclean filesystem we reconstruct the
1437 * correct counter value and this is irrelevant.
1438 *
1439 * For non-lazy counter filesystems, this doesn't matter at all because
1440 * we only every apply deltas to the superblock and hence the incore
1441 * value does not matter....
1442 */
1443 resblks = 0;
David Chinner714082b2008-04-10 12:20:03 +10001444 error = xfs_reserve_blocks(mp, &resblks, NULL);
1445 if (error)
1446 cmn_err(CE_WARN, "XFS: Unable to free reserved block pool. "
1447 "Freespace may not be correct on next mount.");
1448
David Chinnere5720ee2008-04-10 12:21:18 +10001449 error = xfs_log_sbcount(mp, 1);
1450 if (error)
1451 cmn_err(CE_WARN, "XFS: Unable to update superblock counters. "
1452 "Freespace may not be correct on next mount.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 xfs_unmountfs_writesb(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 xfs_unmountfs_wait(mp); /* wait for async bufs */
Christoph Hellwig21b699c2009-03-16 08:19:29 +01001455 xfs_log_unmount_write(mp);
1456 xfs_log_unmount(mp);
Christoph Hellwig27174202009-03-30 10:21:31 +02001457 xfs_uuid_unmount(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
Christoph Hellwig1550d0b2008-08-13 16:17:37 +10001459#if defined(DEBUG)
Christoph Hellwig0ce4cfd2007-08-30 17:20:53 +10001460 xfs_errortag_clearall(mp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461#endif
Christoph Hellwigff4f0382008-08-13 16:50:47 +10001462 xfs_free_perag(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463}
1464
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10001465STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466xfs_unmountfs_wait(xfs_mount_t *mp)
1467{
1468 if (mp->m_logdev_targp != mp->m_ddev_targp)
1469 xfs_wait_buftarg(mp->m_logdev_targp);
1470 if (mp->m_rtdev_targp)
1471 xfs_wait_buftarg(mp->m_rtdev_targp);
1472 xfs_wait_buftarg(mp->m_ddev_targp);
1473}
1474
1475int
David Chinner92821e22007-05-24 15:26:31 +10001476xfs_fs_writable(xfs_mount_t *mp)
1477{
Christoph Hellwigb267ce92007-08-30 17:21:30 +10001478 return !(xfs_test_for_freeze(mp) || XFS_FORCED_SHUTDOWN(mp) ||
Christoph Hellwigbd186aa2007-08-30 17:21:12 +10001479 (mp->m_flags & XFS_MOUNT_RDONLY));
David Chinner92821e22007-05-24 15:26:31 +10001480}
1481
1482/*
1483 * xfs_log_sbcount
1484 *
1485 * Called either periodically to keep the on disk superblock values
1486 * roughly up to date or from unmount to make sure the values are
1487 * correct on a clean unmount.
1488 *
1489 * Note this code can be called during the process of freezing, so
1490 * we may need to use the transaction allocator which does not not
1491 * block when the transaction subsystem is in its frozen state.
1492 */
1493int
1494xfs_log_sbcount(
1495 xfs_mount_t *mp,
1496 uint sync)
1497{
1498 xfs_trans_t *tp;
1499 int error;
1500
1501 if (!xfs_fs_writable(mp))
1502 return 0;
1503
Christoph Hellwigd4d90b52008-04-22 17:34:37 +10001504 xfs_icsb_sync_counters(mp, 0);
David Chinner92821e22007-05-24 15:26:31 +10001505
1506 /*
1507 * we don't need to do this if we are updating the superblock
1508 * counters on every modification.
1509 */
1510 if (!xfs_sb_version_haslazysbcount(&mp->m_sb))
1511 return 0;
1512
Christoph Hellwig80641dc2009-10-19 04:00:03 +00001513 tp = _xfs_trans_alloc(mp, XFS_TRANS_SB_COUNT, KM_SLEEP);
David Chinner92821e22007-05-24 15:26:31 +10001514 error = xfs_trans_reserve(tp, 0, mp->m_sb.sb_sectsize + 128, 0, 0,
1515 XFS_DEFAULT_LOG_COUNT);
1516 if (error) {
1517 xfs_trans_cancel(tp, 0);
1518 return error;
1519 }
1520
1521 xfs_mod_sb(tp, XFS_SB_IFREE | XFS_SB_ICOUNT | XFS_SB_FDBLOCKS);
1522 if (sync)
1523 xfs_trans_set_sync(tp);
David Chinnere5720ee2008-04-10 12:21:18 +10001524 error = xfs_trans_commit(tp, 0);
1525 return error;
David Chinner92821e22007-05-24 15:26:31 +10001526}
1527
1528int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529xfs_unmountfs_writesb(xfs_mount_t *mp)
1530{
1531 xfs_buf_t *sbp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 int error = 0;
1533
1534 /*
1535 * skip superblock write if fs is read-only, or
1536 * if we are doing a forced umount.
1537 */
Christoph Hellwigbd186aa2007-08-30 17:21:12 +10001538 if (!((mp->m_flags & XFS_MOUNT_RDONLY) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 XFS_FORCED_SHUTDOWN(mp))) {
David Chinner8d280b92006-03-14 13:13:09 +11001540
David Chinner92821e22007-05-24 15:26:31 +10001541 sbp = xfs_getsb(mp, 0);
David Chinner8d280b92006-03-14 13:13:09 +11001542
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 XFS_BUF_UNDONE(sbp);
1544 XFS_BUF_UNREAD(sbp);
1545 XFS_BUF_UNDELAYWRITE(sbp);
1546 XFS_BUF_WRITE(sbp);
1547 XFS_BUF_UNASYNC(sbp);
1548 ASSERT(XFS_BUF_TARGET(sbp) == mp->m_ddev_targp);
1549 xfsbdstrat(mp, sbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 error = xfs_iowait(sbp);
1551 if (error)
1552 xfs_ioerror_alert("xfs_unmountfs_writesb",
1553 mp, sbp, XFS_BUF_ADDR(sbp));
David Chinner92821e22007-05-24 15:26:31 +10001554 xfs_buf_relse(sbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 }
Jesper Juhl014c2542006-01-15 02:37:08 +01001556 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557}
1558
1559/*
1560 * xfs_mod_sb() can be used to copy arbitrary changes to the
1561 * in-core superblock into the superblock buffer to be logged.
1562 * It does not provide the higher level of locking that is
1563 * needed to protect the in-core superblock from concurrent
1564 * access.
1565 */
1566void
1567xfs_mod_sb(xfs_trans_t *tp, __int64_t fields)
1568{
1569 xfs_buf_t *bp;
1570 int first;
1571 int last;
1572 xfs_mount_t *mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 xfs_sb_field_t f;
1574
1575 ASSERT(fields);
1576 if (!fields)
1577 return;
1578 mp = tp->t_mountp;
1579 bp = xfs_trans_getsb(tp, mp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 first = sizeof(xfs_sb_t);
1581 last = 0;
1582
1583 /* translate/copy */
1584
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +10001585 xfs_sb_to_disk(XFS_BUF_TO_SBP(bp), &mp->m_sb, fields);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586
1587 /* find modified range */
1588
1589 f = (xfs_sb_field_t)xfs_lowbit64((__uint64_t)fields);
1590 ASSERT((1LL << f) & XFS_SB_MOD_BITS);
1591 first = xfs_sb_info[f].offset;
1592
1593 f = (xfs_sb_field_t)xfs_highbit64((__uint64_t)fields);
1594 ASSERT((1LL << f) & XFS_SB_MOD_BITS);
1595 last = xfs_sb_info[f + 1].offset - 1;
1596
1597 xfs_trans_log_buf(tp, bp, first, last);
1598}
Yingping Lud210a282006-06-09 14:55:18 +10001599
Yingping Lud210a282006-06-09 14:55:18 +10001600
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601/*
1602 * xfs_mod_incore_sb_unlocked() is a utility routine common used to apply
1603 * a delta to a specified field in the in-core superblock. Simply
1604 * switch on the field indicated and apply the delta to that field.
1605 * Fields are not allowed to dip below zero, so if the delta would
1606 * do this do not apply it and return EINVAL.
1607 *
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001608 * The m_sb_lock must be held when this routine is called.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 */
Eric Sandeend96f8f82009-07-02 00:09:33 -05001610STATIC int
David Chinner20f4ebf2007-02-10 18:36:10 +11001611xfs_mod_incore_sb_unlocked(
1612 xfs_mount_t *mp,
1613 xfs_sb_field_t field,
1614 int64_t delta,
1615 int rsvd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616{
1617 int scounter; /* short counter for 32 bit fields */
1618 long long lcounter; /* long counter for 64 bit fields */
1619 long long res_used, rem;
1620
1621 /*
1622 * With the in-core superblock spin lock held, switch
1623 * on the indicated field. Apply the delta to the
1624 * proper field. If the fields value would dip below
1625 * 0, then do not apply the delta and return EINVAL.
1626 */
1627 switch (field) {
1628 case XFS_SBS_ICOUNT:
1629 lcounter = (long long)mp->m_sb.sb_icount;
1630 lcounter += delta;
1631 if (lcounter < 0) {
1632 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001633 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 }
1635 mp->m_sb.sb_icount = lcounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001636 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 case XFS_SBS_IFREE:
1638 lcounter = (long long)mp->m_sb.sb_ifree;
1639 lcounter += delta;
1640 if (lcounter < 0) {
1641 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001642 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 }
1644 mp->m_sb.sb_ifree = lcounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001645 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 case XFS_SBS_FDBLOCKS:
David Chinner4be536d2006-09-07 14:26:50 +10001647 lcounter = (long long)
1648 mp->m_sb.sb_fdblocks - XFS_ALLOC_SET_ASIDE(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 res_used = (long long)(mp->m_resblks - mp->m_resblks_avail);
1650
1651 if (delta > 0) { /* Putting blocks back */
1652 if (res_used > delta) {
1653 mp->m_resblks_avail += delta;
1654 } else {
1655 rem = delta - res_used;
1656 mp->m_resblks_avail = mp->m_resblks;
1657 lcounter += rem;
1658 }
1659 } else { /* Taking blocks away */
1660
1661 lcounter += delta;
1662
1663 /*
1664 * If were out of blocks, use any available reserved blocks if
1665 * were allowed to.
1666 */
1667
1668 if (lcounter < 0) {
1669 if (rsvd) {
1670 lcounter = (long long)mp->m_resblks_avail + delta;
1671 if (lcounter < 0) {
Jesper Juhl014c2542006-01-15 02:37:08 +01001672 return XFS_ERROR(ENOSPC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 }
1674 mp->m_resblks_avail = lcounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001675 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 } else { /* not reserved */
Jesper Juhl014c2542006-01-15 02:37:08 +01001677 return XFS_ERROR(ENOSPC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 }
1679 }
1680 }
1681
David Chinner4be536d2006-09-07 14:26:50 +10001682 mp->m_sb.sb_fdblocks = lcounter + XFS_ALLOC_SET_ASIDE(mp);
Jesper Juhl014c2542006-01-15 02:37:08 +01001683 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 case XFS_SBS_FREXTENTS:
1685 lcounter = (long long)mp->m_sb.sb_frextents;
1686 lcounter += delta;
1687 if (lcounter < 0) {
Jesper Juhl014c2542006-01-15 02:37:08 +01001688 return XFS_ERROR(ENOSPC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 }
1690 mp->m_sb.sb_frextents = lcounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001691 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 case XFS_SBS_DBLOCKS:
1693 lcounter = (long long)mp->m_sb.sb_dblocks;
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_dblocks = lcounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001700 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 case XFS_SBS_AGCOUNT:
1702 scounter = mp->m_sb.sb_agcount;
1703 scounter += delta;
1704 if (scounter < 0) {
1705 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001706 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 }
1708 mp->m_sb.sb_agcount = scounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001709 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 case XFS_SBS_IMAX_PCT:
1711 scounter = mp->m_sb.sb_imax_pct;
1712 scounter += delta;
1713 if (scounter < 0) {
1714 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001715 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 }
1717 mp->m_sb.sb_imax_pct = scounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001718 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 case XFS_SBS_REXTSIZE:
1720 scounter = mp->m_sb.sb_rextsize;
1721 scounter += delta;
1722 if (scounter < 0) {
1723 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001724 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 }
1726 mp->m_sb.sb_rextsize = scounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001727 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 case XFS_SBS_RBMBLOCKS:
1729 scounter = mp->m_sb.sb_rbmblocks;
1730 scounter += delta;
1731 if (scounter < 0) {
1732 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001733 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 }
1735 mp->m_sb.sb_rbmblocks = scounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001736 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 case XFS_SBS_RBLOCKS:
1738 lcounter = (long long)mp->m_sb.sb_rblocks;
1739 lcounter += delta;
1740 if (lcounter < 0) {
1741 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001742 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 }
1744 mp->m_sb.sb_rblocks = lcounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001745 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 case XFS_SBS_REXTENTS:
1747 lcounter = (long long)mp->m_sb.sb_rextents;
1748 lcounter += delta;
1749 if (lcounter < 0) {
1750 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001751 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 }
1753 mp->m_sb.sb_rextents = lcounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001754 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 case XFS_SBS_REXTSLOG:
1756 scounter = mp->m_sb.sb_rextslog;
1757 scounter += delta;
1758 if (scounter < 0) {
1759 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001760 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 }
1762 mp->m_sb.sb_rextslog = scounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001763 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 default:
1765 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001766 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 }
1768}
1769
1770/*
1771 * xfs_mod_incore_sb() is used to change a field in the in-core
1772 * superblock structure by the specified delta. This modification
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001773 * is protected by the m_sb_lock. Just use the xfs_mod_incore_sb_unlocked()
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 * routine to do the work.
1775 */
1776int
David Chinner20f4ebf2007-02-10 18:36:10 +11001777xfs_mod_incore_sb(
1778 xfs_mount_t *mp,
1779 xfs_sb_field_t field,
1780 int64_t delta,
1781 int rsvd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 int status;
1784
David Chinner8d280b92006-03-14 13:13:09 +11001785 /* check for per-cpu counters */
1786 switch (field) {
1787#ifdef HAVE_PERCPU_SB
1788 case XFS_SBS_ICOUNT:
1789 case XFS_SBS_IFREE:
1790 case XFS_SBS_FDBLOCKS:
1791 if (!(mp->m_flags & XFS_MOUNT_NO_PERCPU_SB)) {
1792 status = xfs_icsb_modify_counters(mp, field,
1793 delta, rsvd);
1794 break;
1795 }
1796 /* FALLTHROUGH */
1797#endif
1798 default:
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001799 spin_lock(&mp->m_sb_lock);
David Chinner8d280b92006-03-14 13:13:09 +11001800 status = xfs_mod_incore_sb_unlocked(mp, field, delta, rsvd);
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001801 spin_unlock(&mp->m_sb_lock);
David Chinner8d280b92006-03-14 13:13:09 +11001802 break;
1803 }
1804
Jesper Juhl014c2542006-01-15 02:37:08 +01001805 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806}
1807
1808/*
1809 * xfs_mod_incore_sb_batch() is used to change more than one field
1810 * in the in-core superblock structure at a time. This modification
1811 * is protected by a lock internal to this module. The fields and
1812 * changes to those fields are specified in the array of xfs_mod_sb
1813 * structures passed in.
1814 *
1815 * Either all of the specified deltas will be applied or none of
1816 * them will. If any modified field dips below 0, then all modifications
1817 * will be backed out and EINVAL will be returned.
1818 */
1819int
1820xfs_mod_incore_sb_batch(xfs_mount_t *mp, xfs_mod_sb_t *msb, uint nmsb, int rsvd)
1821{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 int status=0;
1823 xfs_mod_sb_t *msbp;
1824
1825 /*
1826 * Loop through the array of mod structures and apply each
1827 * individually. If any fail, then back out all those
1828 * which have already been applied. Do all of this within
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001829 * the scope of the m_sb_lock so that all of the changes will
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 * be atomic.
1831 */
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001832 spin_lock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 msbp = &msb[0];
1834 for (msbp = &msbp[0]; msbp < (msb + nmsb); msbp++) {
1835 /*
1836 * Apply the delta at index n. If it fails, break
1837 * from the loop so we'll fall into the undo loop
1838 * below.
1839 */
David Chinner8d280b92006-03-14 13:13:09 +11001840 switch (msbp->msb_field) {
1841#ifdef HAVE_PERCPU_SB
1842 case XFS_SBS_ICOUNT:
1843 case XFS_SBS_IFREE:
1844 case XFS_SBS_FDBLOCKS:
1845 if (!(mp->m_flags & XFS_MOUNT_NO_PERCPU_SB)) {
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001846 spin_unlock(&mp->m_sb_lock);
David Chinner20b64282007-02-10 18:35:09 +11001847 status = xfs_icsb_modify_counters(mp,
David Chinner8d280b92006-03-14 13:13:09 +11001848 msbp->msb_field,
1849 msbp->msb_delta, rsvd);
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001850 spin_lock(&mp->m_sb_lock);
David Chinner8d280b92006-03-14 13:13:09 +11001851 break;
1852 }
1853 /* FALLTHROUGH */
1854#endif
1855 default:
1856 status = xfs_mod_incore_sb_unlocked(mp,
1857 msbp->msb_field,
1858 msbp->msb_delta, rsvd);
1859 break;
1860 }
1861
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 if (status != 0) {
1863 break;
1864 }
1865 }
1866
1867 /*
1868 * If we didn't complete the loop above, then back out
1869 * any changes made to the superblock. If you add code
1870 * between the loop above and here, make sure that you
1871 * preserve the value of status. Loop back until
1872 * we step below the beginning of the array. Make sure
1873 * we don't touch anything back there.
1874 */
1875 if (status != 0) {
1876 msbp--;
1877 while (msbp >= msb) {
David Chinner8d280b92006-03-14 13:13:09 +11001878 switch (msbp->msb_field) {
1879#ifdef HAVE_PERCPU_SB
1880 case XFS_SBS_ICOUNT:
1881 case XFS_SBS_IFREE:
1882 case XFS_SBS_FDBLOCKS:
1883 if (!(mp->m_flags & XFS_MOUNT_NO_PERCPU_SB)) {
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001884 spin_unlock(&mp->m_sb_lock);
David Chinner20b64282007-02-10 18:35:09 +11001885 status = xfs_icsb_modify_counters(mp,
David Chinner8d280b92006-03-14 13:13:09 +11001886 msbp->msb_field,
1887 -(msbp->msb_delta),
1888 rsvd);
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001889 spin_lock(&mp->m_sb_lock);
David Chinner8d280b92006-03-14 13:13:09 +11001890 break;
1891 }
1892 /* FALLTHROUGH */
1893#endif
1894 default:
1895 status = xfs_mod_incore_sb_unlocked(mp,
1896 msbp->msb_field,
1897 -(msbp->msb_delta),
1898 rsvd);
1899 break;
1900 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 ASSERT(status == 0);
1902 msbp--;
1903 }
1904 }
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001905 spin_unlock(&mp->m_sb_lock);
Jesper Juhl014c2542006-01-15 02:37:08 +01001906 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907}
1908
1909/*
1910 * xfs_getsb() is called to obtain the buffer for the superblock.
1911 * The buffer is returned locked and read in from disk.
1912 * The buffer should be released with a call to xfs_brelse().
1913 *
1914 * If the flags parameter is BUF_TRYLOCK, then we'll only return
1915 * the superblock buffer if it can be locked without sleeping.
1916 * If it can't then we'll return NULL.
1917 */
1918xfs_buf_t *
1919xfs_getsb(
1920 xfs_mount_t *mp,
1921 int flags)
1922{
1923 xfs_buf_t *bp;
1924
1925 ASSERT(mp->m_sb_bp != NULL);
1926 bp = mp->m_sb_bp;
1927 if (flags & XFS_BUF_TRYLOCK) {
1928 if (!XFS_BUF_CPSEMA(bp)) {
1929 return NULL;
1930 }
1931 } else {
1932 XFS_BUF_PSEMA(bp, PRIBIO);
1933 }
1934 XFS_BUF_HOLD(bp);
1935 ASSERT(XFS_BUF_ISDONE(bp));
Jesper Juhl014c2542006-01-15 02:37:08 +01001936 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937}
1938
1939/*
1940 * Used to free the superblock along various error paths.
1941 */
1942void
1943xfs_freesb(
1944 xfs_mount_t *mp)
1945{
1946 xfs_buf_t *bp;
1947
1948 /*
1949 * Use xfs_getsb() so that the buffer will be locked
1950 * when we call xfs_buf_relse().
1951 */
1952 bp = xfs_getsb(mp, 0);
1953 XFS_BUF_UNMANAGE(bp);
1954 xfs_buf_relse(bp);
1955 mp->m_sb_bp = NULL;
1956}
1957
1958/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 * Used to log changes to the superblock unit and width fields which could
Eric Sandeene6957ea2008-04-10 12:19:34 +10001960 * be altered by the mount options, as well as any potential sb_features2
1961 * fixup. Only the first superblock is updated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 */
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001963int
David Chinneree1c0902008-03-06 13:45:50 +11001964xfs_mount_log_sb(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 xfs_mount_t *mp,
1966 __int64_t fields)
1967{
1968 xfs_trans_t *tp;
David Chinnere5720ee2008-04-10 12:21:18 +10001969 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
David Chinneree1c0902008-03-06 13:45:50 +11001971 ASSERT(fields & (XFS_SB_UNIT | XFS_SB_WIDTH | XFS_SB_UUID |
David Chinner4b166de2008-05-20 11:30:27 +10001972 XFS_SB_FEATURES2 | XFS_SB_BAD_FEATURES2 |
1973 XFS_SB_VERSIONNUM));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974
1975 tp = xfs_trans_alloc(mp, XFS_TRANS_SB_UNIT);
David Chinnere5720ee2008-04-10 12:21:18 +10001976 error = xfs_trans_reserve(tp, 0, mp->m_sb.sb_sectsize + 128, 0, 0,
1977 XFS_DEFAULT_LOG_COUNT);
1978 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 xfs_trans_cancel(tp, 0);
David Chinnere5720ee2008-04-10 12:21:18 +10001980 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 }
1982 xfs_mod_sb(tp, fields);
David Chinnere5720ee2008-04-10 12:21:18 +10001983 error = xfs_trans_commit(tp, 0);
1984 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985}
David Chinner8d280b92006-03-14 13:13:09 +11001986
1987
1988#ifdef HAVE_PERCPU_SB
1989/*
1990 * Per-cpu incore superblock counters
1991 *
1992 * Simple concept, difficult implementation
1993 *
1994 * Basically, replace the incore superblock counters with a distributed per cpu
1995 * counter for contended fields (e.g. free block count).
1996 *
1997 * Difficulties arise in that the incore sb is used for ENOSPC checking, and
1998 * hence needs to be accurately read when we are running low on space. Hence
1999 * there is a method to enable and disable the per-cpu counters based on how
2000 * much "stuff" is available in them.
2001 *
2002 * Basically, a counter is enabled if there is enough free resource to justify
2003 * running a per-cpu fast-path. If the per-cpu counter runs out (i.e. a local
2004 * ENOSPC), then we disable the counters to synchronise all callers and
2005 * re-distribute the available resources.
2006 *
2007 * If, once we redistributed the available resources, we still get a failure,
2008 * we disable the per-cpu counter and go through the slow path.
2009 *
2010 * The slow path is the current xfs_mod_incore_sb() function. This means that
Malcolm Parsons9da096f2009-03-29 09:55:42 +02002011 * when we disable a per-cpu counter, we need to drain its resources back to
David Chinner8d280b92006-03-14 13:13:09 +11002012 * the global superblock. We do this after disabling the counter to prevent
2013 * more threads from queueing up on the counter.
2014 *
2015 * Essentially, this means that we still need a lock in the fast path to enable
2016 * synchronisation between the global counters and the per-cpu counters. This
2017 * is not a problem because the lock will be local to a CPU almost all the time
2018 * and have little contention except when we get to ENOSPC conditions.
2019 *
2020 * Basically, this lock becomes a barrier that enables us to lock out the fast
2021 * path while we do things like enabling and disabling counters and
2022 * synchronising the counters.
2023 *
2024 * Locking rules:
2025 *
Eric Sandeen3685c2a2007-10-11 17:42:32 +10002026 * 1. m_sb_lock before picking up per-cpu locks
David Chinner8d280b92006-03-14 13:13:09 +11002027 * 2. per-cpu locks always picked up via for_each_online_cpu() order
Eric Sandeen3685c2a2007-10-11 17:42:32 +10002028 * 3. accurate counter sync requires m_sb_lock + per cpu locks
David Chinner8d280b92006-03-14 13:13:09 +11002029 * 4. modifying per-cpu counters requires holding per-cpu lock
Eric Sandeen3685c2a2007-10-11 17:42:32 +10002030 * 5. modifying global counters requires holding m_sb_lock
2031 * 6. enabling or disabling a counter requires holding the m_sb_lock
David Chinner8d280b92006-03-14 13:13:09 +11002032 * and _none_ of the per-cpu locks.
2033 *
2034 * Disabled counters are only ever re-enabled by a balance operation
2035 * that results in more free resources per CPU than a given threshold.
2036 * To ensure counters don't remain disabled, they are rebalanced when
2037 * the global resource goes above a higher threshold (i.e. some hysteresis
2038 * is present to prevent thrashing).
David Chinner8d280b92006-03-14 13:13:09 +11002039 */
David Chinnere8234a62006-03-14 13:23:52 +11002040
Chandra Seetharaman5a67e4c2006-06-27 02:54:11 -07002041#ifdef CONFIG_HOTPLUG_CPU
David Chinnere8234a62006-03-14 13:23:52 +11002042/*
2043 * hot-plug CPU notifier support.
2044 *
Chandra Seetharaman5a67e4c2006-06-27 02:54:11 -07002045 * We need a notifier per filesystem as we need to be able to identify
2046 * the filesystem to balance the counters out. This is achieved by
2047 * having a notifier block embedded in the xfs_mount_t and doing pointer
2048 * magic to get the mount pointer from the notifier block address.
David Chinnere8234a62006-03-14 13:23:52 +11002049 */
2050STATIC int
2051xfs_icsb_cpu_notify(
2052 struct notifier_block *nfb,
2053 unsigned long action,
2054 void *hcpu)
2055{
2056 xfs_icsb_cnts_t *cntp;
2057 xfs_mount_t *mp;
David Chinnere8234a62006-03-14 13:23:52 +11002058
2059 mp = (xfs_mount_t *)container_of(nfb, xfs_mount_t, m_icsb_notifier);
2060 cntp = (xfs_icsb_cnts_t *)
2061 per_cpu_ptr(mp->m_sb_cnts, (unsigned long)hcpu);
2062 switch (action) {
2063 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07002064 case CPU_UP_PREPARE_FROZEN:
David Chinnere8234a62006-03-14 13:23:52 +11002065 /* Easy Case - initialize the area and locks, and
2066 * then rebalance when online does everything else for us. */
David Chinner01e1b692006-03-14 13:29:16 +11002067 memset(cntp, 0, sizeof(xfs_icsb_cnts_t));
David Chinnere8234a62006-03-14 13:23:52 +11002068 break;
2069 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07002070 case CPU_ONLINE_FROZEN:
David Chinner03135cf2007-02-10 18:35:15 +11002071 xfs_icsb_lock(mp);
Christoph Hellwig45af6c62008-04-22 17:34:44 +10002072 xfs_icsb_balance_counter(mp, XFS_SBS_ICOUNT, 0);
2073 xfs_icsb_balance_counter(mp, XFS_SBS_IFREE, 0);
2074 xfs_icsb_balance_counter(mp, XFS_SBS_FDBLOCKS, 0);
David Chinner03135cf2007-02-10 18:35:15 +11002075 xfs_icsb_unlock(mp);
David Chinnere8234a62006-03-14 13:23:52 +11002076 break;
2077 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07002078 case CPU_DEAD_FROZEN:
David Chinnere8234a62006-03-14 13:23:52 +11002079 /* Disable all the counters, then fold the dead cpu's
2080 * count into the total on the global superblock and
2081 * re-enable the counters. */
David Chinner03135cf2007-02-10 18:35:15 +11002082 xfs_icsb_lock(mp);
Eric Sandeen3685c2a2007-10-11 17:42:32 +10002083 spin_lock(&mp->m_sb_lock);
David Chinnere8234a62006-03-14 13:23:52 +11002084 xfs_icsb_disable_counter(mp, XFS_SBS_ICOUNT);
2085 xfs_icsb_disable_counter(mp, XFS_SBS_IFREE);
2086 xfs_icsb_disable_counter(mp, XFS_SBS_FDBLOCKS);
2087
2088 mp->m_sb.sb_icount += cntp->icsb_icount;
2089 mp->m_sb.sb_ifree += cntp->icsb_ifree;
2090 mp->m_sb.sb_fdblocks += cntp->icsb_fdblocks;
2091
David Chinner01e1b692006-03-14 13:29:16 +11002092 memset(cntp, 0, sizeof(xfs_icsb_cnts_t));
David Chinnere8234a62006-03-14 13:23:52 +11002093
Christoph Hellwig45af6c62008-04-22 17:34:44 +10002094 xfs_icsb_balance_counter_locked(mp, XFS_SBS_ICOUNT, 0);
2095 xfs_icsb_balance_counter_locked(mp, XFS_SBS_IFREE, 0);
2096 xfs_icsb_balance_counter_locked(mp, XFS_SBS_FDBLOCKS, 0);
Eric Sandeen3685c2a2007-10-11 17:42:32 +10002097 spin_unlock(&mp->m_sb_lock);
David Chinner03135cf2007-02-10 18:35:15 +11002098 xfs_icsb_unlock(mp);
David Chinnere8234a62006-03-14 13:23:52 +11002099 break;
2100 }
2101
2102 return NOTIFY_OK;
2103}
Chandra Seetharaman5a67e4c2006-06-27 02:54:11 -07002104#endif /* CONFIG_HOTPLUG_CPU */
David Chinnere8234a62006-03-14 13:23:52 +11002105
David Chinner8d280b92006-03-14 13:13:09 +11002106int
2107xfs_icsb_init_counters(
2108 xfs_mount_t *mp)
2109{
2110 xfs_icsb_cnts_t *cntp;
2111 int i;
2112
2113 mp->m_sb_cnts = alloc_percpu(xfs_icsb_cnts_t);
2114 if (mp->m_sb_cnts == NULL)
2115 return -ENOMEM;
2116
Chandra Seetharaman5a67e4c2006-06-27 02:54:11 -07002117#ifdef CONFIG_HOTPLUG_CPU
David Chinnere8234a62006-03-14 13:23:52 +11002118 mp->m_icsb_notifier.notifier_call = xfs_icsb_cpu_notify;
2119 mp->m_icsb_notifier.priority = 0;
Chandra Seetharaman5a67e4c2006-06-27 02:54:11 -07002120 register_hotcpu_notifier(&mp->m_icsb_notifier);
2121#endif /* CONFIG_HOTPLUG_CPU */
David Chinnere8234a62006-03-14 13:23:52 +11002122
David Chinner8d280b92006-03-14 13:13:09 +11002123 for_each_online_cpu(i) {
2124 cntp = (xfs_icsb_cnts_t *)per_cpu_ptr(mp->m_sb_cnts, i);
David Chinner01e1b692006-03-14 13:29:16 +11002125 memset(cntp, 0, sizeof(xfs_icsb_cnts_t));
David Chinner8d280b92006-03-14 13:13:09 +11002126 }
David Chinner20b64282007-02-10 18:35:09 +11002127
2128 mutex_init(&mp->m_icsb_mutex);
2129
David Chinner8d280b92006-03-14 13:13:09 +11002130 /*
2131 * start with all counters disabled so that the
2132 * initial balance kicks us off correctly
2133 */
2134 mp->m_icsb_counters = -1;
2135 return 0;
2136}
2137
Lachlan McIlroy5478eea2007-02-10 18:36:29 +11002138void
2139xfs_icsb_reinit_counters(
2140 xfs_mount_t *mp)
2141{
2142 xfs_icsb_lock(mp);
2143 /*
2144 * start with all counters disabled so that the
2145 * initial balance kicks us off correctly
2146 */
2147 mp->m_icsb_counters = -1;
Christoph Hellwig45af6c62008-04-22 17:34:44 +10002148 xfs_icsb_balance_counter(mp, XFS_SBS_ICOUNT, 0);
2149 xfs_icsb_balance_counter(mp, XFS_SBS_IFREE, 0);
2150 xfs_icsb_balance_counter(mp, XFS_SBS_FDBLOCKS, 0);
Lachlan McIlroy5478eea2007-02-10 18:36:29 +11002151 xfs_icsb_unlock(mp);
2152}
2153
Christoph Hellwigc962fb72008-05-20 15:10:52 +10002154void
David Chinner8d280b92006-03-14 13:13:09 +11002155xfs_icsb_destroy_counters(
2156 xfs_mount_t *mp)
2157{
David Chinnere8234a62006-03-14 13:23:52 +11002158 if (mp->m_sb_cnts) {
Chandra Seetharaman5a67e4c2006-06-27 02:54:11 -07002159 unregister_hotcpu_notifier(&mp->m_icsb_notifier);
David Chinner8d280b92006-03-14 13:13:09 +11002160 free_percpu(mp->m_sb_cnts);
David Chinnere8234a62006-03-14 13:23:52 +11002161 }
David Chinner03135cf2007-02-10 18:35:15 +11002162 mutex_destroy(&mp->m_icsb_mutex);
David Chinner8d280b92006-03-14 13:13:09 +11002163}
2164
Christoph Hellwigb8f82a42009-11-14 16:17:22 +00002165STATIC void
David Chinner01e1b692006-03-14 13:29:16 +11002166xfs_icsb_lock_cntr(
2167 xfs_icsb_cnts_t *icsbp)
2168{
2169 while (test_and_set_bit(XFS_ICSB_FLAG_LOCK, &icsbp->icsb_flags)) {
2170 ndelay(1000);
2171 }
2172}
2173
Christoph Hellwigb8f82a42009-11-14 16:17:22 +00002174STATIC void
David Chinner01e1b692006-03-14 13:29:16 +11002175xfs_icsb_unlock_cntr(
2176 xfs_icsb_cnts_t *icsbp)
2177{
2178 clear_bit(XFS_ICSB_FLAG_LOCK, &icsbp->icsb_flags);
2179}
2180
David Chinner8d280b92006-03-14 13:13:09 +11002181
Christoph Hellwigb8f82a42009-11-14 16:17:22 +00002182STATIC void
David Chinner8d280b92006-03-14 13:13:09 +11002183xfs_icsb_lock_all_counters(
2184 xfs_mount_t *mp)
2185{
2186 xfs_icsb_cnts_t *cntp;
2187 int i;
2188
2189 for_each_online_cpu(i) {
2190 cntp = (xfs_icsb_cnts_t *)per_cpu_ptr(mp->m_sb_cnts, i);
David Chinner01e1b692006-03-14 13:29:16 +11002191 xfs_icsb_lock_cntr(cntp);
David Chinner8d280b92006-03-14 13:13:09 +11002192 }
2193}
2194
Christoph Hellwigb8f82a42009-11-14 16:17:22 +00002195STATIC void
David Chinner8d280b92006-03-14 13:13:09 +11002196xfs_icsb_unlock_all_counters(
2197 xfs_mount_t *mp)
2198{
2199 xfs_icsb_cnts_t *cntp;
2200 int i;
2201
2202 for_each_online_cpu(i) {
2203 cntp = (xfs_icsb_cnts_t *)per_cpu_ptr(mp->m_sb_cnts, i);
David Chinner01e1b692006-03-14 13:29:16 +11002204 xfs_icsb_unlock_cntr(cntp);
David Chinner8d280b92006-03-14 13:13:09 +11002205 }
2206}
2207
2208STATIC void
2209xfs_icsb_count(
2210 xfs_mount_t *mp,
2211 xfs_icsb_cnts_t *cnt,
2212 int flags)
2213{
2214 xfs_icsb_cnts_t *cntp;
2215 int i;
2216
2217 memset(cnt, 0, sizeof(xfs_icsb_cnts_t));
2218
2219 if (!(flags & XFS_ICSB_LAZY_COUNT))
2220 xfs_icsb_lock_all_counters(mp);
2221
2222 for_each_online_cpu(i) {
2223 cntp = (xfs_icsb_cnts_t *)per_cpu_ptr(mp->m_sb_cnts, i);
2224 cnt->icsb_icount += cntp->icsb_icount;
2225 cnt->icsb_ifree += cntp->icsb_ifree;
2226 cnt->icsb_fdblocks += cntp->icsb_fdblocks;
2227 }
2228
2229 if (!(flags & XFS_ICSB_LAZY_COUNT))
2230 xfs_icsb_unlock_all_counters(mp);
2231}
2232
2233STATIC int
2234xfs_icsb_counter_disabled(
2235 xfs_mount_t *mp,
2236 xfs_sb_field_t field)
2237{
2238 ASSERT((field >= XFS_SBS_ICOUNT) && (field <= XFS_SBS_FDBLOCKS));
2239 return test_bit(field, &mp->m_icsb_counters);
2240}
2241
David Chinner36fbe6e2008-04-10 12:19:56 +10002242STATIC void
David Chinner8d280b92006-03-14 13:13:09 +11002243xfs_icsb_disable_counter(
2244 xfs_mount_t *mp,
2245 xfs_sb_field_t field)
2246{
2247 xfs_icsb_cnts_t cnt;
2248
2249 ASSERT((field >= XFS_SBS_ICOUNT) && (field <= XFS_SBS_FDBLOCKS));
2250
David Chinner20b64282007-02-10 18:35:09 +11002251 /*
2252 * If we are already disabled, then there is nothing to do
2253 * here. We check before locking all the counters to avoid
2254 * the expensive lock operation when being called in the
2255 * slow path and the counter is already disabled. This is
2256 * safe because the only time we set or clear this state is under
2257 * the m_icsb_mutex.
2258 */
2259 if (xfs_icsb_counter_disabled(mp, field))
David Chinner36fbe6e2008-04-10 12:19:56 +10002260 return;
David Chinner20b64282007-02-10 18:35:09 +11002261
David Chinner8d280b92006-03-14 13:13:09 +11002262 xfs_icsb_lock_all_counters(mp);
2263 if (!test_and_set_bit(field, &mp->m_icsb_counters)) {
2264 /* drain back to superblock */
2265
Christoph Hellwigce461932008-04-22 17:34:50 +10002266 xfs_icsb_count(mp, &cnt, XFS_ICSB_LAZY_COUNT);
David Chinner8d280b92006-03-14 13:13:09 +11002267 switch(field) {
2268 case XFS_SBS_ICOUNT:
2269 mp->m_sb.sb_icount = cnt.icsb_icount;
2270 break;
2271 case XFS_SBS_IFREE:
2272 mp->m_sb.sb_ifree = cnt.icsb_ifree;
2273 break;
2274 case XFS_SBS_FDBLOCKS:
2275 mp->m_sb.sb_fdblocks = cnt.icsb_fdblocks;
2276 break;
2277 default:
2278 BUG();
2279 }
2280 }
2281
2282 xfs_icsb_unlock_all_counters(mp);
David Chinner8d280b92006-03-14 13:13:09 +11002283}
2284
2285STATIC void
2286xfs_icsb_enable_counter(
2287 xfs_mount_t *mp,
2288 xfs_sb_field_t field,
2289 uint64_t count,
2290 uint64_t resid)
2291{
2292 xfs_icsb_cnts_t *cntp;
2293 int i;
2294
2295 ASSERT((field >= XFS_SBS_ICOUNT) && (field <= XFS_SBS_FDBLOCKS));
2296
2297 xfs_icsb_lock_all_counters(mp);
2298 for_each_online_cpu(i) {
2299 cntp = per_cpu_ptr(mp->m_sb_cnts, i);
2300 switch (field) {
2301 case XFS_SBS_ICOUNT:
2302 cntp->icsb_icount = count + resid;
2303 break;
2304 case XFS_SBS_IFREE:
2305 cntp->icsb_ifree = count + resid;
2306 break;
2307 case XFS_SBS_FDBLOCKS:
2308 cntp->icsb_fdblocks = count + resid;
2309 break;
2310 default:
2311 BUG();
2312 break;
2313 }
2314 resid = 0;
2315 }
2316 clear_bit(field, &mp->m_icsb_counters);
2317 xfs_icsb_unlock_all_counters(mp);
2318}
2319
David Chinnerdbcabad2007-02-10 18:36:17 +11002320void
Christoph Hellwigd4d90b52008-04-22 17:34:37 +10002321xfs_icsb_sync_counters_locked(
David Chinner8d280b92006-03-14 13:13:09 +11002322 xfs_mount_t *mp,
2323 int flags)
2324{
2325 xfs_icsb_cnts_t cnt;
David Chinner8d280b92006-03-14 13:13:09 +11002326
David Chinner8d280b92006-03-14 13:13:09 +11002327 xfs_icsb_count(mp, &cnt, flags);
2328
David Chinner8d280b92006-03-14 13:13:09 +11002329 if (!xfs_icsb_counter_disabled(mp, XFS_SBS_ICOUNT))
2330 mp->m_sb.sb_icount = cnt.icsb_icount;
2331 if (!xfs_icsb_counter_disabled(mp, XFS_SBS_IFREE))
2332 mp->m_sb.sb_ifree = cnt.icsb_ifree;
2333 if (!xfs_icsb_counter_disabled(mp, XFS_SBS_FDBLOCKS))
2334 mp->m_sb.sb_fdblocks = cnt.icsb_fdblocks;
David Chinner8d280b92006-03-14 13:13:09 +11002335}
2336
2337/*
2338 * Accurate update of per-cpu counters to incore superblock
2339 */
Christoph Hellwigd4d90b52008-04-22 17:34:37 +10002340void
David Chinner8d280b92006-03-14 13:13:09 +11002341xfs_icsb_sync_counters(
Christoph Hellwigd4d90b52008-04-22 17:34:37 +10002342 xfs_mount_t *mp,
2343 int flags)
David Chinner8d280b92006-03-14 13:13:09 +11002344{
Christoph Hellwigd4d90b52008-04-22 17:34:37 +10002345 spin_lock(&mp->m_sb_lock);
2346 xfs_icsb_sync_counters_locked(mp, flags);
2347 spin_unlock(&mp->m_sb_lock);
David Chinner8d280b92006-03-14 13:13:09 +11002348}
2349
2350/*
2351 * Balance and enable/disable counters as necessary.
2352 *
David Chinner20b64282007-02-10 18:35:09 +11002353 * Thresholds for re-enabling counters are somewhat magic. inode counts are
2354 * chosen to be the same number as single on disk allocation chunk per CPU, and
2355 * free blocks is something far enough zero that we aren't going thrash when we
2356 * get near ENOSPC. We also need to supply a minimum we require per cpu to
2357 * prevent looping endlessly when xfs_alloc_space asks for more than will
2358 * be distributed to a single CPU but each CPU has enough blocks to be
2359 * reenabled.
2360 *
2361 * Note that we can be called when counters are already disabled.
2362 * xfs_icsb_disable_counter() optimises the counter locking in this case to
2363 * prevent locking every per-cpu counter needlessly.
David Chinner8d280b92006-03-14 13:13:09 +11002364 */
David Chinner20b64282007-02-10 18:35:09 +11002365
2366#define XFS_ICSB_INO_CNTR_REENABLE (uint64_t)64
David Chinner4be536d2006-09-07 14:26:50 +10002367#define XFS_ICSB_FDBLK_CNTR_REENABLE(mp) \
David Chinner20b64282007-02-10 18:35:09 +11002368 (uint64_t)(512 + XFS_ALLOC_SET_ASIDE(mp))
David Chinner8d280b92006-03-14 13:13:09 +11002369STATIC void
Christoph Hellwig45af6c62008-04-22 17:34:44 +10002370xfs_icsb_balance_counter_locked(
David Chinner8d280b92006-03-14 13:13:09 +11002371 xfs_mount_t *mp,
2372 xfs_sb_field_t field,
David Chinner20b64282007-02-10 18:35:09 +11002373 int min_per_cpu)
David Chinner8d280b92006-03-14 13:13:09 +11002374{
Nathan Scott6fdf8cc2006-06-28 10:13:52 +10002375 uint64_t count, resid;
David Chinner8d280b92006-03-14 13:13:09 +11002376 int weight = num_online_cpus();
David Chinner20b64282007-02-10 18:35:09 +11002377 uint64_t min = (uint64_t)min_per_cpu;
David Chinner8d280b92006-03-14 13:13:09 +11002378
David Chinner8d280b92006-03-14 13:13:09 +11002379 /* disable counter and sync counter */
2380 xfs_icsb_disable_counter(mp, field);
2381
2382 /* update counters - first CPU gets residual*/
2383 switch (field) {
2384 case XFS_SBS_ICOUNT:
2385 count = mp->m_sb.sb_icount;
2386 resid = do_div(count, weight);
David Chinner20b64282007-02-10 18:35:09 +11002387 if (count < max(min, XFS_ICSB_INO_CNTR_REENABLE))
Christoph Hellwig45af6c62008-04-22 17:34:44 +10002388 return;
David Chinner8d280b92006-03-14 13:13:09 +11002389 break;
2390 case XFS_SBS_IFREE:
2391 count = mp->m_sb.sb_ifree;
2392 resid = do_div(count, weight);
David Chinner20b64282007-02-10 18:35:09 +11002393 if (count < max(min, XFS_ICSB_INO_CNTR_REENABLE))
Christoph Hellwig45af6c62008-04-22 17:34:44 +10002394 return;
David Chinner8d280b92006-03-14 13:13:09 +11002395 break;
2396 case XFS_SBS_FDBLOCKS:
2397 count = mp->m_sb.sb_fdblocks;
2398 resid = do_div(count, weight);
David Chinner20b64282007-02-10 18:35:09 +11002399 if (count < max(min, XFS_ICSB_FDBLK_CNTR_REENABLE(mp)))
Christoph Hellwig45af6c62008-04-22 17:34:44 +10002400 return;
David Chinner8d280b92006-03-14 13:13:09 +11002401 break;
2402 default:
2403 BUG();
Nathan Scott6fdf8cc2006-06-28 10:13:52 +10002404 count = resid = 0; /* quiet, gcc */
David Chinner8d280b92006-03-14 13:13:09 +11002405 break;
2406 }
2407
2408 xfs_icsb_enable_counter(mp, field, count, resid);
Christoph Hellwig45af6c62008-04-22 17:34:44 +10002409}
2410
2411STATIC void
2412xfs_icsb_balance_counter(
2413 xfs_mount_t *mp,
2414 xfs_sb_field_t fields,
2415 int min_per_cpu)
2416{
2417 spin_lock(&mp->m_sb_lock);
2418 xfs_icsb_balance_counter_locked(mp, fields, min_per_cpu);
2419 spin_unlock(&mp->m_sb_lock);
David Chinner8d280b92006-03-14 13:13:09 +11002420}
2421
David Chinnera8272ce2007-11-23 16:28:09 +11002422STATIC int
David Chinner20b64282007-02-10 18:35:09 +11002423xfs_icsb_modify_counters(
David Chinner8d280b92006-03-14 13:13:09 +11002424 xfs_mount_t *mp,
2425 xfs_sb_field_t field,
David Chinner20f4ebf2007-02-10 18:36:10 +11002426 int64_t delta,
David Chinner20b64282007-02-10 18:35:09 +11002427 int rsvd)
David Chinner8d280b92006-03-14 13:13:09 +11002428{
2429 xfs_icsb_cnts_t *icsbp;
2430 long long lcounter; /* long counter for 64 bit fields */
Christoph Lameter7a9e02d2009-10-03 19:48:23 +09002431 int ret = 0;
David Chinner8d280b92006-03-14 13:13:09 +11002432
David Chinner20b64282007-02-10 18:35:09 +11002433 might_sleep();
David Chinner8d280b92006-03-14 13:13:09 +11002434again:
Christoph Lameter7a9e02d2009-10-03 19:48:23 +09002435 preempt_disable();
2436 icsbp = this_cpu_ptr(mp->m_sb_cnts);
David Chinner20b64282007-02-10 18:35:09 +11002437
2438 /*
2439 * if the counter is disabled, go to slow path
2440 */
David Chinner8d280b92006-03-14 13:13:09 +11002441 if (unlikely(xfs_icsb_counter_disabled(mp, field)))
2442 goto slow_path;
David Chinner20b64282007-02-10 18:35:09 +11002443 xfs_icsb_lock_cntr(icsbp);
2444 if (unlikely(xfs_icsb_counter_disabled(mp, field))) {
2445 xfs_icsb_unlock_cntr(icsbp);
2446 goto slow_path;
2447 }
David Chinner8d280b92006-03-14 13:13:09 +11002448
2449 switch (field) {
2450 case XFS_SBS_ICOUNT:
2451 lcounter = icsbp->icsb_icount;
2452 lcounter += delta;
2453 if (unlikely(lcounter < 0))
David Chinner20b64282007-02-10 18:35:09 +11002454 goto balance_counter;
David Chinner8d280b92006-03-14 13:13:09 +11002455 icsbp->icsb_icount = lcounter;
2456 break;
2457
2458 case XFS_SBS_IFREE:
2459 lcounter = icsbp->icsb_ifree;
2460 lcounter += delta;
2461 if (unlikely(lcounter < 0))
David Chinner20b64282007-02-10 18:35:09 +11002462 goto balance_counter;
David Chinner8d280b92006-03-14 13:13:09 +11002463 icsbp->icsb_ifree = lcounter;
2464 break;
2465
2466 case XFS_SBS_FDBLOCKS:
2467 BUG_ON((mp->m_resblks - mp->m_resblks_avail) != 0);
2468
David Chinner4be536d2006-09-07 14:26:50 +10002469 lcounter = icsbp->icsb_fdblocks - XFS_ALLOC_SET_ASIDE(mp);
David Chinner8d280b92006-03-14 13:13:09 +11002470 lcounter += delta;
2471 if (unlikely(lcounter < 0))
David Chinner20b64282007-02-10 18:35:09 +11002472 goto balance_counter;
David Chinner4be536d2006-09-07 14:26:50 +10002473 icsbp->icsb_fdblocks = lcounter + XFS_ALLOC_SET_ASIDE(mp);
David Chinner8d280b92006-03-14 13:13:09 +11002474 break;
2475 default:
2476 BUG();
2477 break;
2478 }
David Chinner01e1b692006-03-14 13:29:16 +11002479 xfs_icsb_unlock_cntr(icsbp);
Christoph Lameter7a9e02d2009-10-03 19:48:23 +09002480 preempt_enable();
David Chinner8d280b92006-03-14 13:13:09 +11002481 return 0;
2482
David Chinner8d280b92006-03-14 13:13:09 +11002483slow_path:
Christoph Lameter7a9e02d2009-10-03 19:48:23 +09002484 preempt_enable();
David Chinner20b64282007-02-10 18:35:09 +11002485
2486 /*
2487 * serialise with a mutex so we don't burn lots of cpu on
2488 * the superblock lock. We still need to hold the superblock
2489 * lock, however, when we modify the global structures.
2490 */
David Chinner03135cf2007-02-10 18:35:15 +11002491 xfs_icsb_lock(mp);
David Chinner20b64282007-02-10 18:35:09 +11002492
2493 /*
2494 * Now running atomically.
2495 *
2496 * If the counter is enabled, someone has beaten us to rebalancing.
2497 * Drop the lock and try again in the fast path....
2498 */
2499 if (!(xfs_icsb_counter_disabled(mp, field))) {
David Chinner03135cf2007-02-10 18:35:15 +11002500 xfs_icsb_unlock(mp);
David Chinner20b64282007-02-10 18:35:09 +11002501 goto again;
2502 }
2503
2504 /*
2505 * The counter is currently disabled. Because we are
2506 * running atomically here, we know a rebalance cannot
2507 * be in progress. Hence we can go straight to operating
2508 * on the global superblock. We do not call xfs_mod_incore_sb()
Eric Sandeen3685c2a2007-10-11 17:42:32 +10002509 * here even though we need to get the m_sb_lock. Doing so
David Chinner20b64282007-02-10 18:35:09 +11002510 * will cause us to re-enter this function and deadlock.
Eric Sandeen3685c2a2007-10-11 17:42:32 +10002511 * Hence we get the m_sb_lock ourselves and then call
David Chinner20b64282007-02-10 18:35:09 +11002512 * xfs_mod_incore_sb_unlocked() as the unlocked path operates
2513 * directly on the global counters.
2514 */
Eric Sandeen3685c2a2007-10-11 17:42:32 +10002515 spin_lock(&mp->m_sb_lock);
David Chinner20b64282007-02-10 18:35:09 +11002516 ret = xfs_mod_incore_sb_unlocked(mp, field, delta, rsvd);
Eric Sandeen3685c2a2007-10-11 17:42:32 +10002517 spin_unlock(&mp->m_sb_lock);
David Chinner20b64282007-02-10 18:35:09 +11002518
2519 /*
2520 * Now that we've modified the global superblock, we
2521 * may be able to re-enable the distributed counters
2522 * (e.g. lots of space just got freed). After that
2523 * we are done.
2524 */
2525 if (ret != ENOSPC)
Christoph Hellwig45af6c62008-04-22 17:34:44 +10002526 xfs_icsb_balance_counter(mp, field, 0);
David Chinner03135cf2007-02-10 18:35:15 +11002527 xfs_icsb_unlock(mp);
David Chinner20b64282007-02-10 18:35:09 +11002528 return ret;
2529
2530balance_counter:
David Chinner01e1b692006-03-14 13:29:16 +11002531 xfs_icsb_unlock_cntr(icsbp);
Christoph Lameter7a9e02d2009-10-03 19:48:23 +09002532 preempt_enable();
David Chinner8d280b92006-03-14 13:13:09 +11002533
David Chinner20b64282007-02-10 18:35:09 +11002534 /*
2535 * We may have multiple threads here if multiple per-cpu
2536 * counters run dry at the same time. This will mean we can
2537 * do more balances than strictly necessary but it is not
2538 * the common slowpath case.
2539 */
David Chinner03135cf2007-02-10 18:35:15 +11002540 xfs_icsb_lock(mp);
David Chinner8d280b92006-03-14 13:13:09 +11002541
David Chinner20b64282007-02-10 18:35:09 +11002542 /*
2543 * running atomically.
2544 *
2545 * This will leave the counter in the correct state for future
2546 * accesses. After the rebalance, we simply try again and our retry
2547 * will either succeed through the fast path or slow path without
2548 * another balance operation being required.
2549 */
Christoph Hellwig45af6c62008-04-22 17:34:44 +10002550 xfs_icsb_balance_counter(mp, field, delta);
David Chinner03135cf2007-02-10 18:35:15 +11002551 xfs_icsb_unlock(mp);
David Chinner20b64282007-02-10 18:35:09 +11002552 goto again;
David Chinner8d280b92006-03-14 13:13:09 +11002553}
2554
David Chinner8d280b92006-03-14 13:13:09 +11002555#endif