blob: 3a647339f40ebc9df7ba6bda5d4f741963adb0f5 [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"
Nathan Scotta844f452005-11-02 14:38:42 +110026#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"
Nathan Scotta844f452005-11-02 14:38:42 +110030#include "xfs_da_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_bmap_btree.h"
32#include "xfs_ialloc_btree.h"
33#include "xfs_alloc_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110034#include "xfs_dir2_sf.h"
35#include "xfs_attr_sf.h"
36#include "xfs_dinode.h"
37#include "xfs_inode.h"
38#include "xfs_inode_item.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include "xfs_btree.h"
40#include "xfs_alloc.h"
41#include "xfs_ialloc.h"
Nathan Scotta844f452005-11-02 14:38:42 +110042#include "xfs_quota.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include "xfs_error.h"
44#include "xfs_bmap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include "xfs_rw.h"
46#include "xfs_refcache.h"
47#include "xfs_buf_item.h"
Nathan Scotta844f452005-11-02 14:38:42 +110048#include "xfs_log_priv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include "xfs_dir2_trace.h"
Nathan Scotta844f452005-11-02 14:38:42 +110050#include "xfs_extfree_item.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include "xfs_acl.h"
52#include "xfs_attr.h"
53#include "xfs_clnt.h"
Christoph Hellwige13a73f2006-01-11 15:30:08 +110054#include "xfs_fsops.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
David Chinner8d280b92006-03-14 13:13:09 +110056STATIC int xfs_sync(bhv_desc_t *, int, cred_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58int
59xfs_init(void)
60{
61 extern kmem_zone_t *xfs_bmap_free_item_zone;
62 extern kmem_zone_t *xfs_btree_cur_zone;
63 extern kmem_zone_t *xfs_trans_zone;
64 extern kmem_zone_t *xfs_buf_item_zone;
65 extern kmem_zone_t *xfs_dabuf_zone;
66#ifdef XFS_DABUF_DEBUG
67 extern lock_t xfs_dabuf_global_lock;
68 spinlock_init(&xfs_dabuf_global_lock, "xfsda");
69#endif
70
71 /*
72 * Initialize all of the zone allocators we use.
73 */
74 xfs_bmap_free_item_zone = kmem_zone_init(sizeof(xfs_bmap_free_item_t),
75 "xfs_bmap_free_item");
76 xfs_btree_cur_zone = kmem_zone_init(sizeof(xfs_btree_cur_t),
77 "xfs_btree_cur");
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 xfs_trans_zone = kmem_zone_init(sizeof(xfs_trans_t), "xfs_trans");
79 xfs_da_state_zone =
80 kmem_zone_init(sizeof(xfs_da_state_t), "xfs_da_state");
81 xfs_dabuf_zone = kmem_zone_init(sizeof(xfs_dabuf_t), "xfs_dabuf");
Nathan Scott87582802006-03-14 13:18:19 +110082 xfs_ifork_zone = kmem_zone_init(sizeof(xfs_ifork_t), "xfs_ifork");
83 xfs_acl_zone_init(xfs_acl_zone, "xfs_acl");
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85 /*
86 * The size of the zone allocated buf log item is the maximum
87 * size possible under XFS. This wastes a little bit of memory,
88 * but it is much faster.
89 */
90 xfs_buf_item_zone =
91 kmem_zone_init((sizeof(xfs_buf_log_item_t) +
92 (((XFS_MAX_BLOCKSIZE / XFS_BLI_CHUNK) /
93 NBWORD) * sizeof(int))),
94 "xfs_buf_item");
Nathan Scott87582802006-03-14 13:18:19 +110095 xfs_efd_zone =
96 kmem_zone_init((sizeof(xfs_efd_log_item_t) +
97 ((XFS_EFD_MAX_FAST_EXTENTS - 1) *
98 sizeof(xfs_extent_t))),
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 "xfs_efd_item");
Nathan Scott87582802006-03-14 13:18:19 +1100100 xfs_efi_zone =
101 kmem_zone_init((sizeof(xfs_efi_log_item_t) +
102 ((XFS_EFI_MAX_FAST_EXTENTS - 1) *
103 sizeof(xfs_extent_t))),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 "xfs_efi_item");
Nathan Scott87582802006-03-14 13:18:19 +1100105
106 /*
107 * These zones warrant special memory allocator hints
108 */
109 xfs_inode_zone =
110 kmem_zone_init_flags(sizeof(xfs_inode_t), "xfs_inode",
111 KM_ZONE_HWALIGN | KM_ZONE_RECLAIM |
112 KM_ZONE_SPREAD, NULL);
113 xfs_ili_zone =
114 kmem_zone_init_flags(sizeof(xfs_inode_log_item_t), "xfs_ili",
115 KM_ZONE_SPREAD, NULL);
116 xfs_chashlist_zone =
117 kmem_zone_init_flags(sizeof(xfs_chashlist_t), "xfs_chashlist",
118 KM_ZONE_SPREAD, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120 /*
121 * Allocate global trace buffers.
122 */
123#ifdef XFS_ALLOC_TRACE
124 xfs_alloc_trace_buf = ktrace_alloc(XFS_ALLOC_TRACE_SIZE, KM_SLEEP);
125#endif
126#ifdef XFS_BMAP_TRACE
127 xfs_bmap_trace_buf = ktrace_alloc(XFS_BMAP_TRACE_SIZE, KM_SLEEP);
128#endif
129#ifdef XFS_BMBT_TRACE
130 xfs_bmbt_trace_buf = ktrace_alloc(XFS_BMBT_TRACE_SIZE, KM_SLEEP);
131#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132#ifdef XFS_ATTR_TRACE
133 xfs_attr_trace_buf = ktrace_alloc(XFS_ATTR_TRACE_SIZE, KM_SLEEP);
134#endif
135#ifdef XFS_DIR2_TRACE
136 xfs_dir2_trace_buf = ktrace_alloc(XFS_DIR2_GTRACE_SIZE, KM_SLEEP);
137#endif
138
139 xfs_dir_startup();
140
141#if (defined(DEBUG) || defined(INDUCE_IO_ERROR))
142 xfs_error_test_init();
143#endif /* DEBUG || INDUCE_IO_ERROR */
144
145 xfs_init_procfs();
146 xfs_sysctl_register();
147 return 0;
148}
149
150void
151xfs_cleanup(void)
152{
153 extern kmem_zone_t *xfs_bmap_free_item_zone;
154 extern kmem_zone_t *xfs_btree_cur_zone;
155 extern kmem_zone_t *xfs_inode_zone;
156 extern kmem_zone_t *xfs_trans_zone;
157 extern kmem_zone_t *xfs_da_state_zone;
158 extern kmem_zone_t *xfs_dabuf_zone;
159 extern kmem_zone_t *xfs_efd_zone;
160 extern kmem_zone_t *xfs_efi_zone;
161 extern kmem_zone_t *xfs_buf_item_zone;
162 extern kmem_zone_t *xfs_chashlist_zone;
163
164 xfs_cleanup_procfs();
165 xfs_sysctl_unregister();
166 xfs_refcache_destroy();
167 xfs_acl_zone_destroy(xfs_acl_zone);
168
169#ifdef XFS_DIR2_TRACE
170 ktrace_free(xfs_dir2_trace_buf);
171#endif
172#ifdef XFS_ATTR_TRACE
173 ktrace_free(xfs_attr_trace_buf);
174#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175#ifdef XFS_BMBT_TRACE
176 ktrace_free(xfs_bmbt_trace_buf);
177#endif
178#ifdef XFS_BMAP_TRACE
179 ktrace_free(xfs_bmap_trace_buf);
180#endif
181#ifdef XFS_ALLOC_TRACE
182 ktrace_free(xfs_alloc_trace_buf);
183#endif
184
Nathan Scott3758dee2006-03-22 12:47:28 +1100185 kmem_zone_destroy(xfs_bmap_free_item_zone);
186 kmem_zone_destroy(xfs_btree_cur_zone);
187 kmem_zone_destroy(xfs_inode_zone);
188 kmem_zone_destroy(xfs_trans_zone);
189 kmem_zone_destroy(xfs_da_state_zone);
190 kmem_zone_destroy(xfs_dabuf_zone);
191 kmem_zone_destroy(xfs_buf_item_zone);
192 kmem_zone_destroy(xfs_efd_zone);
193 kmem_zone_destroy(xfs_efi_zone);
194 kmem_zone_destroy(xfs_ifork_zone);
195 kmem_zone_destroy(xfs_ili_zone);
196 kmem_zone_destroy(xfs_chashlist_zone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197}
198
199/*
200 * xfs_start_flags
201 *
202 * This function fills in xfs_mount_t fields based on mount args.
203 * Note: the superblock has _not_ yet been read in.
204 */
205STATIC int
206xfs_start_flags(
Nathan Scottb83bd132006-06-09 16:48:30 +1000207 struct bhv_vfs *vfs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 struct xfs_mount_args *ap,
209 struct xfs_mount *mp)
210{
211 /* Values are in BBs */
212 if ((ap->flags & XFSMNT_NOALIGN) != XFSMNT_NOALIGN) {
213 /*
214 * At this point the superblock has not been read
215 * in, therefore we do not know the block size.
216 * Before the mount call ends we will convert
217 * these to FSBs.
218 */
219 mp->m_dalign = ap->sunit;
220 mp->m_swidth = ap->swidth;
221 }
222
223 if (ap->logbufs != -1 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 ap->logbufs != 0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 (ap->logbufs < XLOG_MIN_ICLOGS ||
226 ap->logbufs > XLOG_MAX_ICLOGS)) {
227 cmn_err(CE_WARN,
228 "XFS: invalid logbufs value: %d [not %d-%d]",
229 ap->logbufs, XLOG_MIN_ICLOGS, XLOG_MAX_ICLOGS);
230 return XFS_ERROR(EINVAL);
231 }
232 mp->m_logbufs = ap->logbufs;
233 if (ap->logbufsize != -1 &&
Nathan Scottcfcbbbd2005-11-02 15:12:04 +1100234 ap->logbufsize != 0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 ap->logbufsize != 16 * 1024 &&
236 ap->logbufsize != 32 * 1024 &&
237 ap->logbufsize != 64 * 1024 &&
238 ap->logbufsize != 128 * 1024 &&
239 ap->logbufsize != 256 * 1024) {
240 cmn_err(CE_WARN,
241 "XFS: invalid logbufsize: %d [not 16k,32k,64k,128k or 256k]",
242 ap->logbufsize);
243 return XFS_ERROR(EINVAL);
244 }
245 mp->m_ihsize = ap->ihashsize;
246 mp->m_logbsize = ap->logbufsize;
247 mp->m_fsname_len = strlen(ap->fsname) + 1;
248 mp->m_fsname = kmem_alloc(mp->m_fsname_len, KM_SLEEP);
249 strcpy(mp->m_fsname, ap->fsname);
Nathan Scottfc1f8c12005-11-02 11:44:33 +1100250 if (ap->rtname[0]) {
251 mp->m_rtname = kmem_alloc(strlen(ap->rtname) + 1, KM_SLEEP);
252 strcpy(mp->m_rtname, ap->rtname);
253 }
254 if (ap->logname[0]) {
255 mp->m_logname = kmem_alloc(strlen(ap->logname) + 1, KM_SLEEP);
256 strcpy(mp->m_logname, ap->logname);
257 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259 if (ap->flags & XFSMNT_WSYNC)
260 mp->m_flags |= XFS_MOUNT_WSYNC;
261#if XFS_BIG_INUMS
262 if (ap->flags & XFSMNT_INO64) {
263 mp->m_flags |= XFS_MOUNT_INO64;
264 mp->m_inoadd = XFS_INO64_OFFSET;
265 }
266#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 if (ap->flags & XFSMNT_RETERR)
268 mp->m_flags |= XFS_MOUNT_RETERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 if (ap->flags & XFSMNT_NOALIGN)
270 mp->m_flags |= XFS_MOUNT_NOALIGN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 if (ap->flags & XFSMNT_SWALLOC)
272 mp->m_flags |= XFS_MOUNT_SWALLOC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 if (ap->flags & XFSMNT_OSYNCISOSYNC)
274 mp->m_flags |= XFS_MOUNT_OSYNCISOSYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 if (ap->flags & XFSMNT_32BITINODES)
Nathan Scottc11e2c32005-11-02 15:11:45 +1100276 mp->m_flags |= XFS_MOUNT_32BITINODES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
278 if (ap->flags & XFSMNT_IOSIZE) {
279 if (ap->iosizelog > XFS_MAX_IO_LOG ||
280 ap->iosizelog < XFS_MIN_IO_LOG) {
281 cmn_err(CE_WARN,
282 "XFS: invalid log iosize: %d [not %d-%d]",
283 ap->iosizelog, XFS_MIN_IO_LOG,
284 XFS_MAX_IO_LOG);
285 return XFS_ERROR(EINVAL);
286 }
287
288 mp->m_flags |= XFS_MOUNT_DFLT_IOSIZE;
289 mp->m_readio_log = mp->m_writeio_log = ap->iosizelog;
290 }
291
292 if (ap->flags & XFSMNT_IHASHSIZE)
293 mp->m_flags |= XFS_MOUNT_IHASHSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 if (ap->flags & XFSMNT_IDELETE)
295 mp->m_flags |= XFS_MOUNT_IDELETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 if (ap->flags & XFSMNT_DIRSYNC)
297 mp->m_flags |= XFS_MOUNT_DIRSYNC;
Nathan Scott13059ff2006-01-11 15:32:01 +1100298 if (ap->flags & XFSMNT_ATTR2)
299 mp->m_flags |= XFS_MOUNT_ATTR2;
David Chinnere8c8b3a2005-11-02 10:33:05 +1100300
Nathan Scotte718eeb42005-11-02 15:09:22 +1100301 if (ap->flags2 & XFSMNT2_COMPAT_IOSIZE)
302 mp->m_flags |= XFS_MOUNT_COMPAT_IOSIZE;
303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 /*
305 * no recovery flag requires a read-only mount
306 */
307 if (ap->flags & XFSMNT_NORECOVERY) {
308 if (!(vfs->vfs_flag & VFS_RDONLY)) {
309 cmn_err(CE_WARN,
310 "XFS: tried to mount a FS read-write without recovery!");
311 return XFS_ERROR(EINVAL);
312 }
313 mp->m_flags |= XFS_MOUNT_NORECOVERY;
314 }
315
316 if (ap->flags & XFSMNT_NOUUID)
317 mp->m_flags |= XFS_MOUNT_NOUUID;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100318 if (ap->flags & XFSMNT_BARRIER)
319 mp->m_flags |= XFS_MOUNT_BARRIER;
Christoph Hellwig4ef19dd2006-01-11 15:27:18 +1100320 else
321 mp->m_flags &= ~XFS_MOUNT_BARRIER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
323 return 0;
324}
325
326/*
327 * This function fills in xfs_mount_t fields based on mount args.
328 * Note: the superblock _has_ now been read in.
329 */
330STATIC int
331xfs_finish_flags(
Nathan Scottb83bd132006-06-09 16:48:30 +1000332 struct bhv_vfs *vfs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 struct xfs_mount_args *ap,
334 struct xfs_mount *mp)
335{
336 int ronly = (vfs->vfs_flag & VFS_RDONLY);
337
338 /* Fail a mount where the logbuf is smaller then the log stripe */
339 if (XFS_SB_VERSION_HASLOGV2(&mp->m_sb)) {
Nathan Scottc2cd2552006-01-11 15:35:32 +1100340 if ((ap->logbufsize <= 0) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 (mp->m_sb.sb_logsunit > XLOG_BIG_RECORD_BSIZE)) {
342 mp->m_logbsize = mp->m_sb.sb_logsunit;
Nathan Scottc2cd2552006-01-11 15:35:32 +1100343 } else if (ap->logbufsize > 0 &&
344 ap->logbufsize < mp->m_sb.sb_logsunit) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 cmn_err(CE_WARN,
346 "XFS: logbuf size must be greater than or equal to log stripe size");
347 return XFS_ERROR(EINVAL);
348 }
349 } else {
350 /* Fail a mount if the logbuf is larger than 32K */
351 if (ap->logbufsize > XLOG_BIG_RECORD_BSIZE) {
352 cmn_err(CE_WARN,
353 "XFS: logbuf size for version 1 logs must be 16K or 32K");
354 return XFS_ERROR(EINVAL);
355 }
356 }
357
Nathan Scott13059ff2006-01-11 15:32:01 +1100358 if (XFS_SB_VERSION_HASATTR2(&mp->m_sb)) {
359 mp->m_flags |= XFS_MOUNT_ATTR2;
360 }
361
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 /*
363 * prohibit r/w mounts of read-only filesystems
364 */
365 if ((mp->m_sb.sb_flags & XFS_SBF_READONLY) && !ronly) {
366 cmn_err(CE_WARN,
367 "XFS: cannot mount a read-only filesystem as read-write");
368 return XFS_ERROR(EROFS);
369 }
370
371 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 * check for shared mount.
373 */
374 if (ap->flags & XFSMNT_SHARED) {
375 if (!XFS_SB_VERSION_HASSHARED(&mp->m_sb))
376 return XFS_ERROR(EINVAL);
377
378 /*
379 * For IRIX 6.5, shared mounts must have the shared
380 * version bit set, have the persistent readonly
381 * field set, must be version 0 and can only be mounted
382 * read-only.
383 */
384 if (!ronly || !(mp->m_sb.sb_flags & XFS_SBF_READONLY) ||
385 (mp->m_sb.sb_shared_vn != 0))
386 return XFS_ERROR(EINVAL);
387
388 mp->m_flags |= XFS_MOUNT_SHARED;
389
390 /*
391 * Shared XFS V0 can't deal with DMI. Return EINVAL.
392 */
393 if (mp->m_sb.sb_shared_vn == 0 && (ap->flags & XFSMNT_DMAPI))
394 return XFS_ERROR(EINVAL);
395 }
396
397 return 0;
398}
399
400/*
401 * xfs_mount
402 *
403 * The file system configurations are:
404 * (1) device (partition) with data and internal log
405 * (2) logical volume with data and log subvolumes.
406 * (3) logical volume with data, log, and realtime subvolumes.
407 *
408 * We only have to handle opening the log and realtime volumes here if
409 * they are present. The data subvolume has already been opened by
410 * get_sb_bdev() and is stored in vfsp->vfs_super->s_bdev.
411 */
412STATIC int
413xfs_mount(
414 struct bhv_desc *bhvp,
415 struct xfs_mount_args *args,
416 cred_t *credp)
417{
Nathan Scottb83bd132006-06-09 16:48:30 +1000418 struct bhv_vfs *vfsp = bhvtovfs(bhvp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 struct bhv_desc *p;
420 struct xfs_mount *mp = XFS_BHVTOM(bhvp);
421 struct block_device *ddev, *logdev, *rtdev;
422 int flags = 0, error;
423
424 ddev = vfsp->vfs_super->s_bdev;
425 logdev = rtdev = NULL;
426
427 /*
428 * Setup xfs_mount function vectors from available behaviors
429 */
430 p = vfs_bhv_lookup(vfsp, VFS_POSITION_DM);
431 mp->m_dm_ops = p ? *(xfs_dmops_t *) vfs_bhv_custom(p) : xfs_dmcore_stub;
432 p = vfs_bhv_lookup(vfsp, VFS_POSITION_QM);
433 mp->m_qm_ops = p ? *(xfs_qmops_t *) vfs_bhv_custom(p) : xfs_qmcore_stub;
434 p = vfs_bhv_lookup(vfsp, VFS_POSITION_IO);
435 mp->m_io_ops = p ? *(xfs_ioops_t *) vfs_bhv_custom(p) : xfs_iocore_xfs;
436
Nathan Scott764d1f82006-03-31 13:04:17 +1000437 if (args->flags & XFSMNT_QUIET)
438 flags |= XFS_MFSI_QUIET;
439
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 /*
441 * Open real time and log devices - order is important.
442 */
443 if (args->logname[0]) {
444 error = xfs_blkdev_get(mp, args->logname, &logdev);
445 if (error)
446 return error;
447 }
448 if (args->rtname[0]) {
449 error = xfs_blkdev_get(mp, args->rtname, &rtdev);
450 if (error) {
451 xfs_blkdev_put(logdev);
452 return error;
453 }
454
455 if (rtdev == ddev || rtdev == logdev) {
456 cmn_err(CE_WARN,
457 "XFS: Cannot mount filesystem with identical rtdev and ddev/logdev.");
458 xfs_blkdev_put(logdev);
459 xfs_blkdev_put(rtdev);
460 return EINVAL;
461 }
462 }
463
464 /*
465 * Setup xfs_mount buffer target pointers
466 */
467 error = ENOMEM;
468 mp->m_ddev_targp = xfs_alloc_buftarg(ddev, 0);
469 if (!mp->m_ddev_targp) {
470 xfs_blkdev_put(logdev);
471 xfs_blkdev_put(rtdev);
472 return error;
473 }
474 if (rtdev) {
475 mp->m_rtdev_targp = xfs_alloc_buftarg(rtdev, 1);
476 if (!mp->m_rtdev_targp)
477 goto error0;
478 }
479 mp->m_logdev_targp = (logdev && logdev != ddev) ?
480 xfs_alloc_buftarg(logdev, 1) : mp->m_ddev_targp;
481 if (!mp->m_logdev_targp)
482 goto error0;
483
484 /*
485 * Setup flags based on mount(2) options and then the superblock
486 */
487 error = xfs_start_flags(vfsp, args, mp);
488 if (error)
489 goto error1;
Nathan Scott764d1f82006-03-31 13:04:17 +1000490 error = xfs_readsb(mp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 if (error)
492 goto error1;
493 error = xfs_finish_flags(vfsp, args, mp);
494 if (error)
495 goto error2;
496
497 /*
498 * Setup xfs_mount buffer target pointers based on superblock
499 */
500 error = xfs_setsize_buftarg(mp->m_ddev_targp, mp->m_sb.sb_blocksize,
501 mp->m_sb.sb_sectsize);
502 if (!error && logdev && logdev != ddev) {
503 unsigned int log_sector_size = BBSIZE;
504
505 if (XFS_SB_VERSION_HASSECTOR(&mp->m_sb))
506 log_sector_size = mp->m_sb.sb_logsectsize;
507 error = xfs_setsize_buftarg(mp->m_logdev_targp,
508 mp->m_sb.sb_blocksize,
509 log_sector_size);
510 }
511 if (!error && rtdev)
512 error = xfs_setsize_buftarg(mp->m_rtdev_targp,
513 mp->m_sb.sb_blocksize,
514 mp->m_sb.sb_sectsize);
515 if (error)
516 goto error2;
517
Nathan Scottb2ea4012006-07-28 17:05:13 +1000518 if (mp->m_flags & XFS_MOUNT_BARRIER)
Christoph Hellwigc7d437d2006-01-11 15:28:56 +1100519 xfs_mountfs_check_barriers(mp);
520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 error = XFS_IOINIT(vfsp, args, flags);
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100522 if (error)
523 goto error2;
524
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100525 return 0;
526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527error2:
528 if (mp->m_sb_bp)
529 xfs_freesb(mp);
530error1:
531 xfs_binval(mp->m_ddev_targp);
532 if (logdev && logdev != ddev)
533 xfs_binval(mp->m_logdev_targp);
534 if (rtdev)
535 xfs_binval(mp->m_rtdev_targp);
536error0:
537 xfs_unmountfs_close(mp, credp);
538 return error;
539}
540
541STATIC int
542xfs_unmount(
543 bhv_desc_t *bdp,
544 int flags,
545 cred_t *credp)
546{
Nathan Scottb83bd132006-06-09 16:48:30 +1000547 bhv_vfs_t *vfsp = bhvtovfs(bdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 xfs_mount_t *mp = XFS_BHVTOM(bdp);
549 xfs_inode_t *rip;
Nathan Scott67fcaa72006-06-09 17:00:52 +1000550 bhv_vnode_t *rvp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 int unmount_event_wanted = 0;
552 int unmount_event_flags = 0;
553 int xfs_unmountfs_needed = 0;
554 int error;
555
556 rip = mp->m_rootip;
557 rvp = XFS_ITOV(rip);
558
559 if (vfsp->vfs_flag & VFS_DMI) {
560 error = XFS_SEND_PREUNMOUNT(mp, vfsp,
561 rvp, DM_RIGHT_NULL, rvp, DM_RIGHT_NULL,
562 NULL, NULL, 0, 0,
563 (mp->m_dmevmask & (1<<DM_EVENT_PREUNMOUNT))?
564 0:DM_FLAGS_UNWANTED);
565 if (error)
566 return XFS_ERROR(error);
567 unmount_event_wanted = 1;
568 unmount_event_flags = (mp->m_dmevmask & (1<<DM_EVENT_UNMOUNT))?
569 0 : DM_FLAGS_UNWANTED;
570 }
571
572 /*
573 * First blow any referenced inode from this file system
574 * out of the reference cache, and delete the timer.
575 */
576 xfs_refcache_purge_mp(mp);
577
578 XFS_bflush(mp->m_ddev_targp);
579 error = xfs_unmount_flush(mp, 0);
580 if (error)
581 goto out;
582
583 ASSERT(vn_count(rvp) == 1);
584
585 /*
586 * Drop the reference count
587 */
588 VN_RELE(rvp);
589
590 /*
591 * If we're forcing a shutdown, typically because of a media error,
592 * we want to make sure we invalidate dirty pages that belong to
593 * referenced vnodes as well.
594 */
595 if (XFS_FORCED_SHUTDOWN(mp)) {
596 error = xfs_sync(&mp->m_bhv,
597 (SYNC_WAIT | SYNC_CLOSE), credp);
598 ASSERT(error != EFSCORRUPTED);
599 }
600 xfs_unmountfs_needed = 1;
601
602out:
603 /* Send DMAPI event, if required.
604 * Then do xfs_unmountfs() if needed.
605 * Then return error (or zero).
606 */
607 if (unmount_event_wanted) {
608 /* Note: mp structure must still exist for
609 * XFS_SEND_UNMOUNT() call.
610 */
611 XFS_SEND_UNMOUNT(mp, vfsp, error == 0 ? rvp : NULL,
612 DM_RIGHT_NULL, 0, error, unmount_event_flags);
613 }
614 if (xfs_unmountfs_needed) {
615 /*
616 * Call common unmount function to flush to disk
617 * and free the super block buffer & mount structures.
618 */
619 xfs_unmountfs(mp, credp);
620 }
621
622 return XFS_ERROR(error);
623}
624
Christoph Hellwigf898d6c2005-06-21 15:40:48 +1000625STATIC int
626xfs_quiesce_fs(
627 xfs_mount_t *mp)
628{
629 int count = 0, pincount;
Nathan Scott3758dee2006-03-22 12:47:28 +1100630
Christoph Hellwigf898d6c2005-06-21 15:40:48 +1000631 xfs_refcache_purge_mp(mp);
632 xfs_flush_buftarg(mp->m_ddev_targp, 0);
633 xfs_finish_reclaim_all(mp, 0);
634
635 /* This loop must run at least twice.
636 * The first instance of the loop will flush
637 * most meta data but that will generate more
638 * meta data (typically directory updates).
639 * Which then must be flushed and logged before
640 * we can write the unmount record.
Nathan Scott3758dee2006-03-22 12:47:28 +1100641 */
Christoph Hellwigf898d6c2005-06-21 15:40:48 +1000642 do {
Lachlan McIlroy1f9b3b62007-02-10 18:35:33 +1100643 xfs_syncsub(mp, SYNC_REMOUNT|SYNC_ATTR|SYNC_WAIT, NULL);
Christoph Hellwigf898d6c2005-06-21 15:40:48 +1000644 pincount = xfs_flush_buftarg(mp->m_ddev_targp, 1);
645 if (!pincount) {
646 delay(50);
647 count++;
648 }
649 } while (count < 2);
650
651 return 0;
652}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
654STATIC int
655xfs_mntupdate(
656 bhv_desc_t *bdp,
657 int *flags,
658 struct xfs_mount_args *args)
659{
Nathan Scottb83bd132006-06-09 16:48:30 +1000660 bhv_vfs_t *vfsp = bhvtovfs(bdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 xfs_mount_t *mp = XFS_BHVTOM(bdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Nathan Scottd08d3892006-05-08 19:51:28 +1000663 if (!(*flags & MS_RDONLY)) { /* rw/ro -> rw */
664 if (vfsp->vfs_flag & VFS_RDONLY)
665 vfsp->vfs_flag &= ~VFS_RDONLY;
666 if (args->flags & XFSMNT_BARRIER) {
667 mp->m_flags |= XFS_MOUNT_BARRIER;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100668 xfs_mountfs_check_barriers(mp);
Nathan Scottd08d3892006-05-08 19:51:28 +1000669 } else {
670 mp->m_flags &= ~XFS_MOUNT_BARRIER;
671 }
672 } else if (!(vfsp->vfs_flag & VFS_RDONLY)) { /* rw -> ro */
Nathan Scottb83bd132006-06-09 16:48:30 +1000673 bhv_vfs_sync(vfsp, SYNC_FSDATA|SYNC_BDFLUSH|SYNC_ATTR, NULL);
Christoph Hellwigf898d6c2005-06-21 15:40:48 +1000674 xfs_quiesce_fs(mp);
David Chinner92821e22007-05-24 15:26:31 +1000675 xfs_log_sbcount(mp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 xfs_log_unmount_write(mp);
677 xfs_unmountfs_writesb(mp);
678 vfsp->vfs_flag |= VFS_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 return 0;
681}
682
683/*
684 * xfs_unmount_flush implements a set of flush operation on special
685 * inodes, which are needed as a separate set of operations so that
686 * they can be called as part of relocation process.
687 */
688int
689xfs_unmount_flush(
690 xfs_mount_t *mp, /* Mount structure we are getting
691 rid of. */
692 int relocation) /* Called from vfs relocation. */
693{
694 xfs_inode_t *rip = mp->m_rootip;
695 xfs_inode_t *rbmip;
696 xfs_inode_t *rsumip = NULL;
Nathan Scott67fcaa72006-06-09 17:00:52 +1000697 bhv_vnode_t *rvp = XFS_ITOV(rip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 int error;
699
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +1000700 xfs_ilock(rip, XFS_ILOCK_EXCL | XFS_ILOCK_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 xfs_iflock(rip);
702
703 /*
704 * Flush out the real time inodes.
705 */
706 if ((rbmip = mp->m_rbmip) != NULL) {
707 xfs_ilock(rbmip, XFS_ILOCK_EXCL);
708 xfs_iflock(rbmip);
709 error = xfs_iflush(rbmip, XFS_IFLUSH_SYNC);
710 xfs_iunlock(rbmip, XFS_ILOCK_EXCL);
711
712 if (error == EFSCORRUPTED)
713 goto fscorrupt_out;
714
715 ASSERT(vn_count(XFS_ITOV(rbmip)) == 1);
716
717 rsumip = mp->m_rsumip;
718 xfs_ilock(rsumip, XFS_ILOCK_EXCL);
719 xfs_iflock(rsumip);
720 error = xfs_iflush(rsumip, XFS_IFLUSH_SYNC);
721 xfs_iunlock(rsumip, XFS_ILOCK_EXCL);
722
723 if (error == EFSCORRUPTED)
724 goto fscorrupt_out;
725
726 ASSERT(vn_count(XFS_ITOV(rsumip)) == 1);
727 }
728
729 /*
730 * Synchronously flush root inode to disk
731 */
732 error = xfs_iflush(rip, XFS_IFLUSH_SYNC);
733 if (error == EFSCORRUPTED)
734 goto fscorrupt_out2;
735
736 if (vn_count(rvp) != 1 && !relocation) {
737 xfs_iunlock(rip, XFS_ILOCK_EXCL);
738 return XFS_ERROR(EBUSY);
739 }
740
741 /*
742 * Release dquot that rootinode, rbmino and rsumino might be holding,
743 * flush and purge the quota inodes.
744 */
745 error = XFS_QM_UNMOUNT(mp);
746 if (error == EFSCORRUPTED)
747 goto fscorrupt_out2;
748
749 if (rbmip) {
750 VN_RELE(XFS_ITOV(rbmip));
751 VN_RELE(XFS_ITOV(rsumip));
752 }
753
754 xfs_iunlock(rip, XFS_ILOCK_EXCL);
755 return 0;
756
757fscorrupt_out:
758 xfs_ifunlock(rip);
759
760fscorrupt_out2:
761 xfs_iunlock(rip, XFS_ILOCK_EXCL);
762
763 return XFS_ERROR(EFSCORRUPTED);
764}
765
766/*
767 * xfs_root extracts the root vnode from a vfs.
768 *
769 * vfsp -- the vfs struct for the desired file system
770 * vpp -- address of the caller's vnode pointer which should be
771 * set to the desired fs root vnode
772 */
773STATIC int
774xfs_root(
775 bhv_desc_t *bdp,
Nathan Scott67fcaa72006-06-09 17:00:52 +1000776 bhv_vnode_t **vpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777{
Nathan Scott67fcaa72006-06-09 17:00:52 +1000778 bhv_vnode_t *vp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
780 vp = XFS_ITOV((XFS_BHVTOM(bdp))->m_rootip);
781 VN_HOLD(vp);
782 *vpp = vp;
783 return 0;
784}
785
786/*
787 * xfs_statvfs
788 *
789 * Fill in the statvfs structure for the given file system. We use
790 * the superblock lock in the mount structure to ensure a consistent
791 * snapshot of the counters returned.
792 */
793STATIC int
794xfs_statvfs(
795 bhv_desc_t *bdp,
Nathan Scott8285fb52006-06-09 17:07:12 +1000796 bhv_statvfs_t *statp,
Nathan Scott67fcaa72006-06-09 17:00:52 +1000797 bhv_vnode_t *vp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798{
799 __uint64_t fakeinos;
800 xfs_extlen_t lsize;
801 xfs_mount_t *mp;
802 xfs_sb_t *sbp;
803 unsigned long s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
805 mp = XFS_BHVTOM(bdp);
806 sbp = &(mp->m_sb);
807
808 statp->f_type = XFS_SB_MAGIC;
809
David Chinnerdbcabad2007-02-10 18:36:17 +1100810 xfs_icsb_sync_counters_flags(mp, XFS_ICSB_LAZY_COUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 s = XFS_SB_LOCK(mp);
812 statp->f_bsize = sbp->sb_blocksize;
813 lsize = sbp->sb_logstart ? sbp->sb_logblocks : 0;
814 statp->f_blocks = sbp->sb_dblocks - lsize;
David Chinner4be536d2006-09-07 14:26:50 +1000815 statp->f_bfree = statp->f_bavail =
816 sbp->sb_fdblocks - XFS_ALLOC_SET_ASIDE(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 fakeinos = statp->f_bfree << sbp->sb_inopblog;
818#if XFS_BIG_INUMS
819 fakeinos += mp->m_inoadd;
820#endif
821 statp->f_files =
822 MIN(sbp->sb_icount + fakeinos, (__uint64_t)XFS_MAXINUMBER);
823 if (mp->m_maxicount)
824#if XFS_BIG_INUMS
825 if (!mp->m_inoadd)
826#endif
827 statp->f_files = min_t(typeof(statp->f_files),
828 statp->f_files,
829 mp->m_maxicount);
830 statp->f_ffree = statp->f_files - (sbp->sb_icount - sbp->sb_ifree);
831 XFS_SB_UNLOCK(mp, s);
832
Nathan Scottcde410a2005-09-05 11:47:01 +1000833 xfs_statvfs_fsid(statp, mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 statp->f_namelen = MAXNAMELEN - 1;
835
836 return 0;
837}
838
839
840/*
841 * xfs_sync flushes any pending I/O to file system vfsp.
842 *
843 * This routine is called by vfs_sync() to make sure that things make it
844 * out to disk eventually, on sync() system calls to flush out everything,
845 * and when the file system is unmounted. For the vfs_sync() case, all
846 * we really need to do is sync out the log to make all of our meta-data
847 * updates permanent (except for timestamps). For calls from pflushd(),
848 * dirty pages are kept moving by calling pdflush() on the inodes
849 * containing them. We also flush the inodes that we can lock without
850 * sleeping and the superblock if we can lock it without sleeping from
851 * vfs_sync() so that items at the tail of the log are always moving out.
852 *
853 * Flags:
854 * SYNC_BDFLUSH - We're being called from vfs_sync() so we don't want
855 * to sleep if we can help it. All we really need
856 * to do is ensure that the log is synced at least
857 * periodically. We also push the inodes and
858 * superblock if we can lock them without sleeping
859 * and they are not pinned.
860 * SYNC_ATTR - We need to flush the inodes. If SYNC_BDFLUSH is not
861 * set, then we really want to lock each inode and flush
862 * it.
863 * SYNC_WAIT - All the flushes that take place in this call should
864 * be synchronous.
865 * SYNC_DELWRI - This tells us to push dirty pages associated with
866 * inodes. SYNC_WAIT and SYNC_BDFLUSH are used to
867 * determine if they should be flushed sync, async, or
868 * delwri.
869 * SYNC_CLOSE - This flag is passed when the system is being
Nathan Scottc41564b2006-03-29 08:55:14 +1000870 * unmounted. We should sync and invalidate everything.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 * SYNC_FSDATA - This indicates that the caller would like to make
872 * sure the superblock is safe on disk. We can ensure
Nathan Scottc41564b2006-03-29 08:55:14 +1000873 * this by simply making sure the log gets flushed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 * if SYNC_BDFLUSH is set, and by actually writing it
875 * out otherwise.
David Chinner3c0dc772007-02-10 18:37:22 +1100876 * SYNC_IOWAIT - The caller wants us to wait for all data I/O to complete
877 * before we return (including direct I/O). Forms the drain
878 * side of the write barrier needed to safely quiesce the
879 * filesystem.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 *
881 */
882/*ARGSUSED*/
883STATIC int
884xfs_sync(
885 bhv_desc_t *bdp,
886 int flags,
887 cred_t *credp)
888{
Christoph Hellwigf898d6c2005-06-21 15:40:48 +1000889 xfs_mount_t *mp = XFS_BHVTOM(bdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
David Chinner28239452007-02-10 18:36:40 +1100891 return xfs_syncsub(mp, flags, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892}
893
894/*
895 * xfs sync routine for internal use
896 *
Nathan Scottb83bd132006-06-09 16:48:30 +1000897 * This routine supports all of the flags defined for the generic vfs_sync
Lachlan McIlroy1f9b3b62007-02-10 18:35:33 +1100898 * interface as explained above under xfs_sync.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 *
900 */
Nathan Scottee348072005-11-02 10:32:38 +1100901int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902xfs_sync_inodes(
903 xfs_mount_t *mp,
904 int flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 int *bypassed)
906{
907 xfs_inode_t *ip = NULL;
908 xfs_inode_t *ip_next;
909 xfs_buf_t *bp;
Nathan Scott67fcaa72006-06-09 17:00:52 +1000910 bhv_vnode_t *vp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 int error;
912 int last_error;
913 uint64_t fflag;
914 uint lock_flags;
915 uint base_lock_flags;
916 boolean_t mount_locked;
917 boolean_t vnode_refed;
918 int preempt;
919 xfs_dinode_t *dip;
920 xfs_iptr_t *ipointer;
921#ifdef DEBUG
922 boolean_t ipointer_in = B_FALSE;
923
924#define IPOINTER_SET ipointer_in = B_TRUE
925#define IPOINTER_CLR ipointer_in = B_FALSE
926#else
927#define IPOINTER_SET
928#define IPOINTER_CLR
929#endif
930
931
932/* Insert a marker record into the inode list after inode ip. The list
933 * must be locked when this is called. After the call the list will no
934 * longer be locked.
935 */
936#define IPOINTER_INSERT(ip, mp) { \
937 ASSERT(ipointer_in == B_FALSE); \
938 ipointer->ip_mnext = ip->i_mnext; \
939 ipointer->ip_mprev = ip; \
940 ip->i_mnext = (xfs_inode_t *)ipointer; \
941 ipointer->ip_mnext->i_mprev = (xfs_inode_t *)ipointer; \
942 preempt = 0; \
943 XFS_MOUNT_IUNLOCK(mp); \
944 mount_locked = B_FALSE; \
945 IPOINTER_SET; \
946 }
947
948/* Remove the marker from the inode list. If the marker was the only item
949 * in the list then there are no remaining inodes and we should zero out
950 * the whole list. If we are the current head of the list then move the head
951 * past us.
952 */
953#define IPOINTER_REMOVE(ip, mp) { \
954 ASSERT(ipointer_in == B_TRUE); \
955 if (ipointer->ip_mnext != (xfs_inode_t *)ipointer) { \
956 ip = ipointer->ip_mnext; \
957 ip->i_mprev = ipointer->ip_mprev; \
958 ipointer->ip_mprev->i_mnext = ip; \
959 if (mp->m_inodes == (xfs_inode_t *)ipointer) { \
960 mp->m_inodes = ip; \
961 } \
962 } else { \
963 ASSERT(mp->m_inodes == (xfs_inode_t *)ipointer); \
964 mp->m_inodes = NULL; \
965 ip = NULL; \
966 } \
967 IPOINTER_CLR; \
968 }
969
970#define XFS_PREEMPT_MASK 0x7f
971
972 if (bypassed)
973 *bypassed = 0;
974 if (XFS_MTOVFS(mp)->vfs_flag & VFS_RDONLY)
975 return 0;
976 error = 0;
977 last_error = 0;
978 preempt = 0;
979
980 /* Allocate a reference marker */
981 ipointer = (xfs_iptr_t *)kmem_zalloc(sizeof(xfs_iptr_t), KM_SLEEP);
982
983 fflag = XFS_B_ASYNC; /* default is don't wait */
Nathan Scottee348072005-11-02 10:32:38 +1100984 if (flags & (SYNC_BDFLUSH | SYNC_DELWRI))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 fflag = XFS_B_DELWRI;
986 if (flags & SYNC_WAIT)
987 fflag = 0; /* synchronous overrides all */
988
989 base_lock_flags = XFS_ILOCK_SHARED;
990 if (flags & (SYNC_DELWRI | SYNC_CLOSE)) {
991 /*
992 * We need the I/O lock if we're going to call any of
993 * the flush/inval routines.
994 */
995 base_lock_flags |= XFS_IOLOCK_SHARED;
996 }
997
998 XFS_MOUNT_ILOCK(mp);
999
1000 ip = mp->m_inodes;
1001
1002 mount_locked = B_TRUE;
1003 vnode_refed = B_FALSE;
1004
1005 IPOINTER_CLR;
1006
1007 do {
1008 ASSERT(ipointer_in == B_FALSE);
1009 ASSERT(vnode_refed == B_FALSE);
1010
1011 lock_flags = base_lock_flags;
1012
1013 /*
1014 * There were no inodes in the list, just break out
1015 * of the loop.
1016 */
1017 if (ip == NULL) {
1018 break;
1019 }
1020
1021 /*
1022 * We found another sync thread marker - skip it
1023 */
1024 if (ip->i_mount == NULL) {
1025 ip = ip->i_mnext;
1026 continue;
1027 }
1028
1029 vp = XFS_ITOV_NULL(ip);
1030
1031 /*
1032 * If the vnode is gone then this is being torn down,
1033 * call reclaim if it is flushed, else let regular flush
1034 * code deal with it later in the loop.
1035 */
1036
1037 if (vp == NULL) {
1038 /* Skip ones already in reclaim */
1039 if (ip->i_flags & XFS_IRECLAIM) {
1040 ip = ip->i_mnext;
1041 continue;
1042 }
1043 if (xfs_ilock_nowait(ip, XFS_ILOCK_EXCL) == 0) {
1044 ip = ip->i_mnext;
1045 } else if ((xfs_ipincount(ip) == 0) &&
1046 xfs_iflock_nowait(ip)) {
1047 IPOINTER_INSERT(ip, mp);
1048
1049 xfs_finish_reclaim(ip, 1,
1050 XFS_IFLUSH_DELWRI_ELSE_ASYNC);
1051
1052 XFS_MOUNT_ILOCK(mp);
1053 mount_locked = B_TRUE;
1054 IPOINTER_REMOVE(ip, mp);
1055 } else {
1056 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1057 ip = ip->i_mnext;
1058 }
1059 continue;
1060 }
1061
1062 if (VN_BAD(vp)) {
1063 ip = ip->i_mnext;
1064 continue;
1065 }
1066
1067 if (XFS_FORCED_SHUTDOWN(mp) && !(flags & SYNC_CLOSE)) {
1068 XFS_MOUNT_IUNLOCK(mp);
1069 kmem_free(ipointer, sizeof(xfs_iptr_t));
1070 return 0;
1071 }
1072
1073 /*
1074 * If this is just vfs_sync() or pflushd() calling
1075 * then we can skip inodes for which it looks like
1076 * there is nothing to do. Since we don't have the
Nathan Scottc41564b2006-03-29 08:55:14 +10001077 * inode locked this is racy, but these are periodic
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 * calls so it doesn't matter. For the others we want
1079 * to know for sure, so we at least try to lock them.
1080 */
1081 if (flags & SYNC_BDFLUSH) {
1082 if (((ip->i_itemp == NULL) ||
1083 !(ip->i_itemp->ili_format.ilf_fields &
1084 XFS_ILOG_ALL)) &&
1085 (ip->i_update_core == 0)) {
1086 ip = ip->i_mnext;
1087 continue;
1088 }
1089 }
1090
1091 /*
1092 * Try to lock without sleeping. We're out of order with
1093 * the inode list lock here, so if we fail we need to drop
1094 * the mount lock and try again. If we're called from
1095 * bdflush() here, then don't bother.
1096 *
1097 * The inode lock here actually coordinates with the
1098 * almost spurious inode lock in xfs_ireclaim() to prevent
1099 * the vnode we handle here without a reference from
1100 * being freed while we reference it. If we lock the inode
1101 * while it's on the mount list here, then the spurious inode
1102 * lock in xfs_ireclaim() after the inode is pulled from
1103 * the mount list will sleep until we release it here.
1104 * This keeps the vnode from being freed while we reference
Christoph Hellwigcdb62682005-09-02 16:24:19 +10001105 * it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 */
1107 if (xfs_ilock_nowait(ip, lock_flags) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 if ((flags & SYNC_BDFLUSH) || (vp == NULL)) {
1109 ip = ip->i_mnext;
1110 continue;
1111 }
1112
Christoph Hellwigcdb62682005-09-02 16:24:19 +10001113 vp = vn_grab(vp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 if (vp == NULL) {
Christoph Hellwigcdb62682005-09-02 16:24:19 +10001115 ip = ip->i_mnext;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 continue;
1117 }
1118
Christoph Hellwigcdb62682005-09-02 16:24:19 +10001119 IPOINTER_INSERT(ip, mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 xfs_ilock(ip, lock_flags);
1121
1122 ASSERT(vp == XFS_ITOV(ip));
1123 ASSERT(ip->i_mount == mp);
1124
1125 vnode_refed = B_TRUE;
1126 }
1127
1128 /* From here on in the loop we may have a marker record
1129 * in the inode list.
1130 */
1131
David Chinner40095b62007-05-14 18:24:09 +10001132 /*
1133 * If we have to flush data or wait for I/O completion
1134 * we need to drop the ilock that we currently hold.
1135 * If we need to drop the lock, insert a marker if we
1136 * have not already done so.
1137 */
1138 if ((flags & (SYNC_CLOSE|SYNC_IOWAIT)) ||
1139 ((flags & SYNC_DELWRI) && VN_DIRTY(vp))) {
1140 if (mount_locked) {
1141 IPOINTER_INSERT(ip, mp);
1142 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1144
David Chinner40095b62007-05-14 18:24:09 +10001145 if (flags & SYNC_CLOSE) {
1146 /* Shutdown case. Flush and invalidate. */
1147 if (XFS_FORCED_SHUTDOWN(mp))
1148 bhv_vop_toss_pages(vp, 0, -1, FI_REMAPF);
1149 else
1150 error = bhv_vop_flushinval_pages(vp, 0,
1151 -1, FI_REMAPF);
1152 } else if ((flags & SYNC_DELWRI) && VN_DIRTY(vp)) {
Nathan Scott67fcaa72006-06-09 17:00:52 +10001153 error = bhv_vop_flush_pages(vp, (xfs_off_t)0,
1154 -1, fflag, FI_NONE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 }
1156
David Chinner40095b62007-05-14 18:24:09 +10001157 /*
1158 * When freezing, we need to wait ensure all I/O (including direct
1159 * I/O) is complete to ensure no further data modification can take
1160 * place after this point
1161 */
1162 if (flags & SYNC_IOWAIT)
1163 vn_iowait(vp);
1164
1165 xfs_ilock(ip, XFS_ILOCK_SHARED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 }
1167
1168 if (flags & SYNC_BDFLUSH) {
1169 if ((flags & SYNC_ATTR) &&
1170 ((ip->i_update_core) ||
1171 ((ip->i_itemp != NULL) &&
1172 (ip->i_itemp->ili_format.ilf_fields != 0)))) {
1173
1174 /* Insert marker and drop lock if not already
1175 * done.
1176 */
1177 if (mount_locked) {
1178 IPOINTER_INSERT(ip, mp);
1179 }
1180
1181 /*
1182 * We don't want the periodic flushing of the
1183 * inodes by vfs_sync() to interfere with
1184 * I/O to the file, especially read I/O
1185 * where it is only the access time stamp
1186 * that is being flushed out. To prevent
1187 * long periods where we have both inode
1188 * locks held shared here while reading the
1189 * inode's buffer in from disk, we drop the
1190 * inode lock while reading in the inode
1191 * buffer. We have to release the buffer
1192 * and reacquire the inode lock so that they
1193 * are acquired in the proper order (inode
1194 * locks first). The buffer will go at the
1195 * end of the lru chain, though, so we can
1196 * expect it to still be there when we go
1197 * for it again in xfs_iflush().
1198 */
1199 if ((xfs_ipincount(ip) == 0) &&
1200 xfs_iflock_nowait(ip)) {
1201
1202 xfs_ifunlock(ip);
1203 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1204
1205 error = xfs_itobp(mp, NULL, ip,
Nathan Scottb12dd342006-03-17 17:26:04 +11001206 &dip, &bp, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 if (!error) {
1208 xfs_buf_relse(bp);
1209 } else {
1210 /* Bailing out, remove the
1211 * marker and free it.
1212 */
1213 XFS_MOUNT_ILOCK(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 IPOINTER_REMOVE(ip, mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 XFS_MOUNT_IUNLOCK(mp);
1216
1217 ASSERT(!(lock_flags &
1218 XFS_IOLOCK_SHARED));
1219
1220 kmem_free(ipointer,
1221 sizeof(xfs_iptr_t));
1222 return (0);
1223 }
1224
1225 /*
1226 * Since we dropped the inode lock,
1227 * the inode may have been reclaimed.
1228 * Therefore, we reacquire the mount
1229 * lock and check to see if we were the
1230 * inode reclaimed. If this happened
1231 * then the ipointer marker will no
1232 * longer point back at us. In this
1233 * case, move ip along to the inode
1234 * after the marker, remove the marker
1235 * and continue.
1236 */
1237 XFS_MOUNT_ILOCK(mp);
1238 mount_locked = B_TRUE;
1239
1240 if (ip != ipointer->ip_mprev) {
1241 IPOINTER_REMOVE(ip, mp);
1242
1243 ASSERT(!vnode_refed);
1244 ASSERT(!(lock_flags &
1245 XFS_IOLOCK_SHARED));
1246 continue;
1247 }
1248
1249 ASSERT(ip->i_mount == mp);
1250
1251 if (xfs_ilock_nowait(ip,
1252 XFS_ILOCK_SHARED) == 0) {
1253 ASSERT(ip->i_mount == mp);
1254 /*
1255 * We failed to reacquire
1256 * the inode lock without
1257 * sleeping, so just skip
1258 * the inode for now. We
1259 * clear the ILOCK bit from
1260 * the lock_flags so that we
1261 * won't try to drop a lock
1262 * we don't hold below.
1263 */
1264 lock_flags &= ~XFS_ILOCK_SHARED;
1265 IPOINTER_REMOVE(ip_next, mp);
1266 } else if ((xfs_ipincount(ip) == 0) &&
1267 xfs_iflock_nowait(ip)) {
1268 ASSERT(ip->i_mount == mp);
1269 /*
1270 * Since this is vfs_sync()
1271 * calling we only flush the
1272 * inode out if we can lock
1273 * it without sleeping and
1274 * it is not pinned. Drop
1275 * the mount lock here so
1276 * that we don't hold it for
1277 * too long. We already have
1278 * a marker in the list here.
1279 */
1280 XFS_MOUNT_IUNLOCK(mp);
1281 mount_locked = B_FALSE;
1282 error = xfs_iflush(ip,
1283 XFS_IFLUSH_DELWRI);
1284 } else {
1285 ASSERT(ip->i_mount == mp);
1286 IPOINTER_REMOVE(ip_next, mp);
1287 }
1288 }
1289
1290 }
1291
1292 } else {
1293 if ((flags & SYNC_ATTR) &&
1294 ((ip->i_update_core) ||
1295 ((ip->i_itemp != NULL) &&
1296 (ip->i_itemp->ili_format.ilf_fields != 0)))) {
1297 if (mount_locked) {
1298 IPOINTER_INSERT(ip, mp);
1299 }
1300
1301 if (flags & SYNC_WAIT) {
1302 xfs_iflock(ip);
1303 error = xfs_iflush(ip,
1304 XFS_IFLUSH_SYNC);
1305 } else {
1306 /*
1307 * If we can't acquire the flush
1308 * lock, then the inode is already
1309 * being flushed so don't bother
1310 * waiting. If we can lock it then
1311 * do a delwri flush so we can
1312 * combine multiple inode flushes
1313 * in each disk write.
1314 */
1315 if (xfs_iflock_nowait(ip)) {
1316 error = xfs_iflush(ip,
1317 XFS_IFLUSH_DELWRI);
1318 }
1319 else if (bypassed)
1320 (*bypassed)++;
1321 }
1322 }
1323 }
1324
1325 if (lock_flags != 0) {
1326 xfs_iunlock(ip, lock_flags);
1327 }
1328
1329 if (vnode_refed) {
1330 /*
1331 * If we had to take a reference on the vnode
1332 * above, then wait until after we've unlocked
1333 * the inode to release the reference. This is
1334 * because we can be already holding the inode
1335 * lock when VN_RELE() calls xfs_inactive().
1336 *
1337 * Make sure to drop the mount lock before calling
1338 * VN_RELE() so that we don't trip over ourselves if
1339 * we have to go for the mount lock again in the
1340 * inactive code.
1341 */
1342 if (mount_locked) {
1343 IPOINTER_INSERT(ip, mp);
1344 }
1345
1346 VN_RELE(vp);
1347
1348 vnode_refed = B_FALSE;
1349 }
1350
1351 if (error) {
1352 last_error = error;
1353 }
1354
1355 /*
1356 * bail out if the filesystem is corrupted.
1357 */
1358 if (error == EFSCORRUPTED) {
1359 if (!mount_locked) {
1360 XFS_MOUNT_ILOCK(mp);
1361 IPOINTER_REMOVE(ip, mp);
1362 }
1363 XFS_MOUNT_IUNLOCK(mp);
1364 ASSERT(ipointer_in == B_FALSE);
1365 kmem_free(ipointer, sizeof(xfs_iptr_t));
1366 return XFS_ERROR(error);
1367 }
1368
1369 /* Let other threads have a chance at the mount lock
1370 * if we have looped many times without dropping the
1371 * lock.
1372 */
1373 if ((++preempt & XFS_PREEMPT_MASK) == 0) {
1374 if (mount_locked) {
1375 IPOINTER_INSERT(ip, mp);
1376 }
1377 }
1378
1379 if (mount_locked == B_FALSE) {
1380 XFS_MOUNT_ILOCK(mp);
1381 mount_locked = B_TRUE;
1382 IPOINTER_REMOVE(ip, mp);
1383 continue;
1384 }
1385
1386 ASSERT(ipointer_in == B_FALSE);
1387 ip = ip->i_mnext;
1388
1389 } while (ip != mp->m_inodes);
1390
1391 XFS_MOUNT_IUNLOCK(mp);
1392
1393 ASSERT(ipointer_in == B_FALSE);
1394
1395 kmem_free(ipointer, sizeof(xfs_iptr_t));
1396 return XFS_ERROR(last_error);
1397}
1398
1399/*
1400 * xfs sync routine for internal use
1401 *
Nathan Scottb83bd132006-06-09 16:48:30 +10001402 * This routine supports all of the flags defined for the generic vfs_sync
Lachlan McIlroy1f9b3b62007-02-10 18:35:33 +11001403 * interface as explained above under xfs_sync.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 *
1405 */
1406int
1407xfs_syncsub(
1408 xfs_mount_t *mp,
1409 int flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 int *bypassed)
1411{
1412 int error = 0;
1413 int last_error = 0;
1414 uint log_flags = XFS_LOG_FORCE;
1415 xfs_buf_t *bp;
1416 xfs_buf_log_item_t *bip;
1417
1418 /*
1419 * Sync out the log. This ensures that the log is periodically
1420 * flushed even if there is not enough activity to fill it up.
1421 */
1422 if (flags & SYNC_WAIT)
1423 log_flags |= XFS_LOG_SYNC;
1424
1425 xfs_log_force(mp, (xfs_lsn_t)0, log_flags);
1426
1427 if (flags & (SYNC_ATTR|SYNC_DELWRI)) {
1428 if (flags & SYNC_BDFLUSH)
1429 xfs_finish_reclaim_all(mp, 1);
1430 else
Lachlan McIlroy1f9b3b62007-02-10 18:35:33 +11001431 error = xfs_sync_inodes(mp, flags, bypassed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 }
1433
1434 /*
1435 * Flushing out dirty data above probably generated more
1436 * log activity, so if this isn't vfs_sync() then flush
1437 * the log again.
1438 */
1439 if (flags & SYNC_DELWRI) {
1440 xfs_log_force(mp, (xfs_lsn_t)0, log_flags);
1441 }
1442
1443 if (flags & SYNC_FSDATA) {
1444 /*
1445 * If this is vfs_sync() then only sync the superblock
1446 * if we can lock it without sleeping and it is not pinned.
1447 */
1448 if (flags & SYNC_BDFLUSH) {
1449 bp = xfs_getsb(mp, XFS_BUF_TRYLOCK);
1450 if (bp != NULL) {
1451 bip = XFS_BUF_FSPRIVATE(bp,xfs_buf_log_item_t*);
1452 if ((bip != NULL) &&
1453 xfs_buf_item_dirty(bip)) {
1454 if (!(XFS_BUF_ISPINNED(bp))) {
1455 XFS_BUF_ASYNC(bp);
1456 error = xfs_bwrite(mp, bp);
1457 } else {
1458 xfs_buf_relse(bp);
1459 }
1460 } else {
1461 xfs_buf_relse(bp);
1462 }
1463 }
1464 } else {
1465 bp = xfs_getsb(mp, 0);
1466 /*
1467 * If the buffer is pinned then push on the log so
1468 * we won't get stuck waiting in the write for
1469 * someone, maybe ourselves, to flush the log.
1470 * Even though we just pushed the log above, we
1471 * did not have the superblock buffer locked at
1472 * that point so it can become pinned in between
1473 * there and here.
1474 */
1475 if (XFS_BUF_ISPINNED(bp))
1476 xfs_log_force(mp, (xfs_lsn_t)0, XFS_LOG_FORCE);
1477 if (flags & SYNC_WAIT)
1478 XFS_BUF_UNASYNC(bp);
1479 else
1480 XFS_BUF_ASYNC(bp);
1481 error = xfs_bwrite(mp, bp);
1482 }
1483 if (error) {
1484 last_error = error;
1485 }
1486 }
1487
1488 /*
1489 * If this is the periodic sync, then kick some entries out of
1490 * the reference cache. This ensures that idle entries are
1491 * eventually kicked out of the cache.
1492 */
1493 if (flags & SYNC_REFCACHE) {
Nathan Scottcde410a2005-09-05 11:47:01 +10001494 if (flags & SYNC_WAIT)
1495 xfs_refcache_purge_mp(mp);
1496 else
1497 xfs_refcache_purge_some(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 }
1499
1500 /*
David Chinner92821e22007-05-24 15:26:31 +10001501 * If asked, update the disk superblock with incore counter values if we
1502 * are using non-persistent counters so that they don't get too far out
1503 * of sync if we crash or get a forced shutdown. We don't want to force
1504 * this to disk, just get a transaction into the iclogs....
1505 */
1506 if (flags & SYNC_SUPER)
1507 xfs_log_sbcount(mp, 0);
1508
1509 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 * Now check to see if the log needs a "dummy" transaction.
1511 */
1512
1513 if (!(flags & SYNC_REMOUNT) && xfs_log_need_covered(mp)) {
1514 xfs_trans_t *tp;
1515 xfs_inode_t *ip;
1516
1517 /*
1518 * Put a dummy transaction in the log to tell
1519 * recovery that all others are OK.
1520 */
1521 tp = xfs_trans_alloc(mp, XFS_TRANS_DUMMY1);
1522 if ((error = xfs_trans_reserve(tp, 0,
1523 XFS_ICHANGE_LOG_RES(mp),
1524 0, 0, 0))) {
1525 xfs_trans_cancel(tp, 0);
1526 return error;
1527 }
1528
1529 ip = mp->m_rootip;
1530 xfs_ilock(ip, XFS_ILOCK_EXCL);
1531
1532 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
1533 xfs_trans_ihold(tp, ip);
1534 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Eric Sandeen1c72bf92007-05-08 13:48:42 +10001535 error = xfs_trans_commit(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1537 xfs_log_force(mp, (xfs_lsn_t)0, log_flags);
1538 }
1539
1540 /*
1541 * When shutting down, we need to insure that the AIL is pushed
1542 * to disk or the filesystem can appear corrupt from the PROM.
1543 */
1544 if ((flags & (SYNC_CLOSE|SYNC_WAIT)) == (SYNC_CLOSE|SYNC_WAIT)) {
1545 XFS_bflush(mp->m_ddev_targp);
1546 if (mp->m_rtdev_targp) {
1547 XFS_bflush(mp->m_rtdev_targp);
1548 }
1549 }
1550
1551 return XFS_ERROR(last_error);
1552}
1553
1554/*
1555 * xfs_vget - called by DMAPI and NFSD to get vnode from file handle
1556 */
1557STATIC int
1558xfs_vget(
1559 bhv_desc_t *bdp,
Nathan Scott67fcaa72006-06-09 17:00:52 +10001560 bhv_vnode_t **vpp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 fid_t *fidp)
1562{
1563 xfs_mount_t *mp = XFS_BHVTOM(bdp);
1564 xfs_fid_t *xfid = (struct xfs_fid *)fidp;
1565 xfs_inode_t *ip;
1566 int error;
1567 xfs_ino_t ino;
1568 unsigned int igen;
1569
1570 /*
1571 * Invalid. Since handles can be created in user space and passed in
1572 * via gethandle(), this is not cause for a panic.
1573 */
1574 if (xfid->xfs_fid_len != sizeof(*xfid) - sizeof(xfid->xfs_fid_len))
1575 return XFS_ERROR(EINVAL);
1576
1577 ino = xfid->xfs_fid_ino;
1578 igen = xfid->xfs_fid_gen;
1579
1580 /*
1581 * NFS can sometimes send requests for ino 0. Fail them gracefully.
1582 */
1583 if (ino == 0)
1584 return XFS_ERROR(ESTALE);
1585
1586 error = xfs_iget(mp, NULL, ino, 0, XFS_ILOCK_SHARED, &ip, 0);
1587 if (error) {
1588 *vpp = NULL;
1589 return error;
1590 }
1591
1592 if (ip == NULL) {
1593 *vpp = NULL;
1594 return XFS_ERROR(EIO);
1595 }
1596
1597 if (ip->i_d.di_mode == 0 || ip->i_d.di_gen != igen) {
1598 xfs_iput_new(ip, XFS_ILOCK_SHARED);
1599 *vpp = NULL;
1600 return XFS_ERROR(ENOENT);
1601 }
1602
1603 *vpp = XFS_ITOV(ip);
1604 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1605 return 0;
1606}
1607
1608
1609#define MNTOPT_LOGBUFS "logbufs" /* number of XFS log buffers */
1610#define MNTOPT_LOGBSIZE "logbsize" /* size of XFS log buffers */
1611#define MNTOPT_LOGDEV "logdev" /* log device */
1612#define MNTOPT_RTDEV "rtdev" /* realtime I/O device */
1613#define MNTOPT_BIOSIZE "biosize" /* log2 of preferred buffered io size */
1614#define MNTOPT_WSYNC "wsync" /* safe-mode nfs compatible mount */
1615#define MNTOPT_INO64 "ino64" /* force inodes into 64-bit range */
1616#define MNTOPT_NOALIGN "noalign" /* turn off stripe alignment */
1617#define MNTOPT_SWALLOC "swalloc" /* turn on stripe width allocation */
1618#define MNTOPT_SUNIT "sunit" /* data volume stripe unit */
1619#define MNTOPT_SWIDTH "swidth" /* data volume stripe width */
1620#define MNTOPT_NOUUID "nouuid" /* ignore filesystem UUID */
1621#define MNTOPT_MTPT "mtpt" /* filesystem mount point */
Nathan Scotte69a3332005-09-02 16:42:26 +10001622#define MNTOPT_GRPID "grpid" /* group-ID from parent directory */
1623#define MNTOPT_NOGRPID "nogrpid" /* group-ID from current process */
1624#define MNTOPT_BSDGROUPS "bsdgroups" /* group-ID from parent directory */
1625#define MNTOPT_SYSVGROUPS "sysvgroups" /* group-ID from current process */
Nathan Scott1f443ad2005-05-05 13:28:29 -07001626#define MNTOPT_ALLOCSIZE "allocsize" /* preferred allocation size */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627#define MNTOPT_IHASHSIZE "ihashsize" /* size of inode hash table */
1628#define MNTOPT_NORECOVERY "norecovery" /* don't run XFS recovery */
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001629#define MNTOPT_BARRIER "barrier" /* use writer barriers for log write and
Nathan Scottd8cc8902005-11-02 10:34:53 +11001630 * unwritten extent conversion */
Christoph Hellwig4ef19dd2006-01-11 15:27:18 +11001631#define MNTOPT_NOBARRIER "nobarrier" /* .. disable */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632#define MNTOPT_OSYNCISOSYNC "osyncisosync" /* o_sync is REALLY o_sync */
1633#define MNTOPT_64BITINODE "inode64" /* inodes can be allocated anywhere */
1634#define MNTOPT_IKEEP "ikeep" /* do not free empty inode clusters */
1635#define MNTOPT_NOIKEEP "noikeep" /* free empty inode clusters */
David Chinnere8c8b3a2005-11-02 10:33:05 +11001636#define MNTOPT_LARGEIO "largeio" /* report large I/O sizes in stat() */
1637#define MNTOPT_NOLARGEIO "nolargeio" /* do not report large I/O sizes
1638 * in stat(). */
Nathan Scottd8cc8902005-11-02 10:34:53 +11001639#define MNTOPT_ATTR2 "attr2" /* do use attr2 attribute format */
1640#define MNTOPT_NOATTR2 "noattr2" /* do not use attr2 attribute format */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641
Nathan Scott1f443ad2005-05-05 13:28:29 -07001642STATIC unsigned long
Nathan Scottb190f112006-06-09 17:13:15 +10001643suffix_strtoul(char *s, char **endp, unsigned int base)
Nathan Scott1f443ad2005-05-05 13:28:29 -07001644{
1645 int last, shift_left_factor = 0;
Nathan Scottb190f112006-06-09 17:13:15 +10001646 char *value = s;
Nathan Scott1f443ad2005-05-05 13:28:29 -07001647
1648 last = strlen(value) - 1;
1649 if (value[last] == 'K' || value[last] == 'k') {
1650 shift_left_factor = 10;
1651 value[last] = '\0';
1652 }
1653 if (value[last] == 'M' || value[last] == 'm') {
1654 shift_left_factor = 20;
1655 value[last] = '\0';
1656 }
1657 if (value[last] == 'G' || value[last] == 'g') {
1658 shift_left_factor = 30;
1659 value[last] = '\0';
1660 }
1661
Nathan Scottb190f112006-06-09 17:13:15 +10001662 return simple_strtoul((const char *)s, endp, base) << shift_left_factor;
Nathan Scott1f443ad2005-05-05 13:28:29 -07001663}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10001665STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666xfs_parseargs(
1667 struct bhv_desc *bhv,
1668 char *options,
1669 struct xfs_mount_args *args,
1670 int update)
1671{
Nathan Scottb83bd132006-06-09 16:48:30 +10001672 bhv_vfs_t *vfsp = bhvtovfs(bhv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 char *this_char, *value, *eov;
1674 int dsunit, dswidth, vol_dsunit, vol_dswidth;
1675 int iosize;
1676
Nathan Scotte15f1952006-03-22 12:47:52 +11001677 args->flags |= XFSMNT_IDELETE;
Nathan Scott3bbcc8e2006-03-31 13:04:56 +10001678 args->flags |= XFSMNT_BARRIER;
1679 args->flags2 |= XFSMNT2_COMPAT_IOSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680
1681 if (!options)
Nathan Scott05db2182005-11-04 09:49:07 +11001682 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683
1684 iosize = dsunit = dswidth = vol_dsunit = vol_dswidth = 0;
1685
1686 while ((this_char = strsep(&options, ",")) != NULL) {
1687 if (!*this_char)
1688 continue;
1689 if ((value = strchr(this_char, '=')) != NULL)
1690 *value++ = 0;
1691
1692 if (!strcmp(this_char, MNTOPT_LOGBUFS)) {
1693 if (!value || !*value) {
Nathan Scottb6574522006-06-09 15:29:40 +10001694 cmn_err(CE_WARN,
1695 "XFS: %s option requires an argument",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001696 this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 return EINVAL;
1698 }
1699 args->logbufs = simple_strtoul(value, &eov, 10);
1700 } else if (!strcmp(this_char, MNTOPT_LOGBSIZE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 if (!value || !*value) {
Nathan Scottb6574522006-06-09 15:29:40 +10001702 cmn_err(CE_WARN,
1703 "XFS: %s option requires an argument",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001704 this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 return EINVAL;
1706 }
Nathan Scott1f443ad2005-05-05 13:28:29 -07001707 args->logbufsize = suffix_strtoul(value, &eov, 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 } else if (!strcmp(this_char, MNTOPT_LOGDEV)) {
1709 if (!value || !*value) {
Nathan Scottb6574522006-06-09 15:29:40 +10001710 cmn_err(CE_WARN,
1711 "XFS: %s option requires an argument",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001712 this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 return EINVAL;
1714 }
1715 strncpy(args->logname, value, MAXNAMELEN);
1716 } else if (!strcmp(this_char, MNTOPT_MTPT)) {
1717 if (!value || !*value) {
Nathan Scottb6574522006-06-09 15:29:40 +10001718 cmn_err(CE_WARN,
1719 "XFS: %s option requires an argument",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001720 this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 return EINVAL;
1722 }
1723 strncpy(args->mtpt, value, MAXNAMELEN);
1724 } else if (!strcmp(this_char, MNTOPT_RTDEV)) {
1725 if (!value || !*value) {
Nathan Scottb6574522006-06-09 15:29:40 +10001726 cmn_err(CE_WARN,
1727 "XFS: %s option requires an argument",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001728 this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 return EINVAL;
1730 }
1731 strncpy(args->rtname, value, MAXNAMELEN);
1732 } else if (!strcmp(this_char, MNTOPT_BIOSIZE)) {
1733 if (!value || !*value) {
Nathan Scottb6574522006-06-09 15:29:40 +10001734 cmn_err(CE_WARN,
1735 "XFS: %s option requires an argument",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001736 this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 return EINVAL;
1738 }
1739 iosize = simple_strtoul(value, &eov, 10);
1740 args->flags |= XFSMNT_IOSIZE;
1741 args->iosizelog = (uint8_t) iosize;
Nathan Scott1f443ad2005-05-05 13:28:29 -07001742 } else if (!strcmp(this_char, MNTOPT_ALLOCSIZE)) {
1743 if (!value || !*value) {
Nathan Scottb6574522006-06-09 15:29:40 +10001744 cmn_err(CE_WARN,
1745 "XFS: %s option requires an argument",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001746 this_char);
1747 return EINVAL;
1748 }
1749 iosize = suffix_strtoul(value, &eov, 10);
1750 args->flags |= XFSMNT_IOSIZE;
1751 args->iosizelog = ffs(iosize) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 } else if (!strcmp(this_char, MNTOPT_IHASHSIZE)) {
1753 if (!value || !*value) {
Nathan Scottb6574522006-06-09 15:29:40 +10001754 cmn_err(CE_WARN,
1755 "XFS: %s option requires an argument",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001756 this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 return EINVAL;
1758 }
1759 args->flags |= XFSMNT_IHASHSIZE;
1760 args->ihashsize = simple_strtoul(value, &eov, 10);
Nathan Scotte69a3332005-09-02 16:42:26 +10001761 } else if (!strcmp(this_char, MNTOPT_GRPID) ||
1762 !strcmp(this_char, MNTOPT_BSDGROUPS)) {
1763 vfsp->vfs_flag |= VFS_GRPID;
1764 } else if (!strcmp(this_char, MNTOPT_NOGRPID) ||
1765 !strcmp(this_char, MNTOPT_SYSVGROUPS)) {
1766 vfsp->vfs_flag &= ~VFS_GRPID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 } else if (!strcmp(this_char, MNTOPT_WSYNC)) {
1768 args->flags |= XFSMNT_WSYNC;
1769 } else if (!strcmp(this_char, MNTOPT_OSYNCISOSYNC)) {
1770 args->flags |= XFSMNT_OSYNCISOSYNC;
1771 } else if (!strcmp(this_char, MNTOPT_NORECOVERY)) {
1772 args->flags |= XFSMNT_NORECOVERY;
1773 } else if (!strcmp(this_char, MNTOPT_INO64)) {
1774 args->flags |= XFSMNT_INO64;
1775#if !XFS_BIG_INUMS
Nathan Scottb6574522006-06-09 15:29:40 +10001776 cmn_err(CE_WARN,
1777 "XFS: %s option not allowed on this system",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001778 this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 return EINVAL;
1780#endif
1781 } else if (!strcmp(this_char, MNTOPT_NOALIGN)) {
1782 args->flags |= XFSMNT_NOALIGN;
1783 } else if (!strcmp(this_char, MNTOPT_SWALLOC)) {
1784 args->flags |= XFSMNT_SWALLOC;
1785 } else if (!strcmp(this_char, MNTOPT_SUNIT)) {
1786 if (!value || !*value) {
Nathan Scottb6574522006-06-09 15:29:40 +10001787 cmn_err(CE_WARN,
1788 "XFS: %s option requires an argument",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001789 this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 return EINVAL;
1791 }
1792 dsunit = simple_strtoul(value, &eov, 10);
1793 } else if (!strcmp(this_char, MNTOPT_SWIDTH)) {
1794 if (!value || !*value) {
Nathan Scottb6574522006-06-09 15:29:40 +10001795 cmn_err(CE_WARN,
1796 "XFS: %s option requires an argument",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001797 this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 return EINVAL;
1799 }
1800 dswidth = simple_strtoul(value, &eov, 10);
1801 } else if (!strcmp(this_char, MNTOPT_64BITINODE)) {
1802 args->flags &= ~XFSMNT_32BITINODES;
1803#if !XFS_BIG_INUMS
Nathan Scottb6574522006-06-09 15:29:40 +10001804 cmn_err(CE_WARN,
1805 "XFS: %s option not allowed on this system",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001806 this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 return EINVAL;
1808#endif
1809 } else if (!strcmp(this_char, MNTOPT_NOUUID)) {
1810 args->flags |= XFSMNT_NOUUID;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001811 } else if (!strcmp(this_char, MNTOPT_BARRIER)) {
1812 args->flags |= XFSMNT_BARRIER;
Christoph Hellwig4ef19dd2006-01-11 15:27:18 +11001813 } else if (!strcmp(this_char, MNTOPT_NOBARRIER)) {
1814 args->flags &= ~XFSMNT_BARRIER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 } else if (!strcmp(this_char, MNTOPT_IKEEP)) {
1816 args->flags &= ~XFSMNT_IDELETE;
1817 } else if (!strcmp(this_char, MNTOPT_NOIKEEP)) {
1818 args->flags |= XFSMNT_IDELETE;
David Chinnere8c8b3a2005-11-02 10:33:05 +11001819 } else if (!strcmp(this_char, MNTOPT_LARGEIO)) {
Nathan Scotte718eeb42005-11-02 15:09:22 +11001820 args->flags2 &= ~XFSMNT2_COMPAT_IOSIZE;
David Chinnere8c8b3a2005-11-02 10:33:05 +11001821 } else if (!strcmp(this_char, MNTOPT_NOLARGEIO)) {
Nathan Scotte718eeb42005-11-02 15:09:22 +11001822 args->flags2 |= XFSMNT2_COMPAT_IOSIZE;
Nathan Scottd8cc8902005-11-02 10:34:53 +11001823 } else if (!strcmp(this_char, MNTOPT_ATTR2)) {
Nathan Scott13059ff2006-01-11 15:32:01 +11001824 args->flags |= XFSMNT_ATTR2;
Nathan Scottd8cc8902005-11-02 10:34:53 +11001825 } else if (!strcmp(this_char, MNTOPT_NOATTR2)) {
Nathan Scott13059ff2006-01-11 15:32:01 +11001826 args->flags &= ~XFSMNT_ATTR2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 } else if (!strcmp(this_char, "osyncisdsync")) {
1828 /* no-op, this is now the default */
Nathan Scottb6574522006-06-09 15:29:40 +10001829 cmn_err(CE_WARN,
1830 "XFS: osyncisdsync is now the default, option is deprecated.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 } else if (!strcmp(this_char, "irixsgid")) {
Nathan Scottb6574522006-06-09 15:29:40 +10001832 cmn_err(CE_WARN,
1833 "XFS: irixsgid is now a sysctl(2) variable, option is deprecated.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 } else {
Nathan Scottb6574522006-06-09 15:29:40 +10001835 cmn_err(CE_WARN,
1836 "XFS: unknown mount option [%s].", this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 return EINVAL;
1838 }
1839 }
1840
1841 if (args->flags & XFSMNT_NORECOVERY) {
1842 if ((vfsp->vfs_flag & VFS_RDONLY) == 0) {
Nathan Scottb6574522006-06-09 15:29:40 +10001843 cmn_err(CE_WARN,
1844 "XFS: no-recovery mounts must be read-only.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 return EINVAL;
1846 }
1847 }
1848
1849 if ((args->flags & XFSMNT_NOALIGN) && (dsunit || dswidth)) {
Nathan Scottb6574522006-06-09 15:29:40 +10001850 cmn_err(CE_WARN,
1851 "XFS: sunit and swidth options incompatible with the noalign option");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 return EINVAL;
1853 }
1854
1855 if ((dsunit && !dswidth) || (!dsunit && dswidth)) {
Nathan Scottb6574522006-06-09 15:29:40 +10001856 cmn_err(CE_WARN,
1857 "XFS: sunit and swidth must be specified together");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 return EINVAL;
1859 }
1860
1861 if (dsunit && (dswidth % dsunit != 0)) {
Nathan Scottb6574522006-06-09 15:29:40 +10001862 cmn_err(CE_WARN,
1863 "XFS: stripe width (%d) must be a multiple of the stripe unit (%d)",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 dswidth, dsunit);
1865 return EINVAL;
1866 }
1867
1868 if ((args->flags & XFSMNT_NOALIGN) != XFSMNT_NOALIGN) {
1869 if (dsunit) {
1870 args->sunit = dsunit;
1871 args->flags |= XFSMNT_RETERR;
1872 } else {
1873 args->sunit = vol_dsunit;
1874 }
1875 dswidth ? (args->swidth = dswidth) :
1876 (args->swidth = vol_dswidth);
1877 } else {
1878 args->sunit = args->swidth = 0;
1879 }
1880
Nathan Scott05db2182005-11-04 09:49:07 +11001881done:
Nathan Scottc11e2c32005-11-02 15:11:45 +11001882 if (args->flags & XFSMNT_32BITINODES)
1883 vfsp->vfs_flag |= VFS_32BITINODES;
Nathan Scotte718eeb42005-11-02 15:09:22 +11001884 if (args->flags2)
1885 args->flags |= XFSMNT_FLAGS2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 return 0;
1887}
1888
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10001889STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890xfs_showargs(
1891 struct bhv_desc *bhv,
1892 struct seq_file *m)
1893{
1894 static struct proc_xfs_info {
1895 int flag;
1896 char *str;
1897 } xfs_info[] = {
1898 /* the few simple ones we can get from the mount struct */
1899 { XFS_MOUNT_WSYNC, "," MNTOPT_WSYNC },
1900 { XFS_MOUNT_INO64, "," MNTOPT_INO64 },
1901 { XFS_MOUNT_NOALIGN, "," MNTOPT_NOALIGN },
1902 { XFS_MOUNT_SWALLOC, "," MNTOPT_SWALLOC },
1903 { XFS_MOUNT_NOUUID, "," MNTOPT_NOUUID },
1904 { XFS_MOUNT_NORECOVERY, "," MNTOPT_NORECOVERY },
1905 { XFS_MOUNT_OSYNCISOSYNC, "," MNTOPT_OSYNCISOSYNC },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 { 0, NULL }
1907 };
1908 struct proc_xfs_info *xfs_infop;
1909 struct xfs_mount *mp = XFS_BHVTOM(bhv);
Nathan Scottb83bd132006-06-09 16:48:30 +10001910 struct bhv_vfs *vfsp = XFS_MTOVFS(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
1912 for (xfs_infop = xfs_info; xfs_infop->flag; xfs_infop++) {
1913 if (mp->m_flags & xfs_infop->flag)
1914 seq_puts(m, xfs_infop->str);
1915 }
1916
1917 if (mp->m_flags & XFS_MOUNT_IHASHSIZE)
Nathan Scott215101c2006-09-28 11:04:43 +10001918 seq_printf(m, "," MNTOPT_IHASHSIZE "=%d", (int)mp->m_ihsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919
1920 if (mp->m_flags & XFS_MOUNT_DFLT_IOSIZE)
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11001921 seq_printf(m, "," MNTOPT_ALLOCSIZE "=%dk",
1922 (int)(1 << mp->m_writeio_log) >> 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923
1924 if (mp->m_logbufs > 0)
1925 seq_printf(m, "," MNTOPT_LOGBUFS "=%d", mp->m_logbufs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 if (mp->m_logbsize > 0)
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11001927 seq_printf(m, "," MNTOPT_LOGBSIZE "=%dk", mp->m_logbsize >> 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928
Nathan Scottfc1f8c12005-11-02 11:44:33 +11001929 if (mp->m_logname)
1930 seq_printf(m, "," MNTOPT_LOGDEV "=%s", mp->m_logname);
Nathan Scottfc1f8c12005-11-02 11:44:33 +11001931 if (mp->m_rtname)
1932 seq_printf(m, "," MNTOPT_RTDEV "=%s", mp->m_rtname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
1934 if (mp->m_dalign > 0)
1935 seq_printf(m, "," MNTOPT_SUNIT "=%d",
1936 (int)XFS_FSB_TO_BB(mp, mp->m_dalign));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 if (mp->m_swidth > 0)
1938 seq_printf(m, "," MNTOPT_SWIDTH "=%d",
1939 (int)XFS_FSB_TO_BB(mp, mp->m_swidth));
1940
Nathan Scotte15f1952006-03-22 12:47:52 +11001941 if (!(mp->m_flags & XFS_MOUNT_IDELETE))
1942 seq_printf(m, "," MNTOPT_IKEEP);
Nathan Scottfa7e7d72005-11-02 15:00:48 +11001943 if (!(mp->m_flags & XFS_MOUNT_COMPAT_IOSIZE))
1944 seq_printf(m, "," MNTOPT_LARGEIO);
1945
Nathan Scottc11e2c32005-11-02 15:11:45 +11001946 if (!(vfsp->vfs_flag & VFS_32BITINODES))
1947 seq_printf(m, "," MNTOPT_64BITINODE);
Nathan Scotte69a3332005-09-02 16:42:26 +10001948 if (vfsp->vfs_flag & VFS_GRPID)
1949 seq_printf(m, "," MNTOPT_GRPID);
1950
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 return 0;
1952}
1953
David Chinner28239452007-02-10 18:36:40 +11001954/*
1955 * Second stage of a freeze. The data is already frozen, now we have to take
1956 * care of the metadata. New transactions are already blocked, so we need to
1957 * wait for any remaining transactions to drain out before proceding.
1958 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959STATIC void
1960xfs_freeze(
1961 bhv_desc_t *bdp)
1962{
1963 xfs_mount_t *mp = XFS_BHVTOM(bdp);
1964
David Chinner28239452007-02-10 18:36:40 +11001965 /* wait for all modifications to complete */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 while (atomic_read(&mp->m_active_trans) > 0)
1967 delay(100);
1968
David Chinner28239452007-02-10 18:36:40 +11001969 /* flush inodes and push all remaining buffers out to disk */
1970 xfs_quiesce_fs(mp);
1971
David Chinner3c0dc772007-02-10 18:37:22 +11001972 ASSERT_ALWAYS(atomic_read(&mp->m_active_trans) == 0);
David Chinner28239452007-02-10 18:36:40 +11001973
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 /* Push the superblock and write an unmount record */
David Chinner92821e22007-05-24 15:26:31 +10001975 xfs_log_sbcount(mp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 xfs_log_unmount_write(mp);
1977 xfs_unmountfs_writesb(mp);
Christoph Hellwige13a73f2006-01-11 15:30:08 +11001978 xfs_fs_log_dummy(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979}
1980
1981
Nathan Scottb83bd132006-06-09 16:48:30 +10001982bhv_vfsops_t xfs_vfsops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 BHV_IDENTITY_INIT(VFS_BHV_XFS,VFS_POSITION_XFS),
1984 .vfs_parseargs = xfs_parseargs,
1985 .vfs_showargs = xfs_showargs,
1986 .vfs_mount = xfs_mount,
1987 .vfs_unmount = xfs_unmount,
1988 .vfs_mntupdate = xfs_mntupdate,
1989 .vfs_root = xfs_root,
1990 .vfs_statvfs = xfs_statvfs,
1991 .vfs_sync = xfs_sync,
1992 .vfs_vget = xfs_vget,
1993 .vfs_dmapiops = (vfs_dmapiops_t)fs_nosys,
1994 .vfs_quotactl = (vfs_quotactl_t)fs_nosys,
1995 .vfs_init_vnode = xfs_initialize_vnode,
1996 .vfs_force_shutdown = xfs_do_force_shutdown,
1997 .vfs_freeze = xfs_freeze,
1998};