[XFS] write barrier support Issue all log sync operations as ordered
[deliverable/linux.git] / fs / xfs / xfs_vfsops.c
CommitLineData
1da177e4
LT
1/*
2 * XFS filesystem operations.
3 *
4 * Copyright (c) 2000-2005 Silicon Graphics, Inc. All Rights Reserved.
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of version 2 of the GNU General Public License as
8 * published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it would be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 *
14 * Further, this software is distributed without any warranty that it is
15 * free of the rightful claim of any third person regarding infringement
16 * or the like. Any license provided herein, whether implied or
17 * otherwise, applies only to this software file. Patent licenses, if
18 * any, provided herein do not apply to combinations of this program with
19 * other software, or any other product whatsoever.
20 *
21 * You should have received a copy of the GNU General Public License along
22 * with this program; if not, write the Free Software Foundation, Inc., 59
23 * Temple Place - Suite 330, Boston MA 02111-1307, USA.
24 *
25 * Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
26 * Mountain View, CA 94043, or:
27 *
28 * http://www.sgi.com
29 *
30 * For further information regarding this notice, see:
31 *
32 * http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
33 */
34
35#include "xfs.h"
36#include "xfs_macros.h"
37#include "xfs_types.h"
38#include "xfs_inum.h"
39#include "xfs_log.h"
40#include "xfs_trans.h"
41#include "xfs_sb.h"
42#include "xfs_dir.h"
43#include "xfs_dir2.h"
44#include "xfs_dmapi.h"
45#include "xfs_mount.h"
46#include "xfs_bmap_btree.h"
47#include "xfs_ialloc_btree.h"
48#include "xfs_alloc_btree.h"
49#include "xfs_btree.h"
50#include "xfs_alloc.h"
51#include "xfs_ialloc.h"
52#include "xfs_attr_sf.h"
53#include "xfs_dir_sf.h"
54#include "xfs_dir2_sf.h"
55#include "xfs_dinode.h"
56#include "xfs_inode_item.h"
57#include "xfs_inode.h"
58#include "xfs_ag.h"
59#include "xfs_error.h"
60#include "xfs_bmap.h"
61#include "xfs_da_btree.h"
62#include "xfs_rw.h"
63#include "xfs_refcache.h"
64#include "xfs_buf_item.h"
65#include "xfs_extfree_item.h"
66#include "xfs_quota.h"
67#include "xfs_dir2_trace.h"
68#include "xfs_acl.h"
69#include "xfs_attr.h"
70#include "xfs_clnt.h"
71#include "xfs_log_priv.h"
72
73STATIC int xfs_sync(bhv_desc_t *, int, cred_t *);
74
75int
76xfs_init(void)
77{
78 extern kmem_zone_t *xfs_bmap_free_item_zone;
79 extern kmem_zone_t *xfs_btree_cur_zone;
80 extern kmem_zone_t *xfs_trans_zone;
81 extern kmem_zone_t *xfs_buf_item_zone;
82 extern kmem_zone_t *xfs_dabuf_zone;
83#ifdef XFS_DABUF_DEBUG
84 extern lock_t xfs_dabuf_global_lock;
85 spinlock_init(&xfs_dabuf_global_lock, "xfsda");
86#endif
87
88 /*
89 * Initialize all of the zone allocators we use.
90 */
91 xfs_bmap_free_item_zone = kmem_zone_init(sizeof(xfs_bmap_free_item_t),
92 "xfs_bmap_free_item");
93 xfs_btree_cur_zone = kmem_zone_init(sizeof(xfs_btree_cur_t),
94 "xfs_btree_cur");
95 xfs_inode_zone = kmem_zone_init(sizeof(xfs_inode_t), "xfs_inode");
96 xfs_trans_zone = kmem_zone_init(sizeof(xfs_trans_t), "xfs_trans");
97 xfs_da_state_zone =
98 kmem_zone_init(sizeof(xfs_da_state_t), "xfs_da_state");
99 xfs_dabuf_zone = kmem_zone_init(sizeof(xfs_dabuf_t), "xfs_dabuf");
100
101 /*
102 * The size of the zone allocated buf log item is the maximum
103 * size possible under XFS. This wastes a little bit of memory,
104 * but it is much faster.
105 */
106 xfs_buf_item_zone =
107 kmem_zone_init((sizeof(xfs_buf_log_item_t) +
108 (((XFS_MAX_BLOCKSIZE / XFS_BLI_CHUNK) /
109 NBWORD) * sizeof(int))),
110 "xfs_buf_item");
111 xfs_efd_zone = kmem_zone_init((sizeof(xfs_efd_log_item_t) +
112 ((XFS_EFD_MAX_FAST_EXTENTS - 1) * sizeof(xfs_extent_t))),
113 "xfs_efd_item");
114 xfs_efi_zone = kmem_zone_init((sizeof(xfs_efi_log_item_t) +
115 ((XFS_EFI_MAX_FAST_EXTENTS - 1) * sizeof(xfs_extent_t))),
116 "xfs_efi_item");
117 xfs_ifork_zone = kmem_zone_init(sizeof(xfs_ifork_t), "xfs_ifork");
118 xfs_ili_zone = kmem_zone_init(sizeof(xfs_inode_log_item_t), "xfs_ili");
119 xfs_chashlist_zone = kmem_zone_init(sizeof(xfs_chashlist_t),
120 "xfs_chashlist");
121 xfs_acl_zone_init(xfs_acl_zone, "xfs_acl");
122
123 /*
124 * Allocate global trace buffers.
125 */
126#ifdef XFS_ALLOC_TRACE
127 xfs_alloc_trace_buf = ktrace_alloc(XFS_ALLOC_TRACE_SIZE, KM_SLEEP);
128#endif
129#ifdef XFS_BMAP_TRACE
130 xfs_bmap_trace_buf = ktrace_alloc(XFS_BMAP_TRACE_SIZE, KM_SLEEP);
131#endif
132#ifdef XFS_BMBT_TRACE
133 xfs_bmbt_trace_buf = ktrace_alloc(XFS_BMBT_TRACE_SIZE, KM_SLEEP);
134#endif
135#ifdef XFS_DIR_TRACE
136 xfs_dir_trace_buf = ktrace_alloc(XFS_DIR_TRACE_SIZE, KM_SLEEP);
137#endif
138#ifdef XFS_ATTR_TRACE
139 xfs_attr_trace_buf = ktrace_alloc(XFS_ATTR_TRACE_SIZE, KM_SLEEP);
140#endif
141#ifdef XFS_DIR2_TRACE
142 xfs_dir2_trace_buf = ktrace_alloc(XFS_DIR2_GTRACE_SIZE, KM_SLEEP);
143#endif
144
145 xfs_dir_startup();
146
147#if (defined(DEBUG) || defined(INDUCE_IO_ERROR))
148 xfs_error_test_init();
149#endif /* DEBUG || INDUCE_IO_ERROR */
150
151 xfs_init_procfs();
152 xfs_sysctl_register();
153 return 0;
154}
155
156void
157xfs_cleanup(void)
158{
159 extern kmem_zone_t *xfs_bmap_free_item_zone;
160 extern kmem_zone_t *xfs_btree_cur_zone;
161 extern kmem_zone_t *xfs_inode_zone;
162 extern kmem_zone_t *xfs_trans_zone;
163 extern kmem_zone_t *xfs_da_state_zone;
164 extern kmem_zone_t *xfs_dabuf_zone;
165 extern kmem_zone_t *xfs_efd_zone;
166 extern kmem_zone_t *xfs_efi_zone;
167 extern kmem_zone_t *xfs_buf_item_zone;
168 extern kmem_zone_t *xfs_chashlist_zone;
169
170 xfs_cleanup_procfs();
171 xfs_sysctl_unregister();
172 xfs_refcache_destroy();
173 xfs_acl_zone_destroy(xfs_acl_zone);
174
175#ifdef XFS_DIR2_TRACE
176 ktrace_free(xfs_dir2_trace_buf);
177#endif
178#ifdef XFS_ATTR_TRACE
179 ktrace_free(xfs_attr_trace_buf);
180#endif
181#ifdef XFS_DIR_TRACE
182 ktrace_free(xfs_dir_trace_buf);
183#endif
184#ifdef XFS_BMBT_TRACE
185 ktrace_free(xfs_bmbt_trace_buf);
186#endif
187#ifdef XFS_BMAP_TRACE
188 ktrace_free(xfs_bmap_trace_buf);
189#endif
190#ifdef XFS_ALLOC_TRACE
191 ktrace_free(xfs_alloc_trace_buf);
192#endif
193
194 kmem_cache_destroy(xfs_bmap_free_item_zone);
195 kmem_cache_destroy(xfs_btree_cur_zone);
196 kmem_cache_destroy(xfs_inode_zone);
197 kmem_cache_destroy(xfs_trans_zone);
198 kmem_cache_destroy(xfs_da_state_zone);
199 kmem_cache_destroy(xfs_dabuf_zone);
200 kmem_cache_destroy(xfs_buf_item_zone);
201 kmem_cache_destroy(xfs_efd_zone);
202 kmem_cache_destroy(xfs_efi_zone);
203 kmem_cache_destroy(xfs_ifork_zone);
204 kmem_cache_destroy(xfs_ili_zone);
205 kmem_cache_destroy(xfs_chashlist_zone);
206}
207
208/*
209 * xfs_start_flags
210 *
211 * This function fills in xfs_mount_t fields based on mount args.
212 * Note: the superblock has _not_ yet been read in.
213 */
214STATIC int
215xfs_start_flags(
216 struct vfs *vfs,
217 struct xfs_mount_args *ap,
218 struct xfs_mount *mp)
219{
220 /* Values are in BBs */
221 if ((ap->flags & XFSMNT_NOALIGN) != XFSMNT_NOALIGN) {
222 /*
223 * At this point the superblock has not been read
224 * in, therefore we do not know the block size.
225 * Before the mount call ends we will convert
226 * these to FSBs.
227 */
228 mp->m_dalign = ap->sunit;
229 mp->m_swidth = ap->swidth;
230 }
231
232 if (ap->logbufs != -1 &&
233#if defined(DEBUG) || defined(XLOG_NOLOG)
234 ap->logbufs != 0 &&
235#endif
236 (ap->logbufs < XLOG_MIN_ICLOGS ||
237 ap->logbufs > XLOG_MAX_ICLOGS)) {
238 cmn_err(CE_WARN,
239 "XFS: invalid logbufs value: %d [not %d-%d]",
240 ap->logbufs, XLOG_MIN_ICLOGS, XLOG_MAX_ICLOGS);
241 return XFS_ERROR(EINVAL);
242 }
243 mp->m_logbufs = ap->logbufs;
244 if (ap->logbufsize != -1 &&
245 ap->logbufsize != 16 * 1024 &&
246 ap->logbufsize != 32 * 1024 &&
247 ap->logbufsize != 64 * 1024 &&
248 ap->logbufsize != 128 * 1024 &&
249 ap->logbufsize != 256 * 1024) {
250 cmn_err(CE_WARN,
251 "XFS: invalid logbufsize: %d [not 16k,32k,64k,128k or 256k]",
252 ap->logbufsize);
253 return XFS_ERROR(EINVAL);
254 }
255 mp->m_ihsize = ap->ihashsize;
256 mp->m_logbsize = ap->logbufsize;
257 mp->m_fsname_len = strlen(ap->fsname) + 1;
258 mp->m_fsname = kmem_alloc(mp->m_fsname_len, KM_SLEEP);
259 strcpy(mp->m_fsname, ap->fsname);
260
261 if (ap->flags & XFSMNT_WSYNC)
262 mp->m_flags |= XFS_MOUNT_WSYNC;
263#if XFS_BIG_INUMS
264 if (ap->flags & XFSMNT_INO64) {
265 mp->m_flags |= XFS_MOUNT_INO64;
266 mp->m_inoadd = XFS_INO64_OFFSET;
267 }
268#endif
269 if (ap->flags & XFSMNT_NOATIME)
270 mp->m_flags |= XFS_MOUNT_NOATIME;
271
272 if (ap->flags & XFSMNT_RETERR)
273 mp->m_flags |= XFS_MOUNT_RETERR;
274
275 if (ap->flags & XFSMNT_NOALIGN)
276 mp->m_flags |= XFS_MOUNT_NOALIGN;
277
278 if (ap->flags & XFSMNT_SWALLOC)
279 mp->m_flags |= XFS_MOUNT_SWALLOC;
280
281 if (ap->flags & XFSMNT_OSYNCISOSYNC)
282 mp->m_flags |= XFS_MOUNT_OSYNCISOSYNC;
283
284 if (ap->flags & XFSMNT_32BITINODES)
285 mp->m_flags |= (XFS_MOUNT_32BITINODES | XFS_MOUNT_32BITINOOPT);
286
287 if (ap->flags & XFSMNT_IOSIZE) {
288 if (ap->iosizelog > XFS_MAX_IO_LOG ||
289 ap->iosizelog < XFS_MIN_IO_LOG) {
290 cmn_err(CE_WARN,
291 "XFS: invalid log iosize: %d [not %d-%d]",
292 ap->iosizelog, XFS_MIN_IO_LOG,
293 XFS_MAX_IO_LOG);
294 return XFS_ERROR(EINVAL);
295 }
296
297 mp->m_flags |= XFS_MOUNT_DFLT_IOSIZE;
298 mp->m_readio_log = mp->m_writeio_log = ap->iosizelog;
299 }
300
301 if (ap->flags & XFSMNT_IHASHSIZE)
302 mp->m_flags |= XFS_MOUNT_IHASHSIZE;
303
304 if (ap->flags & XFSMNT_IDELETE)
305 mp->m_flags |= XFS_MOUNT_IDELETE;
306
307 if (ap->flags & XFSMNT_DIRSYNC)
308 mp->m_flags |= XFS_MOUNT_DIRSYNC;
309
310 /*
311 * no recovery flag requires a read-only mount
312 */
313 if (ap->flags & XFSMNT_NORECOVERY) {
314 if (!(vfs->vfs_flag & VFS_RDONLY)) {
315 cmn_err(CE_WARN,
316 "XFS: tried to mount a FS read-write without recovery!");
317 return XFS_ERROR(EINVAL);
318 }
319 mp->m_flags |= XFS_MOUNT_NORECOVERY;
320 }
321
322 if (ap->flags & XFSMNT_NOUUID)
323 mp->m_flags |= XFS_MOUNT_NOUUID;
f538d4da
CH
324 if (ap->flags & XFSMNT_BARRIER)
325 mp->m_flags |= XFS_MOUNT_BARRIER;
1da177e4
LT
326
327 return 0;
328}
329
330/*
331 * This function fills in xfs_mount_t fields based on mount args.
332 * Note: the superblock _has_ now been read in.
333 */
334STATIC int
335xfs_finish_flags(
336 struct vfs *vfs,
337 struct xfs_mount_args *ap,
338 struct xfs_mount *mp)
339{
340 int ronly = (vfs->vfs_flag & VFS_RDONLY);
341
342 /* Fail a mount where the logbuf is smaller then the log stripe */
343 if (XFS_SB_VERSION_HASLOGV2(&mp->m_sb)) {
344 if ((ap->logbufsize == -1) &&
345 (mp->m_sb.sb_logsunit > XLOG_BIG_RECORD_BSIZE)) {
346 mp->m_logbsize = mp->m_sb.sb_logsunit;
347 } else if (ap->logbufsize < mp->m_sb.sb_logsunit) {
348 cmn_err(CE_WARN,
349 "XFS: logbuf size must be greater than or equal to log stripe size");
350 return XFS_ERROR(EINVAL);
351 }
352 } else {
353 /* Fail a mount if the logbuf is larger than 32K */
354 if (ap->logbufsize > XLOG_BIG_RECORD_BSIZE) {
355 cmn_err(CE_WARN,
356 "XFS: logbuf size for version 1 logs must be 16K or 32K");
357 return XFS_ERROR(EINVAL);
358 }
359 }
360
361 /*
362 * prohibit r/w mounts of read-only filesystems
363 */
364 if ((mp->m_sb.sb_flags & XFS_SBF_READONLY) && !ronly) {
365 cmn_err(CE_WARN,
366 "XFS: cannot mount a read-only filesystem as read-write");
367 return XFS_ERROR(EROFS);
368 }
369
1da177e4
LT
370 /*
371 * check for shared mount.
372 */
373 if (ap->flags & XFSMNT_SHARED) {
374 if (!XFS_SB_VERSION_HASSHARED(&mp->m_sb))
375 return XFS_ERROR(EINVAL);
376
377 /*
378 * For IRIX 6.5, shared mounts must have the shared
379 * version bit set, have the persistent readonly
380 * field set, must be version 0 and can only be mounted
381 * read-only.
382 */
383 if (!ronly || !(mp->m_sb.sb_flags & XFS_SBF_READONLY) ||
384 (mp->m_sb.sb_shared_vn != 0))
385 return XFS_ERROR(EINVAL);
386
387 mp->m_flags |= XFS_MOUNT_SHARED;
388
389 /*
390 * Shared XFS V0 can't deal with DMI. Return EINVAL.
391 */
392 if (mp->m_sb.sb_shared_vn == 0 && (ap->flags & XFSMNT_DMAPI))
393 return XFS_ERROR(EINVAL);
394 }
395
396 return 0;
397}
398
399/*
400 * xfs_mount
401 *
402 * The file system configurations are:
403 * (1) device (partition) with data and internal log
404 * (2) logical volume with data and log subvolumes.
405 * (3) logical volume with data, log, and realtime subvolumes.
406 *
407 * We only have to handle opening the log and realtime volumes here if
408 * they are present. The data subvolume has already been opened by
409 * get_sb_bdev() and is stored in vfsp->vfs_super->s_bdev.
410 */
411STATIC int
412xfs_mount(
413 struct bhv_desc *bhvp,
414 struct xfs_mount_args *args,
415 cred_t *credp)
416{
417 struct vfs *vfsp = bhvtovfs(bhvp);
418 struct bhv_desc *p;
419 struct xfs_mount *mp = XFS_BHVTOM(bhvp);
420 struct block_device *ddev, *logdev, *rtdev;
421 int flags = 0, error;
422
423 ddev = vfsp->vfs_super->s_bdev;
424 logdev = rtdev = NULL;
425
426 /*
427 * Setup xfs_mount function vectors from available behaviors
428 */
429 p = vfs_bhv_lookup(vfsp, VFS_POSITION_DM);
430 mp->m_dm_ops = p ? *(xfs_dmops_t *) vfs_bhv_custom(p) : xfs_dmcore_stub;
431 p = vfs_bhv_lookup(vfsp, VFS_POSITION_QM);
432 mp->m_qm_ops = p ? *(xfs_qmops_t *) vfs_bhv_custom(p) : xfs_qmcore_stub;
433 p = vfs_bhv_lookup(vfsp, VFS_POSITION_IO);
434 mp->m_io_ops = p ? *(xfs_ioops_t *) vfs_bhv_custom(p) : xfs_iocore_xfs;
435
436 /*
437 * Open real time and log devices - order is important.
438 */
439 if (args->logname[0]) {
440 error = xfs_blkdev_get(mp, args->logname, &logdev);
441 if (error)
442 return error;
443 }
444 if (args->rtname[0]) {
445 error = xfs_blkdev_get(mp, args->rtname, &rtdev);
446 if (error) {
447 xfs_blkdev_put(logdev);
448 return error;
449 }
450
451 if (rtdev == ddev || rtdev == logdev) {
452 cmn_err(CE_WARN,
453 "XFS: Cannot mount filesystem with identical rtdev and ddev/logdev.");
454 xfs_blkdev_put(logdev);
455 xfs_blkdev_put(rtdev);
456 return EINVAL;
457 }
458 }
459
460 /*
461 * Setup xfs_mount buffer target pointers
462 */
463 error = ENOMEM;
464 mp->m_ddev_targp = xfs_alloc_buftarg(ddev, 0);
465 if (!mp->m_ddev_targp) {
466 xfs_blkdev_put(logdev);
467 xfs_blkdev_put(rtdev);
468 return error;
469 }
470 if (rtdev) {
471 mp->m_rtdev_targp = xfs_alloc_buftarg(rtdev, 1);
472 if (!mp->m_rtdev_targp)
473 goto error0;
474 }
475 mp->m_logdev_targp = (logdev && logdev != ddev) ?
476 xfs_alloc_buftarg(logdev, 1) : mp->m_ddev_targp;
477 if (!mp->m_logdev_targp)
478 goto error0;
479
480 /*
481 * Setup flags based on mount(2) options and then the superblock
482 */
483 error = xfs_start_flags(vfsp, args, mp);
484 if (error)
485 goto error1;
486 error = xfs_readsb(mp);
487 if (error)
488 goto error1;
489 error = xfs_finish_flags(vfsp, args, mp);
490 if (error)
491 goto error2;
492
493 /*
494 * Setup xfs_mount buffer target pointers based on superblock
495 */
496 error = xfs_setsize_buftarg(mp->m_ddev_targp, mp->m_sb.sb_blocksize,
497 mp->m_sb.sb_sectsize);
498 if (!error && logdev && logdev != ddev) {
499 unsigned int log_sector_size = BBSIZE;
500
501 if (XFS_SB_VERSION_HASSECTOR(&mp->m_sb))
502 log_sector_size = mp->m_sb.sb_logsectsize;
503 error = xfs_setsize_buftarg(mp->m_logdev_targp,
504 mp->m_sb.sb_blocksize,
505 log_sector_size);
506 }
507 if (!error && rtdev)
508 error = xfs_setsize_buftarg(mp->m_rtdev_targp,
509 mp->m_sb.sb_blocksize,
510 mp->m_sb.sb_sectsize);
511 if (error)
512 goto error2;
513
514 error = XFS_IOINIT(vfsp, args, flags);
f538d4da
CH
515 if (error)
516 goto error2;
517
518 if ((args->flags & XFSMNT_BARRIER) &&
519 !(XFS_MTOVFS(mp)->vfs_flag & VFS_RDONLY))
520 xfs_mountfs_check_barriers(mp);
521 return 0;
522
1da177e4
LT
523error2:
524 if (mp->m_sb_bp)
525 xfs_freesb(mp);
526error1:
527 xfs_binval(mp->m_ddev_targp);
528 if (logdev && logdev != ddev)
529 xfs_binval(mp->m_logdev_targp);
530 if (rtdev)
531 xfs_binval(mp->m_rtdev_targp);
532error0:
533 xfs_unmountfs_close(mp, credp);
534 return error;
535}
536
537STATIC int
538xfs_unmount(
539 bhv_desc_t *bdp,
540 int flags,
541 cred_t *credp)
542{
543 struct vfs *vfsp = bhvtovfs(bdp);
544 xfs_mount_t *mp = XFS_BHVTOM(bdp);
545 xfs_inode_t *rip;
546 vnode_t *rvp;
547 int unmount_event_wanted = 0;
548 int unmount_event_flags = 0;
549 int xfs_unmountfs_needed = 0;
550 int error;
551
552 rip = mp->m_rootip;
553 rvp = XFS_ITOV(rip);
554
555 if (vfsp->vfs_flag & VFS_DMI) {
556 error = XFS_SEND_PREUNMOUNT(mp, vfsp,
557 rvp, DM_RIGHT_NULL, rvp, DM_RIGHT_NULL,
558 NULL, NULL, 0, 0,
559 (mp->m_dmevmask & (1<<DM_EVENT_PREUNMOUNT))?
560 0:DM_FLAGS_UNWANTED);
561 if (error)
562 return XFS_ERROR(error);
563 unmount_event_wanted = 1;
564 unmount_event_flags = (mp->m_dmevmask & (1<<DM_EVENT_UNMOUNT))?
565 0 : DM_FLAGS_UNWANTED;
566 }
567
568 /*
569 * First blow any referenced inode from this file system
570 * out of the reference cache, and delete the timer.
571 */
572 xfs_refcache_purge_mp(mp);
573
574 XFS_bflush(mp->m_ddev_targp);
575 error = xfs_unmount_flush(mp, 0);
576 if (error)
577 goto out;
578
579 ASSERT(vn_count(rvp) == 1);
580
581 /*
582 * Drop the reference count
583 */
584 VN_RELE(rvp);
585
586 /*
587 * If we're forcing a shutdown, typically because of a media error,
588 * we want to make sure we invalidate dirty pages that belong to
589 * referenced vnodes as well.
590 */
591 if (XFS_FORCED_SHUTDOWN(mp)) {
592 error = xfs_sync(&mp->m_bhv,
593 (SYNC_WAIT | SYNC_CLOSE), credp);
594 ASSERT(error != EFSCORRUPTED);
595 }
596 xfs_unmountfs_needed = 1;
597
598out:
599 /* Send DMAPI event, if required.
600 * Then do xfs_unmountfs() if needed.
601 * Then return error (or zero).
602 */
603 if (unmount_event_wanted) {
604 /* Note: mp structure must still exist for
605 * XFS_SEND_UNMOUNT() call.
606 */
607 XFS_SEND_UNMOUNT(mp, vfsp, error == 0 ? rvp : NULL,
608 DM_RIGHT_NULL, 0, error, unmount_event_flags);
609 }
610 if (xfs_unmountfs_needed) {
611 /*
612 * Call common unmount function to flush to disk
613 * and free the super block buffer & mount structures.
614 */
615 xfs_unmountfs(mp, credp);
616 }
617
618 return XFS_ERROR(error);
619}
620
f898d6c0
CH
621STATIC int
622xfs_quiesce_fs(
623 xfs_mount_t *mp)
624{
625 int count = 0, pincount;
626
627 xfs_refcache_purge_mp(mp);
628 xfs_flush_buftarg(mp->m_ddev_targp, 0);
629 xfs_finish_reclaim_all(mp, 0);
630
631 /* This loop must run at least twice.
632 * The first instance of the loop will flush
633 * most meta data but that will generate more
634 * meta data (typically directory updates).
635 * Which then must be flushed and logged before
636 * we can write the unmount record.
637 */
638 do {
639 xfs_syncsub(mp, SYNC_REMOUNT|SYNC_ATTR|SYNC_WAIT, 0, NULL);
640 pincount = xfs_flush_buftarg(mp->m_ddev_targp, 1);
641 if (!pincount) {
642 delay(50);
643 count++;
644 }
645 } while (count < 2);
646
647 return 0;
648}
1da177e4
LT
649
650STATIC int
651xfs_mntupdate(
652 bhv_desc_t *bdp,
653 int *flags,
654 struct xfs_mount_args *args)
655{
656 struct vfs *vfsp = bhvtovfs(bdp);
657 xfs_mount_t *mp = XFS_BHVTOM(bdp);
f898d6c0 658 int error;
1da177e4
LT
659
660 if (args->flags & XFSMNT_NOATIME)
661 mp->m_flags |= XFS_MOUNT_NOATIME;
662 else
663 mp->m_flags &= ~XFS_MOUNT_NOATIME;
664
f538d4da
CH
665 if ((vfsp->vfs_flag & VFS_RDONLY) &&
666 !(*flags & MS_RDONLY)) {
667 vfsp->vfs_flag &= ~VFS_RDONLY;
668
669 if (args->flags & XFSMNT_BARRIER)
670 xfs_mountfs_check_barriers(mp);
1da177e4
LT
671 }
672
f538d4da
CH
673 if (!(vfsp->vfs_flag & VFS_RDONLY) &&
674 (*flags & MS_RDONLY)) {
675 VFS_SYNC(vfsp, SYNC_FSDATA|SYNC_BDFLUSH|SYNC_ATTR, NULL, error);
676
f898d6c0 677 xfs_quiesce_fs(mp);
1da177e4
LT
678
679 /* Ok now write out an unmount record */
680 xfs_log_unmount_write(mp);
681 xfs_unmountfs_writesb(mp);
682 vfsp->vfs_flag |= VFS_RDONLY;
1da177e4
LT
683 }
684
685 return 0;
686}
687
688/*
689 * xfs_unmount_flush implements a set of flush operation on special
690 * inodes, which are needed as a separate set of operations so that
691 * they can be called as part of relocation process.
692 */
693int
694xfs_unmount_flush(
695 xfs_mount_t *mp, /* Mount structure we are getting
696 rid of. */
697 int relocation) /* Called from vfs relocation. */
698{
699 xfs_inode_t *rip = mp->m_rootip;
700 xfs_inode_t *rbmip;
701 xfs_inode_t *rsumip = NULL;
702 vnode_t *rvp = XFS_ITOV(rip);
703 int error;
704
705 xfs_ilock(rip, XFS_ILOCK_EXCL);
706 xfs_iflock(rip);
707
708 /*
709 * Flush out the real time inodes.
710 */
711 if ((rbmip = mp->m_rbmip) != NULL) {
712 xfs_ilock(rbmip, XFS_ILOCK_EXCL);
713 xfs_iflock(rbmip);
714 error = xfs_iflush(rbmip, XFS_IFLUSH_SYNC);
715 xfs_iunlock(rbmip, XFS_ILOCK_EXCL);
716
717 if (error == EFSCORRUPTED)
718 goto fscorrupt_out;
719
720 ASSERT(vn_count(XFS_ITOV(rbmip)) == 1);
721
722 rsumip = mp->m_rsumip;
723 xfs_ilock(rsumip, XFS_ILOCK_EXCL);
724 xfs_iflock(rsumip);
725 error = xfs_iflush(rsumip, XFS_IFLUSH_SYNC);
726 xfs_iunlock(rsumip, XFS_ILOCK_EXCL);
727
728 if (error == EFSCORRUPTED)
729 goto fscorrupt_out;
730
731 ASSERT(vn_count(XFS_ITOV(rsumip)) == 1);
732 }
733
734 /*
735 * Synchronously flush root inode to disk
736 */
737 error = xfs_iflush(rip, XFS_IFLUSH_SYNC);
738 if (error == EFSCORRUPTED)
739 goto fscorrupt_out2;
740
741 if (vn_count(rvp) != 1 && !relocation) {
742 xfs_iunlock(rip, XFS_ILOCK_EXCL);
743 return XFS_ERROR(EBUSY);
744 }
745
746 /*
747 * Release dquot that rootinode, rbmino and rsumino might be holding,
748 * flush and purge the quota inodes.
749 */
750 error = XFS_QM_UNMOUNT(mp);
751 if (error == EFSCORRUPTED)
752 goto fscorrupt_out2;
753
754 if (rbmip) {
755 VN_RELE(XFS_ITOV(rbmip));
756 VN_RELE(XFS_ITOV(rsumip));
757 }
758
759 xfs_iunlock(rip, XFS_ILOCK_EXCL);
760 return 0;
761
762fscorrupt_out:
763 xfs_ifunlock(rip);
764
765fscorrupt_out2:
766 xfs_iunlock(rip, XFS_ILOCK_EXCL);
767
768 return XFS_ERROR(EFSCORRUPTED);
769}
770
771/*
772 * xfs_root extracts the root vnode from a vfs.
773 *
774 * vfsp -- the vfs struct for the desired file system
775 * vpp -- address of the caller's vnode pointer which should be
776 * set to the desired fs root vnode
777 */
778STATIC int
779xfs_root(
780 bhv_desc_t *bdp,
781 vnode_t **vpp)
782{
783 vnode_t *vp;
784
785 vp = XFS_ITOV((XFS_BHVTOM(bdp))->m_rootip);
786 VN_HOLD(vp);
787 *vpp = vp;
788 return 0;
789}
790
791/*
792 * xfs_statvfs
793 *
794 * Fill in the statvfs structure for the given file system. We use
795 * the superblock lock in the mount structure to ensure a consistent
796 * snapshot of the counters returned.
797 */
798STATIC int
799xfs_statvfs(
800 bhv_desc_t *bdp,
801 xfs_statfs_t *statp,
802 vnode_t *vp)
803{
804 __uint64_t fakeinos;
805 xfs_extlen_t lsize;
806 xfs_mount_t *mp;
807 xfs_sb_t *sbp;
808 unsigned long s;
1da177e4
LT
809
810 mp = XFS_BHVTOM(bdp);
811 sbp = &(mp->m_sb);
812
813 statp->f_type = XFS_SB_MAGIC;
814
815 s = XFS_SB_LOCK(mp);
816 statp->f_bsize = sbp->sb_blocksize;
817 lsize = sbp->sb_logstart ? sbp->sb_logblocks : 0;
818 statp->f_blocks = sbp->sb_dblocks - lsize;
819 statp->f_bfree = statp->f_bavail = sbp->sb_fdblocks;
820 fakeinos = statp->f_bfree << sbp->sb_inopblog;
821#if XFS_BIG_INUMS
822 fakeinos += mp->m_inoadd;
823#endif
824 statp->f_files =
825 MIN(sbp->sb_icount + fakeinos, (__uint64_t)XFS_MAXINUMBER);
826 if (mp->m_maxicount)
827#if XFS_BIG_INUMS
828 if (!mp->m_inoadd)
829#endif
830 statp->f_files = min_t(typeof(statp->f_files),
831 statp->f_files,
832 mp->m_maxicount);
833 statp->f_ffree = statp->f_files - (sbp->sb_icount - sbp->sb_ifree);
834 XFS_SB_UNLOCK(mp, s);
835
cde410a9 836 xfs_statvfs_fsid(statp, mp);
1da177e4
LT
837 statp->f_namelen = MAXNAMELEN - 1;
838
839 return 0;
840}
841
842
843/*
844 * xfs_sync flushes any pending I/O to file system vfsp.
845 *
846 * This routine is called by vfs_sync() to make sure that things make it
847 * out to disk eventually, on sync() system calls to flush out everything,
848 * and when the file system is unmounted. For the vfs_sync() case, all
849 * we really need to do is sync out the log to make all of our meta-data
850 * updates permanent (except for timestamps). For calls from pflushd(),
851 * dirty pages are kept moving by calling pdflush() on the inodes
852 * containing them. We also flush the inodes that we can lock without
853 * sleeping and the superblock if we can lock it without sleeping from
854 * vfs_sync() so that items at the tail of the log are always moving out.
855 *
856 * Flags:
857 * SYNC_BDFLUSH - We're being called from vfs_sync() so we don't want
858 * to sleep if we can help it. All we really need
859 * to do is ensure that the log is synced at least
860 * periodically. We also push the inodes and
861 * superblock if we can lock them without sleeping
862 * and they are not pinned.
863 * SYNC_ATTR - We need to flush the inodes. If SYNC_BDFLUSH is not
864 * set, then we really want to lock each inode and flush
865 * it.
866 * SYNC_WAIT - All the flushes that take place in this call should
867 * be synchronous.
868 * SYNC_DELWRI - This tells us to push dirty pages associated with
869 * inodes. SYNC_WAIT and SYNC_BDFLUSH are used to
870 * determine if they should be flushed sync, async, or
871 * delwri.
872 * SYNC_CLOSE - This flag is passed when the system is being
873 * unmounted. We should sync and invalidate everthing.
874 * SYNC_FSDATA - This indicates that the caller would like to make
875 * sure the superblock is safe on disk. We can ensure
876 * this by simply makeing sure the log gets flushed
877 * if SYNC_BDFLUSH is set, and by actually writing it
878 * out otherwise.
879 *
880 */
881/*ARGSUSED*/
882STATIC int
883xfs_sync(
884 bhv_desc_t *bdp,
885 int flags,
886 cred_t *credp)
887{
f898d6c0 888 xfs_mount_t *mp = XFS_BHVTOM(bdp);
1da177e4 889
f898d6c0
CH
890 if (unlikely(flags == SYNC_QUIESCE))
891 return xfs_quiesce_fs(mp);
892 else
893 return xfs_syncsub(mp, flags, 0, NULL);
1da177e4
LT
894}
895
896/*
897 * xfs sync routine for internal use
898 *
899 * This routine supports all of the flags defined for the generic VFS_SYNC
900 * interface as explained above under xfs_sync. In the interests of not
901 * changing interfaces within the 6.5 family, additional internallly-
902 * required functions are specified within a separate xflags parameter,
903 * only available by calling this routine.
904 *
905 */
906STATIC int
907xfs_sync_inodes(
908 xfs_mount_t *mp,
909 int flags,
910 int xflags,
911 int *bypassed)
912{
913 xfs_inode_t *ip = NULL;
914 xfs_inode_t *ip_next;
915 xfs_buf_t *bp;
916 vnode_t *vp = NULL;
1da177e4
LT
917 int error;
918 int last_error;
919 uint64_t fflag;
920 uint lock_flags;
921 uint base_lock_flags;
922 boolean_t mount_locked;
923 boolean_t vnode_refed;
924 int preempt;
925 xfs_dinode_t *dip;
926 xfs_iptr_t *ipointer;
927#ifdef DEBUG
928 boolean_t ipointer_in = B_FALSE;
929
930#define IPOINTER_SET ipointer_in = B_TRUE
931#define IPOINTER_CLR ipointer_in = B_FALSE
932#else
933#define IPOINTER_SET
934#define IPOINTER_CLR
935#endif
936
937
938/* Insert a marker record into the inode list after inode ip. The list
939 * must be locked when this is called. After the call the list will no
940 * longer be locked.
941 */
942#define IPOINTER_INSERT(ip, mp) { \
943 ASSERT(ipointer_in == B_FALSE); \
944 ipointer->ip_mnext = ip->i_mnext; \
945 ipointer->ip_mprev = ip; \
946 ip->i_mnext = (xfs_inode_t *)ipointer; \
947 ipointer->ip_mnext->i_mprev = (xfs_inode_t *)ipointer; \
948 preempt = 0; \
949 XFS_MOUNT_IUNLOCK(mp); \
950 mount_locked = B_FALSE; \
951 IPOINTER_SET; \
952 }
953
954/* Remove the marker from the inode list. If the marker was the only item
955 * in the list then there are no remaining inodes and we should zero out
956 * the whole list. If we are the current head of the list then move the head
957 * past us.
958 */
959#define IPOINTER_REMOVE(ip, mp) { \
960 ASSERT(ipointer_in == B_TRUE); \
961 if (ipointer->ip_mnext != (xfs_inode_t *)ipointer) { \
962 ip = ipointer->ip_mnext; \
963 ip->i_mprev = ipointer->ip_mprev; \
964 ipointer->ip_mprev->i_mnext = ip; \
965 if (mp->m_inodes == (xfs_inode_t *)ipointer) { \
966 mp->m_inodes = ip; \
967 } \
968 } else { \
969 ASSERT(mp->m_inodes == (xfs_inode_t *)ipointer); \
970 mp->m_inodes = NULL; \
971 ip = NULL; \
972 } \
973 IPOINTER_CLR; \
974 }
975
976#define XFS_PREEMPT_MASK 0x7f
977
978 if (bypassed)
979 *bypassed = 0;
980 if (XFS_MTOVFS(mp)->vfs_flag & VFS_RDONLY)
981 return 0;
982 error = 0;
983 last_error = 0;
984 preempt = 0;
985
986 /* Allocate a reference marker */
987 ipointer = (xfs_iptr_t *)kmem_zalloc(sizeof(xfs_iptr_t), KM_SLEEP);
988
989 fflag = XFS_B_ASYNC; /* default is don't wait */
990 if (flags & SYNC_BDFLUSH)
991 fflag = XFS_B_DELWRI;
992 if (flags & SYNC_WAIT)
993 fflag = 0; /* synchronous overrides all */
994
995 base_lock_flags = XFS_ILOCK_SHARED;
996 if (flags & (SYNC_DELWRI | SYNC_CLOSE)) {
997 /*
998 * We need the I/O lock if we're going to call any of
999 * the flush/inval routines.
1000 */
1001 base_lock_flags |= XFS_IOLOCK_SHARED;
1002 }
1003
1004 XFS_MOUNT_ILOCK(mp);
1005
1006 ip = mp->m_inodes;
1007
1008 mount_locked = B_TRUE;
1009 vnode_refed = B_FALSE;
1010
1011 IPOINTER_CLR;
1012
1013 do {
1014 ASSERT(ipointer_in == B_FALSE);
1015 ASSERT(vnode_refed == B_FALSE);
1016
1017 lock_flags = base_lock_flags;
1018
1019 /*
1020 * There were no inodes in the list, just break out
1021 * of the loop.
1022 */
1023 if (ip == NULL) {
1024 break;
1025 }
1026
1027 /*
1028 * We found another sync thread marker - skip it
1029 */
1030 if (ip->i_mount == NULL) {
1031 ip = ip->i_mnext;
1032 continue;
1033 }
1034
1035 vp = XFS_ITOV_NULL(ip);
1036
1037 /*
1038 * If the vnode is gone then this is being torn down,
1039 * call reclaim if it is flushed, else let regular flush
1040 * code deal with it later in the loop.
1041 */
1042
1043 if (vp == NULL) {
1044 /* Skip ones already in reclaim */
1045 if (ip->i_flags & XFS_IRECLAIM) {
1046 ip = ip->i_mnext;
1047 continue;
1048 }
1049 if (xfs_ilock_nowait(ip, XFS_ILOCK_EXCL) == 0) {
1050 ip = ip->i_mnext;
1051 } else if ((xfs_ipincount(ip) == 0) &&
1052 xfs_iflock_nowait(ip)) {
1053 IPOINTER_INSERT(ip, mp);
1054
1055 xfs_finish_reclaim(ip, 1,
1056 XFS_IFLUSH_DELWRI_ELSE_ASYNC);
1057
1058 XFS_MOUNT_ILOCK(mp);
1059 mount_locked = B_TRUE;
1060 IPOINTER_REMOVE(ip, mp);
1061 } else {
1062 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1063 ip = ip->i_mnext;
1064 }
1065 continue;
1066 }
1067
1068 if (VN_BAD(vp)) {
1069 ip = ip->i_mnext;
1070 continue;
1071 }
1072
1073 if (XFS_FORCED_SHUTDOWN(mp) && !(flags & SYNC_CLOSE)) {
1074 XFS_MOUNT_IUNLOCK(mp);
1075 kmem_free(ipointer, sizeof(xfs_iptr_t));
1076 return 0;
1077 }
1078
1079 /*
1080 * If this is just vfs_sync() or pflushd() calling
1081 * then we can skip inodes for which it looks like
1082 * there is nothing to do. Since we don't have the
1083 * inode locked this is racey, but these are periodic
1084 * calls so it doesn't matter. For the others we want
1085 * to know for sure, so we at least try to lock them.
1086 */
1087 if (flags & SYNC_BDFLUSH) {
1088 if (((ip->i_itemp == NULL) ||
1089 !(ip->i_itemp->ili_format.ilf_fields &
1090 XFS_ILOG_ALL)) &&
1091 (ip->i_update_core == 0)) {
1092 ip = ip->i_mnext;
1093 continue;
1094 }
1095 }
1096
1097 /*
1098 * Try to lock without sleeping. We're out of order with
1099 * the inode list lock here, so if we fail we need to drop
1100 * the mount lock and try again. If we're called from
1101 * bdflush() here, then don't bother.
1102 *
1103 * The inode lock here actually coordinates with the
1104 * almost spurious inode lock in xfs_ireclaim() to prevent
1105 * the vnode we handle here without a reference from
1106 * being freed while we reference it. If we lock the inode
1107 * while it's on the mount list here, then the spurious inode
1108 * lock in xfs_ireclaim() after the inode is pulled from
1109 * the mount list will sleep until we release it here.
1110 * This keeps the vnode from being freed while we reference
cdb62687 1111 * it.
1da177e4
LT
1112 */
1113 if (xfs_ilock_nowait(ip, lock_flags) == 0) {
1da177e4
LT
1114 if ((flags & SYNC_BDFLUSH) || (vp == NULL)) {
1115 ip = ip->i_mnext;
1116 continue;
1117 }
1118
cdb62687 1119 vp = vn_grab(vp);
1da177e4 1120 if (vp == NULL) {
cdb62687 1121 ip = ip->i_mnext;
1da177e4
LT
1122 continue;
1123 }
1124
cdb62687 1125 IPOINTER_INSERT(ip, mp);
1da177e4
LT
1126 xfs_ilock(ip, lock_flags);
1127
1128 ASSERT(vp == XFS_ITOV(ip));
1129 ASSERT(ip->i_mount == mp);
1130
1131 vnode_refed = B_TRUE;
1132 }
1133
1134 /* From here on in the loop we may have a marker record
1135 * in the inode list.
1136 */
1137
1138 if ((flags & SYNC_CLOSE) && (vp != NULL)) {
1139 /*
1140 * This is the shutdown case. We just need to
1141 * flush and invalidate all the pages associated
1142 * with the inode. Drop the inode lock since
1143 * we can't hold it across calls to the buffer
1144 * cache.
1145 *
1146 * We don't set the VREMAPPING bit in the vnode
1147 * here, because we don't hold the vnode lock
1148 * exclusively. It doesn't really matter, though,
1149 * because we only come here when we're shutting
1150 * down anyway.
1151 */
1152 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1153
1154 if (XFS_FORCED_SHUTDOWN(mp)) {
1155 VOP_TOSS_PAGES(vp, 0, -1, FI_REMAPF);
1156 } else {
1157 VOP_FLUSHINVAL_PAGES(vp, 0, -1, FI_REMAPF);
1158 }
1159
1160 xfs_ilock(ip, XFS_ILOCK_SHARED);
1161
1162 } else if ((flags & SYNC_DELWRI) && (vp != NULL)) {
1163 if (VN_DIRTY(vp)) {
1164 /* We need to have dropped the lock here,
1165 * so insert a marker if we have not already
1166 * done so.
1167 */
1168 if (mount_locked) {
1169 IPOINTER_INSERT(ip, mp);
1170 }
1171
1172 /*
1173 * Drop the inode lock since we can't hold it
1174 * across calls to the buffer cache.
1175 */
1176 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1177 VOP_FLUSH_PAGES(vp, (xfs_off_t)0, -1,
1178 fflag, FI_NONE, error);
1179 xfs_ilock(ip, XFS_ILOCK_SHARED);
1180 }
1181
1182 }
1183
1184 if (flags & SYNC_BDFLUSH) {
1185 if ((flags & SYNC_ATTR) &&
1186 ((ip->i_update_core) ||
1187 ((ip->i_itemp != NULL) &&
1188 (ip->i_itemp->ili_format.ilf_fields != 0)))) {
1189
1190 /* Insert marker and drop lock if not already
1191 * done.
1192 */
1193 if (mount_locked) {
1194 IPOINTER_INSERT(ip, mp);
1195 }
1196
1197 /*
1198 * We don't want the periodic flushing of the
1199 * inodes by vfs_sync() to interfere with
1200 * I/O to the file, especially read I/O
1201 * where it is only the access time stamp
1202 * that is being flushed out. To prevent
1203 * long periods where we have both inode
1204 * locks held shared here while reading the
1205 * inode's buffer in from disk, we drop the
1206 * inode lock while reading in the inode
1207 * buffer. We have to release the buffer
1208 * and reacquire the inode lock so that they
1209 * are acquired in the proper order (inode
1210 * locks first). The buffer will go at the
1211 * end of the lru chain, though, so we can
1212 * expect it to still be there when we go
1213 * for it again in xfs_iflush().
1214 */
1215 if ((xfs_ipincount(ip) == 0) &&
1216 xfs_iflock_nowait(ip)) {
1217
1218 xfs_ifunlock(ip);
1219 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1220
1221 error = xfs_itobp(mp, NULL, ip,
1222 &dip, &bp, 0);
1223 if (!error) {
1224 xfs_buf_relse(bp);
1225 } else {
1226 /* Bailing out, remove the
1227 * marker and free it.
1228 */
1229 XFS_MOUNT_ILOCK(mp);
1230
1231 IPOINTER_REMOVE(ip, mp);
1232
1233 XFS_MOUNT_IUNLOCK(mp);
1234
1235 ASSERT(!(lock_flags &
1236 XFS_IOLOCK_SHARED));
1237
1238 kmem_free(ipointer,
1239 sizeof(xfs_iptr_t));
1240 return (0);
1241 }
1242
1243 /*
1244 * Since we dropped the inode lock,
1245 * the inode may have been reclaimed.
1246 * Therefore, we reacquire the mount
1247 * lock and check to see if we were the
1248 * inode reclaimed. If this happened
1249 * then the ipointer marker will no
1250 * longer point back at us. In this
1251 * case, move ip along to the inode
1252 * after the marker, remove the marker
1253 * and continue.
1254 */
1255 XFS_MOUNT_ILOCK(mp);
1256 mount_locked = B_TRUE;
1257
1258 if (ip != ipointer->ip_mprev) {
1259 IPOINTER_REMOVE(ip, mp);
1260
1261 ASSERT(!vnode_refed);
1262 ASSERT(!(lock_flags &
1263 XFS_IOLOCK_SHARED));
1264 continue;
1265 }
1266
1267 ASSERT(ip->i_mount == mp);
1268
1269 if (xfs_ilock_nowait(ip,
1270 XFS_ILOCK_SHARED) == 0) {
1271 ASSERT(ip->i_mount == mp);
1272 /*
1273 * We failed to reacquire
1274 * the inode lock without
1275 * sleeping, so just skip
1276 * the inode for now. We
1277 * clear the ILOCK bit from
1278 * the lock_flags so that we
1279 * won't try to drop a lock
1280 * we don't hold below.
1281 */
1282 lock_flags &= ~XFS_ILOCK_SHARED;
1283 IPOINTER_REMOVE(ip_next, mp);
1284 } else if ((xfs_ipincount(ip) == 0) &&
1285 xfs_iflock_nowait(ip)) {
1286 ASSERT(ip->i_mount == mp);
1287 /*
1288 * Since this is vfs_sync()
1289 * calling we only flush the
1290 * inode out if we can lock
1291 * it without sleeping and
1292 * it is not pinned. Drop
1293 * the mount lock here so
1294 * that we don't hold it for
1295 * too long. We already have
1296 * a marker in the list here.
1297 */
1298 XFS_MOUNT_IUNLOCK(mp);
1299 mount_locked = B_FALSE;
1300 error = xfs_iflush(ip,
1301 XFS_IFLUSH_DELWRI);
1302 } else {
1303 ASSERT(ip->i_mount == mp);
1304 IPOINTER_REMOVE(ip_next, mp);
1305 }
1306 }
1307
1308 }
1309
1310 } else {
1311 if ((flags & SYNC_ATTR) &&
1312 ((ip->i_update_core) ||
1313 ((ip->i_itemp != NULL) &&
1314 (ip->i_itemp->ili_format.ilf_fields != 0)))) {
1315 if (mount_locked) {
1316 IPOINTER_INSERT(ip, mp);
1317 }
1318
1319 if (flags & SYNC_WAIT) {
1320 xfs_iflock(ip);
1321 error = xfs_iflush(ip,
1322 XFS_IFLUSH_SYNC);
1323 } else {
1324 /*
1325 * If we can't acquire the flush
1326 * lock, then the inode is already
1327 * being flushed so don't bother
1328 * waiting. If we can lock it then
1329 * do a delwri flush so we can
1330 * combine multiple inode flushes
1331 * in each disk write.
1332 */
1333 if (xfs_iflock_nowait(ip)) {
1334 error = xfs_iflush(ip,
1335 XFS_IFLUSH_DELWRI);
1336 }
1337 else if (bypassed)
1338 (*bypassed)++;
1339 }
1340 }
1341 }
1342
1343 if (lock_flags != 0) {
1344 xfs_iunlock(ip, lock_flags);
1345 }
1346
1347 if (vnode_refed) {
1348 /*
1349 * If we had to take a reference on the vnode
1350 * above, then wait until after we've unlocked
1351 * the inode to release the reference. This is
1352 * because we can be already holding the inode
1353 * lock when VN_RELE() calls xfs_inactive().
1354 *
1355 * Make sure to drop the mount lock before calling
1356 * VN_RELE() so that we don't trip over ourselves if
1357 * we have to go for the mount lock again in the
1358 * inactive code.
1359 */
1360 if (mount_locked) {
1361 IPOINTER_INSERT(ip, mp);
1362 }
1363
1364 VN_RELE(vp);
1365
1366 vnode_refed = B_FALSE;
1367 }
1368
1369 if (error) {
1370 last_error = error;
1371 }
1372
1373 /*
1374 * bail out if the filesystem is corrupted.
1375 */
1376 if (error == EFSCORRUPTED) {
1377 if (!mount_locked) {
1378 XFS_MOUNT_ILOCK(mp);
1379 IPOINTER_REMOVE(ip, mp);
1380 }
1381 XFS_MOUNT_IUNLOCK(mp);
1382 ASSERT(ipointer_in == B_FALSE);
1383 kmem_free(ipointer, sizeof(xfs_iptr_t));
1384 return XFS_ERROR(error);
1385 }
1386
1387 /* Let other threads have a chance at the mount lock
1388 * if we have looped many times without dropping the
1389 * lock.
1390 */
1391 if ((++preempt & XFS_PREEMPT_MASK) == 0) {
1392 if (mount_locked) {
1393 IPOINTER_INSERT(ip, mp);
1394 }
1395 }
1396
1397 if (mount_locked == B_FALSE) {
1398 XFS_MOUNT_ILOCK(mp);
1399 mount_locked = B_TRUE;
1400 IPOINTER_REMOVE(ip, mp);
1401 continue;
1402 }
1403
1404 ASSERT(ipointer_in == B_FALSE);
1405 ip = ip->i_mnext;
1406
1407 } while (ip != mp->m_inodes);
1408
1409 XFS_MOUNT_IUNLOCK(mp);
1410
1411 ASSERT(ipointer_in == B_FALSE);
1412
1413 kmem_free(ipointer, sizeof(xfs_iptr_t));
1414 return XFS_ERROR(last_error);
1415}
1416
1417/*
1418 * xfs sync routine for internal use
1419 *
1420 * This routine supports all of the flags defined for the generic VFS_SYNC
1421 * interface as explained above under xfs_sync. In the interests of not
1422 * changing interfaces within the 6.5 family, additional internallly-
1423 * required functions are specified within a separate xflags parameter,
1424 * only available by calling this routine.
1425 *
1426 */
1427int
1428xfs_syncsub(
1429 xfs_mount_t *mp,
1430 int flags,
1431 int xflags,
1432 int *bypassed)
1433{
1434 int error = 0;
1435 int last_error = 0;
1436 uint log_flags = XFS_LOG_FORCE;
1437 xfs_buf_t *bp;
1438 xfs_buf_log_item_t *bip;
1439
1440 /*
1441 * Sync out the log. This ensures that the log is periodically
1442 * flushed even if there is not enough activity to fill it up.
1443 */
1444 if (flags & SYNC_WAIT)
1445 log_flags |= XFS_LOG_SYNC;
1446
1447 xfs_log_force(mp, (xfs_lsn_t)0, log_flags);
1448
1449 if (flags & (SYNC_ATTR|SYNC_DELWRI)) {
1450 if (flags & SYNC_BDFLUSH)
1451 xfs_finish_reclaim_all(mp, 1);
1452 else
1453 error = xfs_sync_inodes(mp, flags, xflags, bypassed);
1454 }
1455
1456 /*
1457 * Flushing out dirty data above probably generated more
1458 * log activity, so if this isn't vfs_sync() then flush
1459 * the log again.
1460 */
1461 if (flags & SYNC_DELWRI) {
1462 xfs_log_force(mp, (xfs_lsn_t)0, log_flags);
1463 }
1464
1465 if (flags & SYNC_FSDATA) {
1466 /*
1467 * If this is vfs_sync() then only sync the superblock
1468 * if we can lock it without sleeping and it is not pinned.
1469 */
1470 if (flags & SYNC_BDFLUSH) {
1471 bp = xfs_getsb(mp, XFS_BUF_TRYLOCK);
1472 if (bp != NULL) {
1473 bip = XFS_BUF_FSPRIVATE(bp,xfs_buf_log_item_t*);
1474 if ((bip != NULL) &&
1475 xfs_buf_item_dirty(bip)) {
1476 if (!(XFS_BUF_ISPINNED(bp))) {
1477 XFS_BUF_ASYNC(bp);
1478 error = xfs_bwrite(mp, bp);
1479 } else {
1480 xfs_buf_relse(bp);
1481 }
1482 } else {
1483 xfs_buf_relse(bp);
1484 }
1485 }
1486 } else {
1487 bp = xfs_getsb(mp, 0);
1488 /*
1489 * If the buffer is pinned then push on the log so
1490 * we won't get stuck waiting in the write for
1491 * someone, maybe ourselves, to flush the log.
1492 * Even though we just pushed the log above, we
1493 * did not have the superblock buffer locked at
1494 * that point so it can become pinned in between
1495 * there and here.
1496 */
1497 if (XFS_BUF_ISPINNED(bp))
1498 xfs_log_force(mp, (xfs_lsn_t)0, XFS_LOG_FORCE);
1499 if (flags & SYNC_WAIT)
1500 XFS_BUF_UNASYNC(bp);
1501 else
1502 XFS_BUF_ASYNC(bp);
1503 error = xfs_bwrite(mp, bp);
1504 }
1505 if (error) {
1506 last_error = error;
1507 }
1508 }
1509
1510 /*
1511 * If this is the periodic sync, then kick some entries out of
1512 * the reference cache. This ensures that idle entries are
1513 * eventually kicked out of the cache.
1514 */
1515 if (flags & SYNC_REFCACHE) {
cde410a9
NS
1516 if (flags & SYNC_WAIT)
1517 xfs_refcache_purge_mp(mp);
1518 else
1519 xfs_refcache_purge_some(mp);
1da177e4
LT
1520 }
1521
1522 /*
1523 * Now check to see if the log needs a "dummy" transaction.
1524 */
1525
1526 if (!(flags & SYNC_REMOUNT) && xfs_log_need_covered(mp)) {
1527 xfs_trans_t *tp;
1528 xfs_inode_t *ip;
1529
1530 /*
1531 * Put a dummy transaction in the log to tell
1532 * recovery that all others are OK.
1533 */
1534 tp = xfs_trans_alloc(mp, XFS_TRANS_DUMMY1);
1535 if ((error = xfs_trans_reserve(tp, 0,
1536 XFS_ICHANGE_LOG_RES(mp),
1537 0, 0, 0))) {
1538 xfs_trans_cancel(tp, 0);
1539 return error;
1540 }
1541
1542 ip = mp->m_rootip;
1543 xfs_ilock(ip, XFS_ILOCK_EXCL);
1544
1545 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
1546 xfs_trans_ihold(tp, ip);
1547 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1548 error = xfs_trans_commit(tp, 0, NULL);
1549 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1550 xfs_log_force(mp, (xfs_lsn_t)0, log_flags);
1551 }
1552
1553 /*
1554 * When shutting down, we need to insure that the AIL is pushed
1555 * to disk or the filesystem can appear corrupt from the PROM.
1556 */
1557 if ((flags & (SYNC_CLOSE|SYNC_WAIT)) == (SYNC_CLOSE|SYNC_WAIT)) {
1558 XFS_bflush(mp->m_ddev_targp);
1559 if (mp->m_rtdev_targp) {
1560 XFS_bflush(mp->m_rtdev_targp);
1561 }
1562 }
1563
1564 return XFS_ERROR(last_error);
1565}
1566
1567/*
1568 * xfs_vget - called by DMAPI and NFSD to get vnode from file handle
1569 */
1570STATIC int
1571xfs_vget(
1572 bhv_desc_t *bdp,
1573 vnode_t **vpp,
1574 fid_t *fidp)
1575{
1576 xfs_mount_t *mp = XFS_BHVTOM(bdp);
1577 xfs_fid_t *xfid = (struct xfs_fid *)fidp;
1578 xfs_inode_t *ip;
1579 int error;
1580 xfs_ino_t ino;
1581 unsigned int igen;
1582
1583 /*
1584 * Invalid. Since handles can be created in user space and passed in
1585 * via gethandle(), this is not cause for a panic.
1586 */
1587 if (xfid->xfs_fid_len != sizeof(*xfid) - sizeof(xfid->xfs_fid_len))
1588 return XFS_ERROR(EINVAL);
1589
1590 ino = xfid->xfs_fid_ino;
1591 igen = xfid->xfs_fid_gen;
1592
1593 /*
1594 * NFS can sometimes send requests for ino 0. Fail them gracefully.
1595 */
1596 if (ino == 0)
1597 return XFS_ERROR(ESTALE);
1598
1599 error = xfs_iget(mp, NULL, ino, 0, XFS_ILOCK_SHARED, &ip, 0);
1600 if (error) {
1601 *vpp = NULL;
1602 return error;
1603 }
1604
1605 if (ip == NULL) {
1606 *vpp = NULL;
1607 return XFS_ERROR(EIO);
1608 }
1609
1610 if (ip->i_d.di_mode == 0 || ip->i_d.di_gen != igen) {
1611 xfs_iput_new(ip, XFS_ILOCK_SHARED);
1612 *vpp = NULL;
1613 return XFS_ERROR(ENOENT);
1614 }
1615
1616 *vpp = XFS_ITOV(ip);
1617 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1618 return 0;
1619}
1620
1621
1622#define MNTOPT_LOGBUFS "logbufs" /* number of XFS log buffers */
1623#define MNTOPT_LOGBSIZE "logbsize" /* size of XFS log buffers */
1624#define MNTOPT_LOGDEV "logdev" /* log device */
1625#define MNTOPT_RTDEV "rtdev" /* realtime I/O device */
1626#define MNTOPT_BIOSIZE "biosize" /* log2 of preferred buffered io size */
1627#define MNTOPT_WSYNC "wsync" /* safe-mode nfs compatible mount */
1628#define MNTOPT_INO64 "ino64" /* force inodes into 64-bit range */
1629#define MNTOPT_NOALIGN "noalign" /* turn off stripe alignment */
1630#define MNTOPT_SWALLOC "swalloc" /* turn on stripe width allocation */
1631#define MNTOPT_SUNIT "sunit" /* data volume stripe unit */
1632#define MNTOPT_SWIDTH "swidth" /* data volume stripe width */
1633#define MNTOPT_NOUUID "nouuid" /* ignore filesystem UUID */
1634#define MNTOPT_MTPT "mtpt" /* filesystem mount point */
e69a333b
NS
1635#define MNTOPT_GRPID "grpid" /* group-ID from parent directory */
1636#define MNTOPT_NOGRPID "nogrpid" /* group-ID from current process */
1637#define MNTOPT_BSDGROUPS "bsdgroups" /* group-ID from parent directory */
1638#define MNTOPT_SYSVGROUPS "sysvgroups" /* group-ID from current process */
1f443ad7 1639#define MNTOPT_ALLOCSIZE "allocsize" /* preferred allocation size */
1da177e4
LT
1640#define MNTOPT_IHASHSIZE "ihashsize" /* size of inode hash table */
1641#define MNTOPT_NORECOVERY "norecovery" /* don't run XFS recovery */
f538d4da
CH
1642#define MNTOPT_BARRIER "barrier" /* use writer barriers for log write and
1643 unwritten extent conversion */
1da177e4
LT
1644#define MNTOPT_OSYNCISOSYNC "osyncisosync" /* o_sync is REALLY o_sync */
1645#define MNTOPT_64BITINODE "inode64" /* inodes can be allocated anywhere */
1646#define MNTOPT_IKEEP "ikeep" /* do not free empty inode clusters */
1647#define MNTOPT_NOIKEEP "noikeep" /* free empty inode clusters */
1648
1f443ad7
NS
1649STATIC unsigned long
1650suffix_strtoul(const char *cp, char **endp, unsigned int base)
1651{
1652 int last, shift_left_factor = 0;
1653 char *value = (char *)cp;
1654
1655 last = strlen(value) - 1;
1656 if (value[last] == 'K' || value[last] == 'k') {
1657 shift_left_factor = 10;
1658 value[last] = '\0';
1659 }
1660 if (value[last] == 'M' || value[last] == 'm') {
1661 shift_left_factor = 20;
1662 value[last] = '\0';
1663 }
1664 if (value[last] == 'G' || value[last] == 'g') {
1665 shift_left_factor = 30;
1666 value[last] = '\0';
1667 }
1668
1669 return simple_strtoul(cp, endp, base) << shift_left_factor;
1670}
1da177e4 1671
ba0f32d4 1672STATIC int
1da177e4
LT
1673xfs_parseargs(
1674 struct bhv_desc *bhv,
1675 char *options,
1676 struct xfs_mount_args *args,
1677 int update)
1678{
1679 struct vfs *vfsp = bhvtovfs(bhv);
1680 char *this_char, *value, *eov;
1681 int dsunit, dswidth, vol_dsunit, vol_dswidth;
1682 int iosize;
1683
1684#if 0 /* XXX: off by default, until some remaining issues ironed out */
1685 args->flags |= XFSMNT_IDELETE; /* default to on */
1686#endif
1687
1688 if (!options)
1689 return 0;
1690
1691 iosize = dsunit = dswidth = vol_dsunit = vol_dswidth = 0;
1692
1693 while ((this_char = strsep(&options, ",")) != NULL) {
1694 if (!*this_char)
1695 continue;
1696 if ((value = strchr(this_char, '=')) != NULL)
1697 *value++ = 0;
1698
1699 if (!strcmp(this_char, MNTOPT_LOGBUFS)) {
1700 if (!value || !*value) {
1701 printk("XFS: %s option requires an argument\n",
1f443ad7 1702 this_char);
1da177e4
LT
1703 return EINVAL;
1704 }
1705 args->logbufs = simple_strtoul(value, &eov, 10);
1706 } else if (!strcmp(this_char, MNTOPT_LOGBSIZE)) {
1da177e4
LT
1707 if (!value || !*value) {
1708 printk("XFS: %s option requires an argument\n",
1f443ad7 1709 this_char);
1da177e4
LT
1710 return EINVAL;
1711 }
1f443ad7 1712 args->logbufsize = suffix_strtoul(value, &eov, 10);
1da177e4
LT
1713 } else if (!strcmp(this_char, MNTOPT_LOGDEV)) {
1714 if (!value || !*value) {
1715 printk("XFS: %s option requires an argument\n",
1f443ad7 1716 this_char);
1da177e4
LT
1717 return EINVAL;
1718 }
1719 strncpy(args->logname, value, MAXNAMELEN);
1720 } else if (!strcmp(this_char, MNTOPT_MTPT)) {
1721 if (!value || !*value) {
1722 printk("XFS: %s option requires an argument\n",
1f443ad7 1723 this_char);
1da177e4
LT
1724 return EINVAL;
1725 }
1726 strncpy(args->mtpt, value, MAXNAMELEN);
1727 } else if (!strcmp(this_char, MNTOPT_RTDEV)) {
1728 if (!value || !*value) {
1729 printk("XFS: %s option requires an argument\n",
1f443ad7 1730 this_char);
1da177e4
LT
1731 return EINVAL;
1732 }
1733 strncpy(args->rtname, value, MAXNAMELEN);
1734 } else if (!strcmp(this_char, MNTOPT_BIOSIZE)) {
1735 if (!value || !*value) {
1736 printk("XFS: %s option requires an argument\n",
1f443ad7 1737 this_char);
1da177e4
LT
1738 return EINVAL;
1739 }
1740 iosize = simple_strtoul(value, &eov, 10);
1741 args->flags |= XFSMNT_IOSIZE;
1742 args->iosizelog = (uint8_t) iosize;
1f443ad7
NS
1743 } else if (!strcmp(this_char, MNTOPT_ALLOCSIZE)) {
1744 if (!value || !*value) {
1745 printk("XFS: %s option requires an argument\n",
1746 this_char);
1747 return EINVAL;
1748 }
1749 iosize = suffix_strtoul(value, &eov, 10);
1750 args->flags |= XFSMNT_IOSIZE;
1751 args->iosizelog = ffs(iosize) - 1;
1da177e4
LT
1752 } else if (!strcmp(this_char, MNTOPT_IHASHSIZE)) {
1753 if (!value || !*value) {
1754 printk("XFS: %s option requires an argument\n",
1f443ad7 1755 this_char);
1da177e4
LT
1756 return EINVAL;
1757 }
1758 args->flags |= XFSMNT_IHASHSIZE;
1759 args->ihashsize = simple_strtoul(value, &eov, 10);
e69a333b
NS
1760 } else if (!strcmp(this_char, MNTOPT_GRPID) ||
1761 !strcmp(this_char, MNTOPT_BSDGROUPS)) {
1762 vfsp->vfs_flag |= VFS_GRPID;
1763 } else if (!strcmp(this_char, MNTOPT_NOGRPID) ||
1764 !strcmp(this_char, MNTOPT_SYSVGROUPS)) {
1765 vfsp->vfs_flag &= ~VFS_GRPID;
1da177e4
LT
1766 } else if (!strcmp(this_char, MNTOPT_WSYNC)) {
1767 args->flags |= XFSMNT_WSYNC;
1768 } else if (!strcmp(this_char, MNTOPT_OSYNCISOSYNC)) {
1769 args->flags |= XFSMNT_OSYNCISOSYNC;
1770 } else if (!strcmp(this_char, MNTOPT_NORECOVERY)) {
1771 args->flags |= XFSMNT_NORECOVERY;
1772 } else if (!strcmp(this_char, MNTOPT_INO64)) {
1773 args->flags |= XFSMNT_INO64;
1774#if !XFS_BIG_INUMS
1775 printk("XFS: %s option not allowed on this system\n",
1f443ad7 1776 this_char);
1da177e4
LT
1777 return EINVAL;
1778#endif
1779 } else if (!strcmp(this_char, MNTOPT_NOALIGN)) {
1780 args->flags |= XFSMNT_NOALIGN;
1781 } else if (!strcmp(this_char, MNTOPT_SWALLOC)) {
1782 args->flags |= XFSMNT_SWALLOC;
1783 } else if (!strcmp(this_char, MNTOPT_SUNIT)) {
1784 if (!value || !*value) {
1785 printk("XFS: %s option requires an argument\n",
1f443ad7 1786 this_char);
1da177e4
LT
1787 return EINVAL;
1788 }
1789 dsunit = simple_strtoul(value, &eov, 10);
1790 } else if (!strcmp(this_char, MNTOPT_SWIDTH)) {
1791 if (!value || !*value) {
1792 printk("XFS: %s option requires an argument\n",
1f443ad7 1793 this_char);
1da177e4
LT
1794 return EINVAL;
1795 }
1796 dswidth = simple_strtoul(value, &eov, 10);
1797 } else if (!strcmp(this_char, MNTOPT_64BITINODE)) {
1798 args->flags &= ~XFSMNT_32BITINODES;
1799#if !XFS_BIG_INUMS
1800 printk("XFS: %s option not allowed on this system\n",
1f443ad7 1801 this_char);
1da177e4
LT
1802 return EINVAL;
1803#endif
1804 } else if (!strcmp(this_char, MNTOPT_NOUUID)) {
1805 args->flags |= XFSMNT_NOUUID;
f538d4da
CH
1806 } else if (!strcmp(this_char, MNTOPT_BARRIER)) {
1807 args->flags |= XFSMNT_BARRIER;
1da177e4
LT
1808 } else if (!strcmp(this_char, MNTOPT_IKEEP)) {
1809 args->flags &= ~XFSMNT_IDELETE;
1810 } else if (!strcmp(this_char, MNTOPT_NOIKEEP)) {
1811 args->flags |= XFSMNT_IDELETE;
1812 } else if (!strcmp(this_char, "osyncisdsync")) {
1813 /* no-op, this is now the default */
1814printk("XFS: osyncisdsync is now the default, option is deprecated.\n");
1815 } else if (!strcmp(this_char, "irixsgid")) {
1816printk("XFS: irixsgid is now a sysctl(2) variable, option is deprecated.\n");
1817 } else {
1818 printk("XFS: unknown mount option [%s].\n", this_char);
1819 return EINVAL;
1820 }
1821 }
1822
1823 if (args->flags & XFSMNT_NORECOVERY) {
1824 if ((vfsp->vfs_flag & VFS_RDONLY) == 0) {
1825 printk("XFS: no-recovery mounts must be read-only.\n");
1826 return EINVAL;
1827 }
1828 }
1829
1830 if ((args->flags & XFSMNT_NOALIGN) && (dsunit || dswidth)) {
1831 printk(
1832 "XFS: sunit and swidth options incompatible with the noalign option\n");
1833 return EINVAL;
1834 }
1835
1836 if ((dsunit && !dswidth) || (!dsunit && dswidth)) {
1837 printk("XFS: sunit and swidth must be specified together\n");
1838 return EINVAL;
1839 }
1840
1841 if (dsunit && (dswidth % dsunit != 0)) {
1842 printk(
1843 "XFS: stripe width (%d) must be a multiple of the stripe unit (%d)\n",
1844 dswidth, dsunit);
1845 return EINVAL;
1846 }
1847
1848 if ((args->flags & XFSMNT_NOALIGN) != XFSMNT_NOALIGN) {
1849 if (dsunit) {
1850 args->sunit = dsunit;
1851 args->flags |= XFSMNT_RETERR;
1852 } else {
1853 args->sunit = vol_dsunit;
1854 }
1855 dswidth ? (args->swidth = dswidth) :
1856 (args->swidth = vol_dswidth);
1857 } else {
1858 args->sunit = args->swidth = 0;
1859 }
1860
1861 return 0;
1862}
1863
ba0f32d4 1864STATIC int
1da177e4
LT
1865xfs_showargs(
1866 struct bhv_desc *bhv,
1867 struct seq_file *m)
1868{
1869 static struct proc_xfs_info {
1870 int flag;
1871 char *str;
1872 } xfs_info[] = {
1873 /* the few simple ones we can get from the mount struct */
1874 { XFS_MOUNT_WSYNC, "," MNTOPT_WSYNC },
1875 { XFS_MOUNT_INO64, "," MNTOPT_INO64 },
1876 { XFS_MOUNT_NOALIGN, "," MNTOPT_NOALIGN },
1877 { XFS_MOUNT_SWALLOC, "," MNTOPT_SWALLOC },
1878 { XFS_MOUNT_NOUUID, "," MNTOPT_NOUUID },
1879 { XFS_MOUNT_NORECOVERY, "," MNTOPT_NORECOVERY },
1880 { XFS_MOUNT_OSYNCISOSYNC, "," MNTOPT_OSYNCISOSYNC },
f538d4da 1881 { XFS_MOUNT_BARRIER, "," MNTOPT_BARRIER },
1da177e4
LT
1882 { XFS_MOUNT_IDELETE, "," MNTOPT_NOIKEEP },
1883 { 0, NULL }
1884 };
1885 struct proc_xfs_info *xfs_infop;
1886 struct xfs_mount *mp = XFS_BHVTOM(bhv);
e69a333b 1887 struct vfs *vfsp = XFS_MTOVFS(mp);
1da177e4
LT
1888
1889 for (xfs_infop = xfs_info; xfs_infop->flag; xfs_infop++) {
1890 if (mp->m_flags & xfs_infop->flag)
1891 seq_puts(m, xfs_infop->str);
1892 }
1893
1894 if (mp->m_flags & XFS_MOUNT_IHASHSIZE)
1895 seq_printf(m, "," MNTOPT_IHASHSIZE "=%d", mp->m_ihsize);
1896
1897 if (mp->m_flags & XFS_MOUNT_DFLT_IOSIZE)
1f443ad7 1898 seq_printf(m, "," MNTOPT_ALLOCSIZE "=%d", 1<<mp->m_writeio_log);
1da177e4
LT
1899
1900 if (mp->m_logbufs > 0)
1901 seq_printf(m, "," MNTOPT_LOGBUFS "=%d", mp->m_logbufs);
1902
1903 if (mp->m_logbsize > 0)
1904 seq_printf(m, "," MNTOPT_LOGBSIZE "=%d", mp->m_logbsize);
1905
1906 if (mp->m_ddev_targp != mp->m_logdev_targp)
1907 seq_printf(m, "," MNTOPT_LOGDEV "=%s",
1908 XFS_BUFTARG_NAME(mp->m_logdev_targp));
1909
1910 if (mp->m_rtdev_targp && mp->m_ddev_targp != mp->m_rtdev_targp)
1911 seq_printf(m, "," MNTOPT_RTDEV "=%s",
1912 XFS_BUFTARG_NAME(mp->m_rtdev_targp));
1913
1914 if (mp->m_dalign > 0)
1915 seq_printf(m, "," MNTOPT_SUNIT "=%d",
1916 (int)XFS_FSB_TO_BB(mp, mp->m_dalign));
1917
1918 if (mp->m_swidth > 0)
1919 seq_printf(m, "," MNTOPT_SWIDTH "=%d",
1920 (int)XFS_FSB_TO_BB(mp, mp->m_swidth));
1921
1922 if (!(mp->m_flags & XFS_MOUNT_32BITINOOPT))
1923 seq_printf(m, "," MNTOPT_64BITINODE);
e69a333b
NS
1924
1925 if (vfsp->vfs_flag & VFS_GRPID)
1926 seq_printf(m, "," MNTOPT_GRPID);
1927
1da177e4
LT
1928 return 0;
1929}
1930
1931STATIC void
1932xfs_freeze(
1933 bhv_desc_t *bdp)
1934{
1935 xfs_mount_t *mp = XFS_BHVTOM(bdp);
1936
1937 while (atomic_read(&mp->m_active_trans) > 0)
1938 delay(100);
1939
1940 /* Push the superblock and write an unmount record */
1941 xfs_log_unmount_write(mp);
1942 xfs_unmountfs_writesb(mp);
1943}
1944
1945
1946vfsops_t xfs_vfsops = {
1947 BHV_IDENTITY_INIT(VFS_BHV_XFS,VFS_POSITION_XFS),
1948 .vfs_parseargs = xfs_parseargs,
1949 .vfs_showargs = xfs_showargs,
1950 .vfs_mount = xfs_mount,
1951 .vfs_unmount = xfs_unmount,
1952 .vfs_mntupdate = xfs_mntupdate,
1953 .vfs_root = xfs_root,
1954 .vfs_statvfs = xfs_statvfs,
1955 .vfs_sync = xfs_sync,
1956 .vfs_vget = xfs_vget,
1957 .vfs_dmapiops = (vfs_dmapiops_t)fs_nosys,
1958 .vfs_quotactl = (vfs_quotactl_t)fs_nosys,
1959 .vfs_init_vnode = xfs_initialize_vnode,
1960 .vfs_force_shutdown = xfs_do_force_shutdown,
1961 .vfs_freeze = xfs_freeze,
1962};
This page took 0.178429 seconds and 5 git commands to generate.