2 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation.
9 * 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.
14 * 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
22 #include "xfs_trans.h"
26 #include "xfs_alloc.h"
27 #include "xfs_dmapi.h"
28 #include "xfs_quota.h"
29 #include "xfs_mount.h"
30 #include "xfs_bmap_btree.h"
31 #include "xfs_alloc_btree.h"
32 #include "xfs_ialloc_btree.h"
33 #include "xfs_dir2_sf.h"
34 #include "xfs_attr_sf.h"
35 #include "xfs_dinode.h"
36 #include "xfs_inode.h"
37 #include "xfs_btree.h"
38 #include "xfs_btree_trace.h"
39 #include "xfs_ialloc.h"
41 #include "xfs_rtalloc.h"
42 #include "xfs_error.h"
43 #include "xfs_itable.h"
44 #include "xfs_fsops.h"
48 #include "xfs_buf_item.h"
49 #include "xfs_utils.h"
50 #include "xfs_vnodeops.h"
51 #include "xfs_version.h"
52 #include "xfs_log_priv.h"
53 #include "xfs_trans_priv.h"
54 #include "xfs_filestream.h"
55 #include "xfs_da_btree.h"
56 #include "xfs_dir2_trace.h"
57 #include "xfs_extfree_item.h"
58 #include "xfs_mru_cache.h"
59 #include "xfs_inode_item.h"
62 #include <linux/namei.h>
63 #include <linux/init.h>
64 #include <linux/mount.h>
65 #include <linux/mempool.h>
66 #include <linux/writeback.h>
67 #include <linux/kthread.h>
68 #include <linux/freezer.h>
69 #include <linux/parser.h>
71 static struct super_operations xfs_super_operations;
72 static kmem_zone_t *xfs_ioend_zone;
73 mempool_t *xfs_ioend_pool;
75 #define MNTOPT_LOGBUFS "logbufs" /* number of XFS log buffers */
76 #define MNTOPT_LOGBSIZE "logbsize" /* size of XFS log buffers */
77 #define MNTOPT_LOGDEV "logdev" /* log device */
78 #define MNTOPT_RTDEV "rtdev" /* realtime I/O device */
79 #define MNTOPT_BIOSIZE "biosize" /* log2 of preferred buffered io size */
80 #define MNTOPT_WSYNC "wsync" /* safe-mode nfs compatible mount */
81 #define MNTOPT_NOALIGN "noalign" /* turn off stripe alignment */
82 #define MNTOPT_SWALLOC "swalloc" /* turn on stripe width allocation */
83 #define MNTOPT_SUNIT "sunit" /* data volume stripe unit */
84 #define MNTOPT_SWIDTH "swidth" /* data volume stripe width */
85 #define MNTOPT_NOUUID "nouuid" /* ignore filesystem UUID */
86 #define MNTOPT_MTPT "mtpt" /* filesystem mount point */
87 #define MNTOPT_GRPID "grpid" /* group-ID from parent directory */
88 #define MNTOPT_NOGRPID "nogrpid" /* group-ID from current process */
89 #define MNTOPT_BSDGROUPS "bsdgroups" /* group-ID from parent directory */
90 #define MNTOPT_SYSVGROUPS "sysvgroups" /* group-ID from current process */
91 #define MNTOPT_ALLOCSIZE "allocsize" /* preferred allocation size */
92 #define MNTOPT_NORECOVERY "norecovery" /* don't run XFS recovery */
93 #define MNTOPT_BARRIER "barrier" /* use writer barriers for log write and
94 * unwritten extent conversion */
95 #define MNTOPT_NOBARRIER "nobarrier" /* .. disable */
96 #define MNTOPT_OSYNCISOSYNC "osyncisosync" /* o_sync is REALLY o_sync */
97 #define MNTOPT_64BITINODE "inode64" /* inodes can be allocated anywhere */
98 #define MNTOPT_IKEEP "ikeep" /* do not free empty inode clusters */
99 #define MNTOPT_NOIKEEP "noikeep" /* free empty inode clusters */
100 #define MNTOPT_LARGEIO "largeio" /* report large I/O sizes in stat() */
101 #define MNTOPT_NOLARGEIO "nolargeio" /* do not report large I/O sizes
103 #define MNTOPT_ATTR2 "attr2" /* do use attr2 attribute format */
104 #define MNTOPT_NOATTR2 "noattr2" /* do not use attr2 attribute format */
105 #define MNTOPT_FILESTREAM "filestreams" /* use filestreams allocator */
106 #define MNTOPT_QUOTA "quota" /* disk quotas (user) */
107 #define MNTOPT_NOQUOTA "noquota" /* no quotas */
108 #define MNTOPT_USRQUOTA "usrquota" /* user quota enabled */
109 #define MNTOPT_GRPQUOTA "grpquota" /* group quota enabled */
110 #define MNTOPT_PRJQUOTA "prjquota" /* project quota enabled */
111 #define MNTOPT_UQUOTA "uquota" /* user quota (IRIX variant) */
112 #define MNTOPT_GQUOTA "gquota" /* group quota (IRIX variant) */
113 #define MNTOPT_PQUOTA "pquota" /* project quota (IRIX variant) */
114 #define MNTOPT_UQUOTANOENF "uqnoenforce"/* user quota limit enforcement */
115 #define MNTOPT_GQUOTANOENF "gqnoenforce"/* group quota limit enforcement */
116 #define MNTOPT_PQUOTANOENF "pqnoenforce"/* project quota limit enforcement */
117 #define MNTOPT_QUOTANOENF "qnoenforce" /* same as uqnoenforce */
118 #define MNTOPT_DMAPI "dmapi" /* DMI enabled (DMAPI / XDSM) */
119 #define MNTOPT_XDSM "xdsm" /* DMI enabled (DMAPI / XDSM) */
120 #define MNTOPT_DMI "dmi" /* DMI enabled (DMAPI / XDSM) */
123 * Table driven mount option parser.
125 * Currently only used for remount, but it will be used for mount
126 * in the future, too.
129 Opt_barrier, Opt_nobarrier, Opt_err
132 static const match_table_t tokens = {
133 {Opt_barrier, "barrier"},
134 {Opt_nobarrier, "nobarrier"},
140 suffix_strtoul(char *s, char **endp, unsigned int base)
142 int last, shift_left_factor = 0;
145 last = strlen(value) - 1;
146 if (value[last] == 'K' || value[last] == 'k') {
147 shift_left_factor = 10;
150 if (value[last] == 'M' || value[last] == 'm') {
151 shift_left_factor = 20;
154 if (value[last] == 'G' || value[last] == 'g') {
155 shift_left_factor = 30;
159 return simple_strtoul((const char *)s, endp, base) << shift_left_factor;
163 * This function fills in xfs_mount_t fields based on mount args.
164 * Note: the superblock has _not_ yet been read in.
166 * Note that this function leaks the various device name allocations on
167 * failure. The caller takes care of them.
171 struct xfs_mount *mp,
175 struct super_block *sb = mp->m_super;
176 char *this_char, *value, *eov;
180 int dmapi_implies_ikeep = 1;
181 __uint8_t iosizelog = 0;
184 * Copy binary VFS mount flags we are interested in.
186 if (sb->s_flags & MS_RDONLY)
187 mp->m_flags |= XFS_MOUNT_RDONLY;
188 if (sb->s_flags & MS_DIRSYNC)
189 mp->m_flags |= XFS_MOUNT_DIRSYNC;
190 if (sb->s_flags & MS_SYNCHRONOUS)
191 mp->m_flags |= XFS_MOUNT_WSYNC;
194 * Set some default flags that could be cleared by the mount option
197 mp->m_flags |= XFS_MOUNT_BARRIER;
198 mp->m_flags |= XFS_MOUNT_COMPAT_IOSIZE;
199 mp->m_flags |= XFS_MOUNT_SMALL_INUMS;
202 * These can be overridden by the mount option parsing.
210 while ((this_char = strsep(&options, ",")) != NULL) {
213 if ((value = strchr(this_char, '=')) != NULL)
216 if (!strcmp(this_char, MNTOPT_LOGBUFS)) {
217 if (!value || !*value) {
219 "XFS: %s option requires an argument",
223 mp->m_logbufs = simple_strtoul(value, &eov, 10);
224 } else if (!strcmp(this_char, MNTOPT_LOGBSIZE)) {
225 if (!value || !*value) {
227 "XFS: %s option requires an argument",
231 mp->m_logbsize = suffix_strtoul(value, &eov, 10);
232 } else if (!strcmp(this_char, MNTOPT_LOGDEV)) {
233 if (!value || !*value) {
235 "XFS: %s option requires an argument",
239 mp->m_logname = kstrndup(value, MAXNAMELEN, GFP_KERNEL);
242 } else if (!strcmp(this_char, MNTOPT_MTPT)) {
243 if (!value || !*value) {
245 "XFS: %s option requires an argument",
249 *mtpt = kstrndup(value, MAXNAMELEN, GFP_KERNEL);
252 } else if (!strcmp(this_char, MNTOPT_RTDEV)) {
253 if (!value || !*value) {
255 "XFS: %s option requires an argument",
259 mp->m_rtname = kstrndup(value, MAXNAMELEN, GFP_KERNEL);
262 } else if (!strcmp(this_char, MNTOPT_BIOSIZE)) {
263 if (!value || !*value) {
265 "XFS: %s option requires an argument",
269 iosize = simple_strtoul(value, &eov, 10);
270 iosizelog = ffs(iosize) - 1;
271 } else if (!strcmp(this_char, MNTOPT_ALLOCSIZE)) {
272 if (!value || !*value) {
274 "XFS: %s option requires an argument",
278 iosize = suffix_strtoul(value, &eov, 10);
279 iosizelog = ffs(iosize) - 1;
280 } else if (!strcmp(this_char, MNTOPT_GRPID) ||
281 !strcmp(this_char, MNTOPT_BSDGROUPS)) {
282 mp->m_flags |= XFS_MOUNT_GRPID;
283 } else if (!strcmp(this_char, MNTOPT_NOGRPID) ||
284 !strcmp(this_char, MNTOPT_SYSVGROUPS)) {
285 mp->m_flags &= ~XFS_MOUNT_GRPID;
286 } else if (!strcmp(this_char, MNTOPT_WSYNC)) {
287 mp->m_flags |= XFS_MOUNT_WSYNC;
288 } else if (!strcmp(this_char, MNTOPT_OSYNCISOSYNC)) {
289 mp->m_flags |= XFS_MOUNT_OSYNCISOSYNC;
290 } else if (!strcmp(this_char, MNTOPT_NORECOVERY)) {
291 mp->m_flags |= XFS_MOUNT_NORECOVERY;
292 } else if (!strcmp(this_char, MNTOPT_NOALIGN)) {
293 mp->m_flags |= XFS_MOUNT_NOALIGN;
294 } else if (!strcmp(this_char, MNTOPT_SWALLOC)) {
295 mp->m_flags |= XFS_MOUNT_SWALLOC;
296 } else if (!strcmp(this_char, MNTOPT_SUNIT)) {
297 if (!value || !*value) {
299 "XFS: %s option requires an argument",
303 dsunit = simple_strtoul(value, &eov, 10);
304 } else if (!strcmp(this_char, MNTOPT_SWIDTH)) {
305 if (!value || !*value) {
307 "XFS: %s option requires an argument",
311 dswidth = simple_strtoul(value, &eov, 10);
312 } else if (!strcmp(this_char, MNTOPT_64BITINODE)) {
313 mp->m_flags &= ~XFS_MOUNT_SMALL_INUMS;
316 "XFS: %s option not allowed on this system",
320 } else if (!strcmp(this_char, MNTOPT_NOUUID)) {
321 mp->m_flags |= XFS_MOUNT_NOUUID;
322 } else if (!strcmp(this_char, MNTOPT_BARRIER)) {
323 mp->m_flags |= XFS_MOUNT_BARRIER;
324 } else if (!strcmp(this_char, MNTOPT_NOBARRIER)) {
325 mp->m_flags &= ~XFS_MOUNT_BARRIER;
326 } else if (!strcmp(this_char, MNTOPT_IKEEP)) {
327 mp->m_flags |= XFS_MOUNT_IKEEP;
328 } else if (!strcmp(this_char, MNTOPT_NOIKEEP)) {
329 dmapi_implies_ikeep = 0;
330 mp->m_flags &= ~XFS_MOUNT_IKEEP;
331 } else if (!strcmp(this_char, MNTOPT_LARGEIO)) {
332 mp->m_flags &= ~XFS_MOUNT_COMPAT_IOSIZE;
333 } else if (!strcmp(this_char, MNTOPT_NOLARGEIO)) {
334 mp->m_flags |= XFS_MOUNT_COMPAT_IOSIZE;
335 } else if (!strcmp(this_char, MNTOPT_ATTR2)) {
336 mp->m_flags |= XFS_MOUNT_ATTR2;
337 } else if (!strcmp(this_char, MNTOPT_NOATTR2)) {
338 mp->m_flags &= ~XFS_MOUNT_ATTR2;
339 mp->m_flags |= XFS_MOUNT_NOATTR2;
340 } else if (!strcmp(this_char, MNTOPT_FILESTREAM)) {
341 mp->m_flags |= XFS_MOUNT_FILESTREAMS;
342 } else if (!strcmp(this_char, MNTOPT_NOQUOTA)) {
343 mp->m_qflags &= ~(XFS_UQUOTA_ACCT | XFS_UQUOTA_ACTIVE |
344 XFS_GQUOTA_ACCT | XFS_GQUOTA_ACTIVE |
345 XFS_PQUOTA_ACCT | XFS_PQUOTA_ACTIVE |
346 XFS_UQUOTA_ENFD | XFS_OQUOTA_ENFD);
347 } else if (!strcmp(this_char, MNTOPT_QUOTA) ||
348 !strcmp(this_char, MNTOPT_UQUOTA) ||
349 !strcmp(this_char, MNTOPT_USRQUOTA)) {
350 mp->m_qflags |= (XFS_UQUOTA_ACCT | XFS_UQUOTA_ACTIVE |
352 } else if (!strcmp(this_char, MNTOPT_QUOTANOENF) ||
353 !strcmp(this_char, MNTOPT_UQUOTANOENF)) {
354 mp->m_qflags |= (XFS_UQUOTA_ACCT | XFS_UQUOTA_ACTIVE);
355 mp->m_qflags &= ~XFS_UQUOTA_ENFD;
356 } else if (!strcmp(this_char, MNTOPT_PQUOTA) ||
357 !strcmp(this_char, MNTOPT_PRJQUOTA)) {
358 mp->m_qflags |= (XFS_PQUOTA_ACCT | XFS_PQUOTA_ACTIVE |
360 } else if (!strcmp(this_char, MNTOPT_PQUOTANOENF)) {
361 mp->m_qflags |= (XFS_PQUOTA_ACCT | XFS_PQUOTA_ACTIVE);
362 mp->m_qflags &= ~XFS_OQUOTA_ENFD;
363 } else if (!strcmp(this_char, MNTOPT_GQUOTA) ||
364 !strcmp(this_char, MNTOPT_GRPQUOTA)) {
365 mp->m_qflags |= (XFS_GQUOTA_ACCT | XFS_GQUOTA_ACTIVE |
367 } else if (!strcmp(this_char, MNTOPT_GQUOTANOENF)) {
368 mp->m_qflags |= (XFS_GQUOTA_ACCT | XFS_GQUOTA_ACTIVE);
369 mp->m_qflags &= ~XFS_OQUOTA_ENFD;
370 } else if (!strcmp(this_char, MNTOPT_DMAPI)) {
371 mp->m_flags |= XFS_MOUNT_DMAPI;
372 } else if (!strcmp(this_char, MNTOPT_XDSM)) {
373 mp->m_flags |= XFS_MOUNT_DMAPI;
374 } else if (!strcmp(this_char, MNTOPT_DMI)) {
375 mp->m_flags |= XFS_MOUNT_DMAPI;
376 } else if (!strcmp(this_char, "ihashsize")) {
378 "XFS: ihashsize no longer used, option is deprecated.");
379 } else if (!strcmp(this_char, "osyncisdsync")) {
380 /* no-op, this is now the default */
382 "XFS: osyncisdsync is now the default, option is deprecated.");
383 } else if (!strcmp(this_char, "irixsgid")) {
385 "XFS: irixsgid is now a sysctl(2) variable, option is deprecated.");
388 "XFS: unknown mount option [%s].", this_char);
394 * no recovery flag requires a read-only mount
396 if ((mp->m_flags & XFS_MOUNT_NORECOVERY) &&
397 !(mp->m_flags & XFS_MOUNT_RDONLY)) {
398 cmn_err(CE_WARN, "XFS: no-recovery mounts must be read-only.");
402 if ((mp->m_flags & XFS_MOUNT_NOALIGN) && (dsunit || dswidth)) {
404 "XFS: sunit and swidth options incompatible with the noalign option");
408 if ((mp->m_qflags & (XFS_GQUOTA_ACCT | XFS_GQUOTA_ACTIVE)) &&
409 (mp->m_qflags & (XFS_PQUOTA_ACCT | XFS_PQUOTA_ACTIVE))) {
411 "XFS: cannot mount with both project and group quota");
415 if ((mp->m_flags & XFS_MOUNT_DMAPI) && (!*mtpt || *mtpt[0] == '\0')) {
416 printk("XFS: %s option needs the mount point option as well\n",
421 if ((dsunit && !dswidth) || (!dsunit && dswidth)) {
423 "XFS: sunit and swidth must be specified together");
427 if (dsunit && (dswidth % dsunit != 0)) {
429 "XFS: stripe width (%d) must be a multiple of the stripe unit (%d)",
435 * Applications using DMI filesystems often expect the
436 * inode generation number to be monotonically increasing.
437 * If we delete inode chunks we break this assumption, so
438 * keep unused inode chunks on disk for DMI filesystems
439 * until we come up with a better solution.
440 * Note that if "ikeep" or "noikeep" mount options are
441 * supplied, then they are honored.
443 if ((mp->m_flags & XFS_MOUNT_DMAPI) && dmapi_implies_ikeep)
444 mp->m_flags |= XFS_MOUNT_IKEEP;
447 if (!(mp->m_flags & XFS_MOUNT_NOALIGN)) {
449 * At this point the superblock has not been read
450 * in, therefore we do not know the block size.
451 * Before the mount call ends we will convert
455 mp->m_dalign = dsunit;
456 mp->m_flags |= XFS_MOUNT_RETERR;
460 mp->m_swidth = dswidth;
463 if (mp->m_logbufs != -1 &&
464 mp->m_logbufs != 0 &&
465 (mp->m_logbufs < XLOG_MIN_ICLOGS ||
466 mp->m_logbufs > XLOG_MAX_ICLOGS)) {
468 "XFS: invalid logbufs value: %d [not %d-%d]",
469 mp->m_logbufs, XLOG_MIN_ICLOGS, XLOG_MAX_ICLOGS);
470 return XFS_ERROR(EINVAL);
472 if (mp->m_logbsize != -1 &&
473 mp->m_logbsize != 0 &&
474 (mp->m_logbsize < XLOG_MIN_RECORD_BSIZE ||
475 mp->m_logbsize > XLOG_MAX_RECORD_BSIZE ||
476 !is_power_of_2(mp->m_logbsize))) {
478 "XFS: invalid logbufsize: %d [not 16k,32k,64k,128k or 256k]",
480 return XFS_ERROR(EINVAL);
483 mp->m_fsname = kstrndup(sb->s_id, MAXNAMELEN, GFP_KERNEL);
486 mp->m_fsname_len = strlen(mp->m_fsname) + 1;
489 if (iosizelog > XFS_MAX_IO_LOG ||
490 iosizelog < XFS_MIN_IO_LOG) {
492 "XFS: invalid log iosize: %d [not %d-%d]",
493 iosizelog, XFS_MIN_IO_LOG,
495 return XFS_ERROR(EINVAL);
498 mp->m_flags |= XFS_MOUNT_DFLT_IOSIZE;
499 mp->m_readio_log = iosizelog;
500 mp->m_writeio_log = iosizelog;
506 struct proc_xfs_info {
513 struct xfs_mount *mp,
516 static struct proc_xfs_info xfs_info_set[] = {
517 /* the few simple ones we can get from the mount struct */
518 { XFS_MOUNT_IKEEP, "," MNTOPT_IKEEP },
519 { XFS_MOUNT_WSYNC, "," MNTOPT_WSYNC },
520 { XFS_MOUNT_NOALIGN, "," MNTOPT_NOALIGN },
521 { XFS_MOUNT_SWALLOC, "," MNTOPT_SWALLOC },
522 { XFS_MOUNT_NOUUID, "," MNTOPT_NOUUID },
523 { XFS_MOUNT_NORECOVERY, "," MNTOPT_NORECOVERY },
524 { XFS_MOUNT_OSYNCISOSYNC, "," MNTOPT_OSYNCISOSYNC },
525 { XFS_MOUNT_ATTR2, "," MNTOPT_ATTR2 },
526 { XFS_MOUNT_FILESTREAMS, "," MNTOPT_FILESTREAM },
527 { XFS_MOUNT_DMAPI, "," MNTOPT_DMAPI },
528 { XFS_MOUNT_GRPID, "," MNTOPT_GRPID },
531 static struct proc_xfs_info xfs_info_unset[] = {
532 /* the few simple ones we can get from the mount struct */
533 { XFS_MOUNT_COMPAT_IOSIZE, "," MNTOPT_LARGEIO },
534 { XFS_MOUNT_BARRIER, "," MNTOPT_NOBARRIER },
535 { XFS_MOUNT_SMALL_INUMS, "," MNTOPT_64BITINODE },
538 struct proc_xfs_info *xfs_infop;
540 for (xfs_infop = xfs_info_set; xfs_infop->flag; xfs_infop++) {
541 if (mp->m_flags & xfs_infop->flag)
542 seq_puts(m, xfs_infop->str);
544 for (xfs_infop = xfs_info_unset; xfs_infop->flag; xfs_infop++) {
545 if (!(mp->m_flags & xfs_infop->flag))
546 seq_puts(m, xfs_infop->str);
549 if (mp->m_flags & XFS_MOUNT_DFLT_IOSIZE)
550 seq_printf(m, "," MNTOPT_ALLOCSIZE "=%dk",
551 (int)(1 << mp->m_writeio_log) >> 10);
553 if (mp->m_logbufs > 0)
554 seq_printf(m, "," MNTOPT_LOGBUFS "=%d", mp->m_logbufs);
555 if (mp->m_logbsize > 0)
556 seq_printf(m, "," MNTOPT_LOGBSIZE "=%dk", mp->m_logbsize >> 10);
559 seq_printf(m, "," MNTOPT_LOGDEV "=%s", mp->m_logname);
561 seq_printf(m, "," MNTOPT_RTDEV "=%s", mp->m_rtname);
563 if (mp->m_dalign > 0)
564 seq_printf(m, "," MNTOPT_SUNIT "=%d",
565 (int)XFS_FSB_TO_BB(mp, mp->m_dalign));
566 if (mp->m_swidth > 0)
567 seq_printf(m, "," MNTOPT_SWIDTH "=%d",
568 (int)XFS_FSB_TO_BB(mp, mp->m_swidth));
570 if (mp->m_qflags & (XFS_UQUOTA_ACCT|XFS_UQUOTA_ENFD))
571 seq_puts(m, "," MNTOPT_USRQUOTA);
572 else if (mp->m_qflags & XFS_UQUOTA_ACCT)
573 seq_puts(m, "," MNTOPT_UQUOTANOENF);
575 if (mp->m_qflags & (XFS_PQUOTA_ACCT|XFS_OQUOTA_ENFD))
576 seq_puts(m, "," MNTOPT_PRJQUOTA);
577 else if (mp->m_qflags & XFS_PQUOTA_ACCT)
578 seq_puts(m, "," MNTOPT_PQUOTANOENF);
580 if (mp->m_qflags & (XFS_GQUOTA_ACCT|XFS_OQUOTA_ENFD))
581 seq_puts(m, "," MNTOPT_GRPQUOTA);
582 else if (mp->m_qflags & XFS_GQUOTA_ACCT)
583 seq_puts(m, "," MNTOPT_GQUOTANOENF);
585 if (!(mp->m_qflags & XFS_ALL_QUOTA_ACCT))
586 seq_puts(m, "," MNTOPT_NOQUOTA);
592 unsigned int blockshift)
594 unsigned int pagefactor = 1;
595 unsigned int bitshift = BITS_PER_LONG - 1;
597 /* Figure out maximum filesize, on Linux this can depend on
598 * the filesystem blocksize (on 32 bit platforms).
599 * __block_prepare_write does this in an [unsigned] long...
600 * page->index << (PAGE_CACHE_SHIFT - bbits)
601 * So, for page sized blocks (4K on 32 bit platforms),
602 * this wraps at around 8Tb (hence MAX_LFS_FILESIZE which is
603 * (((u64)PAGE_CACHE_SIZE << (BITS_PER_LONG-1))-1)
604 * but for smaller blocksizes it is less (bbits = log2 bsize).
605 * Note1: get_block_t takes a long (implicit cast from above)
606 * Note2: The Large Block Device (LBD and HAVE_SECTOR_T) patch
607 * can optionally convert the [unsigned] long from above into
608 * an [unsigned] long long.
611 #if BITS_PER_LONG == 32
612 # if defined(CONFIG_LBD)
613 ASSERT(sizeof(sector_t) == 8);
614 pagefactor = PAGE_CACHE_SIZE;
615 bitshift = BITS_PER_LONG;
617 pagefactor = PAGE_CACHE_SIZE >> (PAGE_CACHE_SHIFT - blockshift);
621 return (((__uint64_t)pagefactor) << bitshift) - 1;
628 struct block_device **bdevp)
632 *bdevp = open_bdev_exclusive(name, FMODE_READ|FMODE_WRITE, mp);
633 if (IS_ERR(*bdevp)) {
634 error = PTR_ERR(*bdevp);
635 printk("XFS: Invalid device [%s], error=%d\n", name, error);
643 struct block_device *bdev)
646 close_bdev_exclusive(bdev, FMODE_READ|FMODE_WRITE);
650 * Try to write out the superblock using barriers.
656 xfs_buf_t *sbp = xfs_getsb(mp, 0);
661 XFS_BUF_UNDELAYWRITE(sbp);
663 XFS_BUF_UNASYNC(sbp);
664 XFS_BUF_ORDERED(sbp);
667 error = xfs_iowait(sbp);
670 * Clear all the flags we set and possible error state in the
671 * buffer. We only did the write to try out whether barriers
672 * worked and shouldn't leave any traces in the superblock
676 XFS_BUF_ERROR(sbp, 0);
677 XFS_BUF_UNORDERED(sbp);
684 xfs_mountfs_check_barriers(xfs_mount_t *mp)
688 if (mp->m_logdev_targp != mp->m_ddev_targp) {
689 xfs_fs_cmn_err(CE_NOTE, mp,
690 "Disabling barriers, not supported with external log device");
691 mp->m_flags &= ~XFS_MOUNT_BARRIER;
695 if (xfs_readonly_buftarg(mp->m_ddev_targp)) {
696 xfs_fs_cmn_err(CE_NOTE, mp,
697 "Disabling barriers, underlying device is readonly");
698 mp->m_flags &= ~XFS_MOUNT_BARRIER;
702 error = xfs_barrier_test(mp);
704 xfs_fs_cmn_err(CE_NOTE, mp,
705 "Disabling barriers, trial barrier write failed");
706 mp->m_flags &= ~XFS_MOUNT_BARRIER;
712 xfs_blkdev_issue_flush(
713 xfs_buftarg_t *buftarg)
715 blkdev_issue_flush(buftarg->bt_bdev, NULL);
720 struct xfs_mount *mp)
722 if (mp->m_logdev_targp && mp->m_logdev_targp != mp->m_ddev_targp) {
723 struct block_device *logdev = mp->m_logdev_targp->bt_bdev;
724 xfs_free_buftarg(mp, mp->m_logdev_targp);
725 xfs_blkdev_put(logdev);
727 if (mp->m_rtdev_targp) {
728 struct block_device *rtdev = mp->m_rtdev_targp->bt_bdev;
729 xfs_free_buftarg(mp, mp->m_rtdev_targp);
730 xfs_blkdev_put(rtdev);
732 xfs_free_buftarg(mp, mp->m_ddev_targp);
736 * The file system configurations are:
737 * (1) device (partition) with data and internal log
738 * (2) logical volume with data and log subvolumes.
739 * (3) logical volume with data, log, and realtime subvolumes.
741 * We only have to handle opening the log and realtime volumes here if
742 * they are present. The data subvolume has already been opened by
743 * get_sb_bdev() and is stored in sb->s_bdev.
747 struct xfs_mount *mp)
749 struct block_device *ddev = mp->m_super->s_bdev;
750 struct block_device *logdev = NULL, *rtdev = NULL;
754 * Open real time and log devices - order is important.
757 error = xfs_blkdev_get(mp, mp->m_logname, &logdev);
763 error = xfs_blkdev_get(mp, mp->m_rtname, &rtdev);
765 goto out_close_logdev;
767 if (rtdev == ddev || rtdev == logdev) {
769 "XFS: Cannot mount filesystem with identical rtdev and ddev/logdev.");
771 goto out_close_rtdev;
776 * Setup xfs_mount buffer target pointers
779 mp->m_ddev_targp = xfs_alloc_buftarg(ddev, 0);
780 if (!mp->m_ddev_targp)
781 goto out_close_rtdev;
784 mp->m_rtdev_targp = xfs_alloc_buftarg(rtdev, 1);
785 if (!mp->m_rtdev_targp)
786 goto out_free_ddev_targ;
789 if (logdev && logdev != ddev) {
790 mp->m_logdev_targp = xfs_alloc_buftarg(logdev, 1);
791 if (!mp->m_logdev_targp)
792 goto out_free_rtdev_targ;
794 mp->m_logdev_targp = mp->m_ddev_targp;
800 if (mp->m_rtdev_targp)
801 xfs_free_buftarg(mp, mp->m_rtdev_targp);
803 xfs_free_buftarg(mp, mp->m_ddev_targp);
806 xfs_blkdev_put(rtdev);
808 if (logdev && logdev != ddev)
809 xfs_blkdev_put(logdev);
815 * Setup xfs_mount buffer target pointers based on superblock
819 struct xfs_mount *mp)
823 error = xfs_setsize_buftarg(mp->m_ddev_targp, mp->m_sb.sb_blocksize,
824 mp->m_sb.sb_sectsize);
828 if (mp->m_logdev_targp && mp->m_logdev_targp != mp->m_ddev_targp) {
829 unsigned int log_sector_size = BBSIZE;
831 if (xfs_sb_version_hassector(&mp->m_sb))
832 log_sector_size = mp->m_sb.sb_logsectsize;
833 error = xfs_setsize_buftarg(mp->m_logdev_targp,
834 mp->m_sb.sb_blocksize,
839 if (mp->m_rtdev_targp) {
840 error = xfs_setsize_buftarg(mp->m_rtdev_targp,
841 mp->m_sb.sb_blocksize,
842 mp->m_sb.sb_sectsize);
851 * XFS AIL push thread support
855 struct xfs_ail *ailp,
856 xfs_lsn_t threshold_lsn)
858 ailp->xa_target = threshold_lsn;
859 wake_up_process(ailp->xa_task);
866 struct xfs_ail *ailp = data;
867 xfs_lsn_t last_pushed_lsn = 0;
870 while (!kthread_should_stop()) {
872 schedule_timeout_interruptible(msecs_to_jiffies(tout));
878 ASSERT(ailp->xa_mount->m_log);
879 if (XFS_FORCED_SHUTDOWN(ailp->xa_mount))
882 tout = xfsaild_push(ailp, &last_pushed_lsn);
890 struct xfs_ail *ailp)
893 ailp->xa_task = kthread_run(xfsaild, ailp, "xfsaild");
894 if (IS_ERR(ailp->xa_task))
895 return -PTR_ERR(ailp->xa_task);
901 struct xfs_ail *ailp)
903 kthread_stop(ailp->xa_task);
907 /* Catch misguided souls that try to use this interface on XFS */
908 STATIC struct inode *
910 struct super_block *sb)
917 * Now that the generic code is guaranteed not to be accessing
918 * the linux inode, we can reclaim the inode.
921 xfs_fs_destroy_inode(
924 xfs_inode_t *ip = XFS_I(inode);
926 XFS_STATS_INC(vn_reclaim);
928 panic("%s: cannot reclaim 0x%p\n", __func__, inode);
932 * Slab object creation initialisation for the XFS inode.
933 * This covers only the idempotent fields in the XFS inode;
934 * all other fields need to be initialised on allocation
935 * from the slab. This avoids the need to repeatedly intialise
936 * fields in the xfs inode that left in the initialise state
937 * when freeing the inode.
940 xfs_fs_inode_init_once(
943 struct xfs_inode *ip = inode;
945 memset(ip, 0, sizeof(struct xfs_inode));
948 inode_init_once(VFS_I(ip));
951 atomic_set(&ip->i_iocount, 0);
952 atomic_set(&ip->i_pincount, 0);
953 spin_lock_init(&ip->i_flags_lock);
954 init_waitqueue_head(&ip->i_ipin_wait);
956 * Because we want to use a counting completion, complete
957 * the flush completion once to allow a single access to
958 * the flush completion without blocking.
960 init_completion(&ip->i_flush);
961 complete(&ip->i_flush);
963 mrlock_init(&ip->i_lock, MRLOCK_ALLOW_EQUAL_PRI|MRLOCK_BARRIER,
964 "xfsino", ip->i_ino);
965 mrlock_init(&ip->i_iolock, MRLOCK_BARRIER, "xfsio", ip->i_ino);
969 * Attempt to flush the inode, this will actually fail
970 * if the inode is pinned, but we dirty the inode again
971 * at the point when it is unpinned after a log write,
972 * since this is when the inode itself becomes flushable.
979 struct xfs_inode *ip = XFS_I(inode);
980 struct xfs_mount *mp = ip->i_mount;
983 xfs_itrace_entry(ip);
985 if (XFS_FORCED_SHUTDOWN(mp))
986 return XFS_ERROR(EIO);
989 error = xfs_wait_on_pages(ip, 0, -1);
995 * Bypass inodes which have already been cleaned by
996 * the inode flush clustering code inside xfs_iflush
998 if (xfs_inode_clean(ip))
1002 * We make this non-blocking if the inode is contended, return
1003 * EAGAIN to indicate to the caller that they did not succeed.
1004 * This prevents the flush path from blocking on inodes inside
1005 * another operation right now, they get caught later by xfs_sync.
1008 xfs_ilock(ip, XFS_ILOCK_SHARED);
1011 error = xfs_iflush(ip, XFS_IFLUSH_SYNC);
1014 if (!xfs_ilock_nowait(ip, XFS_ILOCK_SHARED))
1016 if (xfs_ipincount(ip) || !xfs_iflock_nowait(ip))
1019 error = xfs_iflush(ip, XFS_IFLUSH_ASYNC_NOBLOCK);
1023 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1026 * if we failed to write out the inode then mark
1027 * it dirty again so we'll try again later.
1030 xfs_mark_inode_dirty_sync(ip);
1036 struct inode *inode)
1038 xfs_inode_t *ip = XFS_I(inode);
1040 xfs_itrace_entry(ip);
1041 XFS_STATS_INC(vn_rele);
1042 XFS_STATS_INC(vn_remove);
1043 XFS_STATS_DEC(vn_active);
1050 struct xfs_mount *mp)
1052 kfree(mp->m_fsname);
1053 kfree(mp->m_rtname);
1054 kfree(mp->m_logname);
1059 struct super_block *sb)
1061 struct xfs_mount *mp = XFS_M(sb);
1062 struct xfs_inode *rip = mp->m_rootip;
1063 int unmount_event_flags = 0;
1066 xfs_sync_inodes(mp, SYNC_ATTR|SYNC_DELWRI);
1069 if (mp->m_flags & XFS_MOUNT_DMAPI) {
1070 unmount_event_flags =
1071 (mp->m_dmevmask & (1 << DM_EVENT_UNMOUNT)) ?
1072 0 : DM_FLAGS_UNWANTED;
1074 * Ignore error from dmapi here, first unmount is not allowed
1075 * to fail anyway, and second we wouldn't want to fail a
1076 * unmount because of dmapi.
1078 XFS_SEND_PREUNMOUNT(mp, rip, DM_RIGHT_NULL, rip, DM_RIGHT_NULL,
1079 NULL, NULL, 0, 0, unmount_event_flags);
1084 * Blow away any referenced inode in the filestreams cache.
1085 * This can and will cause log traffic as inodes go inactive
1088 xfs_filestream_unmount(mp);
1090 XFS_bflush(mp->m_ddev_targp);
1092 if (mp->m_flags & XFS_MOUNT_DMAPI) {
1093 XFS_SEND_UNMOUNT(mp, rip, DM_RIGHT_NULL, 0, 0,
1094 unmount_event_flags);
1099 xfs_icsb_destroy_counters(mp);
1100 xfs_close_devices(mp);
1103 xfs_free_fsname(mp);
1109 struct super_block *sb,
1112 struct xfs_mount *mp = XFS_M(sb);
1116 * Treat a sync operation like a freeze. This is to work
1117 * around a race in sync_inodes() which works in two phases
1118 * - an asynchronous flush, which can write out an inode
1119 * without waiting for file size updates to complete, and a
1120 * synchronous flush, which wont do anything because the
1121 * async flush removed the inode's dirty flag. Also
1122 * sync_inodes() will not see any files that just have
1123 * outstanding transactions to be flushed because we don't
1124 * dirty the Linux inode until after the transaction I/O
1127 if (wait || unlikely(sb->s_frozen == SB_FREEZE_WRITE))
1128 error = xfs_quiesce_data(mp);
1130 error = xfs_sync_fsdata(mp, 0);
1132 if (unlikely(laptop_mode)) {
1133 int prev_sync_seq = mp->m_sync_seq;
1136 * The disk must be active because we're syncing.
1137 * We schedule xfssyncd now (now that the disk is
1138 * active) instead of later (when it might not be).
1140 wake_up_process(mp->m_sync_task);
1142 * We have to wait for the sync iteration to complete.
1143 * If we don't, the disk activity caused by the sync
1144 * will come after the sync is completed, and that
1145 * triggers another sync from laptop mode.
1147 wait_event(mp->m_wait_single_sync_task,
1148 mp->m_sync_seq != prev_sync_seq);
1156 struct dentry *dentry,
1157 struct kstatfs *statp)
1159 struct xfs_mount *mp = XFS_M(dentry->d_sb);
1160 xfs_sb_t *sbp = &mp->m_sb;
1161 __uint64_t fakeinos, id;
1164 statp->f_type = XFS_SB_MAGIC;
1165 statp->f_namelen = MAXNAMELEN - 1;
1167 id = huge_encode_dev(mp->m_ddev_targp->bt_dev);
1168 statp->f_fsid.val[0] = (u32)id;
1169 statp->f_fsid.val[1] = (u32)(id >> 32);
1171 xfs_icsb_sync_counters(mp, XFS_ICSB_LAZY_COUNT);
1173 spin_lock(&mp->m_sb_lock);
1174 statp->f_bsize = sbp->sb_blocksize;
1175 lsize = sbp->sb_logstart ? sbp->sb_logblocks : 0;
1176 statp->f_blocks = sbp->sb_dblocks - lsize;
1177 statp->f_bfree = statp->f_bavail =
1178 sbp->sb_fdblocks - XFS_ALLOC_SET_ASIDE(mp);
1179 fakeinos = statp->f_bfree << sbp->sb_inopblog;
1181 MIN(sbp->sb_icount + fakeinos, (__uint64_t)XFS_MAXINUMBER);
1182 if (mp->m_maxicount)
1183 statp->f_files = min_t(typeof(statp->f_files),
1186 statp->f_ffree = statp->f_files - (sbp->sb_icount - sbp->sb_ifree);
1187 spin_unlock(&mp->m_sb_lock);
1189 XFS_QM_DQSTATVFS(XFS_I(dentry->d_inode), statp);
1195 struct super_block *sb,
1199 struct xfs_mount *mp = XFS_M(sb);
1200 substring_t args[MAX_OPT_ARGS];
1204 while ((p = strsep(&options, ",")) != NULL) {
1210 token = match_token(p, tokens, args);
1213 mp->m_flags |= XFS_MOUNT_BARRIER;
1216 * Test if barriers are actually working if we can,
1217 * else delay this check until the filesystem is
1220 if (!(mp->m_flags & XFS_MOUNT_RDONLY))
1221 xfs_mountfs_check_barriers(mp);
1224 mp->m_flags &= ~XFS_MOUNT_BARRIER;
1228 * Logically we would return an error here to prevent
1229 * users from believing they might have changed
1230 * mount options using remount which can't be changed.
1232 * But unfortunately mount(8) adds all options from
1233 * mtab and fstab to the mount arguments in some cases
1234 * so we can't blindly reject options, but have to
1235 * check for each specified option if it actually
1236 * differs from the currently set option and only
1237 * reject it if that's the case.
1239 * Until that is implemented we return success for
1240 * every remount request, and silently ignore all
1241 * options that we can't actually change.
1245 "XFS: mount option \"%s\" not supported for remount\n", p);
1254 if ((mp->m_flags & XFS_MOUNT_RDONLY) && !(*flags & MS_RDONLY)) {
1255 mp->m_flags &= ~XFS_MOUNT_RDONLY;
1256 if (mp->m_flags & XFS_MOUNT_BARRIER)
1257 xfs_mountfs_check_barriers(mp);
1260 * If this is the first remount to writeable state we
1261 * might have some superblock changes to update.
1263 if (mp->m_update_flags) {
1264 error = xfs_mount_log_sb(mp, mp->m_update_flags);
1267 "XFS: failed to write sb changes");
1270 mp->m_update_flags = 0;
1275 if (!(mp->m_flags & XFS_MOUNT_RDONLY) && (*flags & MS_RDONLY)) {
1276 xfs_quiesce_data(mp);
1277 xfs_quiesce_attr(mp);
1278 mp->m_flags |= XFS_MOUNT_RDONLY;
1285 * Second stage of a freeze. The data is already frozen so we only
1286 * need to take care of the metadata. Once that's done write a dummy
1287 * record to dirty the log in case of a crash while frozen.
1291 struct super_block *sb)
1293 struct xfs_mount *mp = XFS_M(sb);
1295 xfs_quiesce_attr(mp);
1296 return -xfs_fs_log_dummy(mp);
1300 xfs_fs_show_options(
1302 struct vfsmount *mnt)
1304 return -xfs_showargs(XFS_M(mnt->mnt_sb), m);
1308 * This function fills in xfs_mount_t fields based on mount args.
1309 * Note: the superblock _has_ now been read in.
1313 struct xfs_mount *mp)
1315 int ronly = (mp->m_flags & XFS_MOUNT_RDONLY);
1317 /* Fail a mount where the logbuf is smaller than the log stripe */
1318 if (xfs_sb_version_haslogv2(&mp->m_sb)) {
1319 if (mp->m_logbsize <= 0 &&
1320 mp->m_sb.sb_logsunit > XLOG_BIG_RECORD_BSIZE) {
1321 mp->m_logbsize = mp->m_sb.sb_logsunit;
1322 } else if (mp->m_logbsize > 0 &&
1323 mp->m_logbsize < mp->m_sb.sb_logsunit) {
1325 "XFS: logbuf size must be greater than or equal to log stripe size");
1326 return XFS_ERROR(EINVAL);
1329 /* Fail a mount if the logbuf is larger than 32K */
1330 if (mp->m_logbsize > XLOG_BIG_RECORD_BSIZE) {
1332 "XFS: logbuf size for version 1 logs must be 16K or 32K");
1333 return XFS_ERROR(EINVAL);
1338 * mkfs'ed attr2 will turn on attr2 mount unless explicitly
1339 * told by noattr2 to turn it off
1341 if (xfs_sb_version_hasattr2(&mp->m_sb) &&
1342 !(mp->m_flags & XFS_MOUNT_NOATTR2))
1343 mp->m_flags |= XFS_MOUNT_ATTR2;
1346 * prohibit r/w mounts of read-only filesystems
1348 if ((mp->m_sb.sb_flags & XFS_SBF_READONLY) && !ronly) {
1350 "XFS: cannot mount a read-only filesystem as read-write");
1351 return XFS_ERROR(EROFS);
1359 struct super_block *sb,
1364 struct xfs_mount *mp = NULL;
1365 int flags = 0, error = ENOMEM;
1368 mp = kzalloc(sizeof(struct xfs_mount), GFP_KERNEL);
1372 spin_lock_init(&mp->m_sb_lock);
1373 mutex_init(&mp->m_growlock);
1374 atomic_set(&mp->m_active_trans, 0);
1375 INIT_LIST_HEAD(&mp->m_sync_list);
1376 spin_lock_init(&mp->m_sync_lock);
1377 init_waitqueue_head(&mp->m_wait_single_sync_task);
1382 error = xfs_parseargs(mp, (char *)data, &mtpt);
1384 goto out_free_fsname;
1386 sb_min_blocksize(sb, BBSIZE);
1387 sb->s_xattr = xfs_xattr_handlers;
1388 sb->s_export_op = &xfs_export_operations;
1389 #ifdef CONFIG_XFS_QUOTA
1390 sb->s_qcop = &xfs_quotactl_operations;
1392 sb->s_op = &xfs_super_operations;
1394 error = xfs_dmops_get(mp);
1396 goto out_free_fsname;
1397 error = xfs_qmops_get(mp);
1402 flags |= XFS_MFSI_QUIET;
1404 error = xfs_open_devices(mp);
1408 if (xfs_icsb_init_counters(mp))
1409 mp->m_flags |= XFS_MOUNT_NO_PERCPU_SB;
1411 error = xfs_readsb(mp, flags);
1413 goto out_destroy_counters;
1415 error = xfs_finish_flags(mp);
1419 error = xfs_setup_devices(mp);
1423 if (mp->m_flags & XFS_MOUNT_BARRIER)
1424 xfs_mountfs_check_barriers(mp);
1426 error = xfs_filestream_mount(mp);
1430 error = xfs_mountfs(mp);
1432 goto out_filestream_unmount;
1434 XFS_SEND_MOUNT(mp, DM_RIGHT_NULL, mtpt, mp->m_fsname);
1436 sb->s_magic = XFS_SB_MAGIC;
1437 sb->s_blocksize = mp->m_sb.sb_blocksize;
1438 sb->s_blocksize_bits = ffs(sb->s_blocksize) - 1;
1439 sb->s_maxbytes = xfs_max_file_offset(sb->s_blocksize_bits);
1440 sb->s_time_gran = 1;
1441 set_posix_acl_flag(sb);
1443 root = igrab(VFS_I(mp->m_rootip));
1448 if (is_bad_inode(root)) {
1452 sb->s_root = d_alloc_root(root);
1458 error = xfs_syncd_init(mp);
1464 xfs_itrace_exit(XFS_I(sb->s_root->d_inode));
1467 out_filestream_unmount:
1468 xfs_filestream_unmount(mp);
1471 out_destroy_counters:
1472 xfs_icsb_destroy_counters(mp);
1473 xfs_close_devices(mp);
1479 xfs_free_fsname(mp);
1495 * Blow away any referenced inode in the filestreams cache.
1496 * This can and will cause log traffic as inodes go inactive
1499 xfs_filestream_unmount(mp);
1501 XFS_bflush(mp->m_ddev_targp);
1509 struct file_system_type *fs_type,
1511 const char *dev_name,
1513 struct vfsmount *mnt)
1515 return get_sb_bdev(fs_type, flags, dev_name, data, xfs_fs_fill_super,
1519 static struct super_operations xfs_super_operations = {
1520 .alloc_inode = xfs_fs_alloc_inode,
1521 .destroy_inode = xfs_fs_destroy_inode,
1522 .write_inode = xfs_fs_write_inode,
1523 .clear_inode = xfs_fs_clear_inode,
1524 .put_super = xfs_fs_put_super,
1525 .sync_fs = xfs_fs_sync_super,
1526 .freeze_fs = xfs_fs_freeze,
1527 .statfs = xfs_fs_statfs,
1528 .remount_fs = xfs_fs_remount,
1529 .show_options = xfs_fs_show_options,
1532 static struct file_system_type xfs_fs_type = {
1533 .owner = THIS_MODULE,
1535 .get_sb = xfs_fs_get_sb,
1536 .kill_sb = kill_block_super,
1537 .fs_flags = FS_REQUIRES_DEV,
1541 xfs_alloc_trace_bufs(void)
1543 #ifdef XFS_ALLOC_TRACE
1544 xfs_alloc_trace_buf = ktrace_alloc(XFS_ALLOC_TRACE_SIZE, KM_MAYFAIL);
1545 if (!xfs_alloc_trace_buf)
1548 #ifdef XFS_BMAP_TRACE
1549 xfs_bmap_trace_buf = ktrace_alloc(XFS_BMAP_TRACE_SIZE, KM_MAYFAIL);
1550 if (!xfs_bmap_trace_buf)
1551 goto out_free_alloc_trace;
1553 #ifdef XFS_BTREE_TRACE
1554 xfs_allocbt_trace_buf = ktrace_alloc(XFS_ALLOCBT_TRACE_SIZE,
1556 if (!xfs_allocbt_trace_buf)
1557 goto out_free_bmap_trace;
1559 xfs_inobt_trace_buf = ktrace_alloc(XFS_INOBT_TRACE_SIZE, KM_MAYFAIL);
1560 if (!xfs_inobt_trace_buf)
1561 goto out_free_allocbt_trace;
1563 xfs_bmbt_trace_buf = ktrace_alloc(XFS_BMBT_TRACE_SIZE, KM_MAYFAIL);
1564 if (!xfs_bmbt_trace_buf)
1565 goto out_free_inobt_trace;
1567 #ifdef XFS_ATTR_TRACE
1568 xfs_attr_trace_buf = ktrace_alloc(XFS_ATTR_TRACE_SIZE, KM_MAYFAIL);
1569 if (!xfs_attr_trace_buf)
1570 goto out_free_bmbt_trace;
1572 #ifdef XFS_DIR2_TRACE
1573 xfs_dir2_trace_buf = ktrace_alloc(XFS_DIR2_GTRACE_SIZE, KM_MAYFAIL);
1574 if (!xfs_dir2_trace_buf)
1575 goto out_free_attr_trace;
1580 #ifdef XFS_DIR2_TRACE
1581 out_free_attr_trace:
1583 #ifdef XFS_ATTR_TRACE
1584 ktrace_free(xfs_attr_trace_buf);
1585 out_free_bmbt_trace:
1587 #ifdef XFS_BTREE_TRACE
1588 ktrace_free(xfs_bmbt_trace_buf);
1589 out_free_inobt_trace:
1590 ktrace_free(xfs_inobt_trace_buf);
1591 out_free_allocbt_trace:
1592 ktrace_free(xfs_allocbt_trace_buf);
1593 out_free_bmap_trace:
1595 #ifdef XFS_BMAP_TRACE
1596 ktrace_free(xfs_bmap_trace_buf);
1597 out_free_alloc_trace:
1599 #ifdef XFS_ALLOC_TRACE
1600 ktrace_free(xfs_alloc_trace_buf);
1607 xfs_free_trace_bufs(void)
1609 #ifdef XFS_DIR2_TRACE
1610 ktrace_free(xfs_dir2_trace_buf);
1612 #ifdef XFS_ATTR_TRACE
1613 ktrace_free(xfs_attr_trace_buf);
1615 #ifdef XFS_BTREE_TRACE
1616 ktrace_free(xfs_bmbt_trace_buf);
1617 ktrace_free(xfs_inobt_trace_buf);
1618 ktrace_free(xfs_allocbt_trace_buf);
1620 #ifdef XFS_BMAP_TRACE
1621 ktrace_free(xfs_bmap_trace_buf);
1623 #ifdef XFS_ALLOC_TRACE
1624 ktrace_free(xfs_alloc_trace_buf);
1629 xfs_init_zones(void)
1632 xfs_ioend_zone = kmem_zone_init(sizeof(xfs_ioend_t), "xfs_ioend");
1633 if (!xfs_ioend_zone)
1636 xfs_ioend_pool = mempool_create_slab_pool(4 * MAX_BUF_PER_PAGE,
1638 if (!xfs_ioend_pool)
1639 goto out_destroy_ioend_zone;
1641 xfs_log_ticket_zone = kmem_zone_init(sizeof(xlog_ticket_t),
1643 if (!xfs_log_ticket_zone)
1644 goto out_destroy_ioend_pool;
1646 xfs_bmap_free_item_zone = kmem_zone_init(sizeof(xfs_bmap_free_item_t),
1647 "xfs_bmap_free_item");
1648 if (!xfs_bmap_free_item_zone)
1649 goto out_destroy_log_ticket_zone;
1651 xfs_btree_cur_zone = kmem_zone_init(sizeof(xfs_btree_cur_t),
1653 if (!xfs_btree_cur_zone)
1654 goto out_destroy_bmap_free_item_zone;
1656 xfs_da_state_zone = kmem_zone_init(sizeof(xfs_da_state_t),
1658 if (!xfs_da_state_zone)
1659 goto out_destroy_btree_cur_zone;
1661 xfs_dabuf_zone = kmem_zone_init(sizeof(xfs_dabuf_t), "xfs_dabuf");
1662 if (!xfs_dabuf_zone)
1663 goto out_destroy_da_state_zone;
1665 xfs_ifork_zone = kmem_zone_init(sizeof(xfs_ifork_t), "xfs_ifork");
1666 if (!xfs_ifork_zone)
1667 goto out_destroy_dabuf_zone;
1669 xfs_trans_zone = kmem_zone_init(sizeof(xfs_trans_t), "xfs_trans");
1670 if (!xfs_trans_zone)
1671 goto out_destroy_ifork_zone;
1674 * The size of the zone allocated buf log item is the maximum
1675 * size possible under XFS. This wastes a little bit of memory,
1676 * but it is much faster.
1678 xfs_buf_item_zone = kmem_zone_init((sizeof(xfs_buf_log_item_t) +
1679 (((XFS_MAX_BLOCKSIZE / XFS_BLI_CHUNK) /
1680 NBWORD) * sizeof(int))), "xfs_buf_item");
1681 if (!xfs_buf_item_zone)
1682 goto out_destroy_trans_zone;
1684 xfs_efd_zone = kmem_zone_init((sizeof(xfs_efd_log_item_t) +
1685 ((XFS_EFD_MAX_FAST_EXTENTS - 1) *
1686 sizeof(xfs_extent_t))), "xfs_efd_item");
1688 goto out_destroy_buf_item_zone;
1690 xfs_efi_zone = kmem_zone_init((sizeof(xfs_efi_log_item_t) +
1691 ((XFS_EFI_MAX_FAST_EXTENTS - 1) *
1692 sizeof(xfs_extent_t))), "xfs_efi_item");
1694 goto out_destroy_efd_zone;
1697 kmem_zone_init_flags(sizeof(xfs_inode_t), "xfs_inode",
1698 KM_ZONE_HWALIGN | KM_ZONE_RECLAIM | KM_ZONE_SPREAD,
1699 xfs_fs_inode_init_once);
1700 if (!xfs_inode_zone)
1701 goto out_destroy_efi_zone;
1704 kmem_zone_init_flags(sizeof(xfs_inode_log_item_t), "xfs_ili",
1705 KM_ZONE_SPREAD, NULL);
1707 goto out_destroy_inode_zone;
1709 #ifdef CONFIG_XFS_POSIX_ACL
1710 xfs_acl_zone = kmem_zone_init(sizeof(xfs_acl_t), "xfs_acl");
1712 goto out_destroy_ili_zone;
1717 #ifdef CONFIG_XFS_POSIX_ACL
1718 out_destroy_ili_zone:
1720 kmem_zone_destroy(xfs_ili_zone);
1721 out_destroy_inode_zone:
1722 kmem_zone_destroy(xfs_inode_zone);
1723 out_destroy_efi_zone:
1724 kmem_zone_destroy(xfs_efi_zone);
1725 out_destroy_efd_zone:
1726 kmem_zone_destroy(xfs_efd_zone);
1727 out_destroy_buf_item_zone:
1728 kmem_zone_destroy(xfs_buf_item_zone);
1729 out_destroy_trans_zone:
1730 kmem_zone_destroy(xfs_trans_zone);
1731 out_destroy_ifork_zone:
1732 kmem_zone_destroy(xfs_ifork_zone);
1733 out_destroy_dabuf_zone:
1734 kmem_zone_destroy(xfs_dabuf_zone);
1735 out_destroy_da_state_zone:
1736 kmem_zone_destroy(xfs_da_state_zone);
1737 out_destroy_btree_cur_zone:
1738 kmem_zone_destroy(xfs_btree_cur_zone);
1739 out_destroy_bmap_free_item_zone:
1740 kmem_zone_destroy(xfs_bmap_free_item_zone);
1741 out_destroy_log_ticket_zone:
1742 kmem_zone_destroy(xfs_log_ticket_zone);
1743 out_destroy_ioend_pool:
1744 mempool_destroy(xfs_ioend_pool);
1745 out_destroy_ioend_zone:
1746 kmem_zone_destroy(xfs_ioend_zone);
1752 xfs_destroy_zones(void)
1754 #ifdef CONFIG_XFS_POSIX_ACL
1755 kmem_zone_destroy(xfs_acl_zone);
1757 kmem_zone_destroy(xfs_ili_zone);
1758 kmem_zone_destroy(xfs_inode_zone);
1759 kmem_zone_destroy(xfs_efi_zone);
1760 kmem_zone_destroy(xfs_efd_zone);
1761 kmem_zone_destroy(xfs_buf_item_zone);
1762 kmem_zone_destroy(xfs_trans_zone);
1763 kmem_zone_destroy(xfs_ifork_zone);
1764 kmem_zone_destroy(xfs_dabuf_zone);
1765 kmem_zone_destroy(xfs_da_state_zone);
1766 kmem_zone_destroy(xfs_btree_cur_zone);
1767 kmem_zone_destroy(xfs_bmap_free_item_zone);
1768 kmem_zone_destroy(xfs_log_ticket_zone);
1769 mempool_destroy(xfs_ioend_pool);
1770 kmem_zone_destroy(xfs_ioend_zone);
1779 printk(KERN_INFO XFS_VERSION_STRING " with "
1780 XFS_BUILD_OPTIONS " enabled\n");
1786 error = xfs_init_zones();
1790 error = xfs_alloc_trace_bufs();
1792 goto out_destroy_zones;
1794 error = xfs_mru_cache_init();
1796 goto out_free_trace_buffers;
1798 error = xfs_filestream_init();
1800 goto out_mru_cache_uninit;
1802 error = xfs_buf_init();
1804 goto out_filestream_uninit;
1806 error = xfs_init_procfs();
1808 goto out_buf_terminate;
1810 error = xfs_sysctl_register();
1812 goto out_cleanup_procfs;
1816 error = register_filesystem(&xfs_fs_type);
1818 goto out_sysctl_unregister;
1821 out_sysctl_unregister:
1822 xfs_sysctl_unregister();
1824 xfs_cleanup_procfs();
1826 xfs_buf_terminate();
1827 out_filestream_uninit:
1828 xfs_filestream_uninit();
1829 out_mru_cache_uninit:
1830 xfs_mru_cache_uninit();
1831 out_free_trace_buffers:
1832 xfs_free_trace_bufs();
1834 xfs_destroy_zones();
1843 unregister_filesystem(&xfs_fs_type);
1844 xfs_sysctl_unregister();
1845 xfs_cleanup_procfs();
1846 xfs_buf_terminate();
1847 xfs_filestream_uninit();
1848 xfs_mru_cache_uninit();
1849 xfs_free_trace_bufs();
1850 xfs_destroy_zones();
1854 module_init(init_xfs_fs);
1855 module_exit(exit_xfs_fs);
1857 MODULE_AUTHOR("Silicon Graphics, Inc.");
1858 MODULE_DESCRIPTION(XFS_VERSION_STRING " with " XFS_BUILD_OPTIONS " enabled");
1859 MODULE_LICENSE("GPL");