xfs: Use delayed write for inodes rather than async V2
[safe/jmp/linux-2.6] / fs / xfs / linux-2.6 / xfs_super.c
1 /*
2  * Copyright (c) 2000-2006 Silicon Graphics, Inc.
3  * All Rights Reserved.
4  *
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.
8  *
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.
13  *
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
17  */
18
19 #include "xfs.h"
20 #include "xfs_bit.h"
21 #include "xfs_log.h"
22 #include "xfs_inum.h"
23 #include "xfs_trans.h"
24 #include "xfs_sb.h"
25 #include "xfs_ag.h"
26 #include "xfs_dir2.h"
27 #include "xfs_alloc.h"
28 #include "xfs_dmapi.h"
29 #include "xfs_quota.h"
30 #include "xfs_mount.h"
31 #include "xfs_bmap_btree.h"
32 #include "xfs_alloc_btree.h"
33 #include "xfs_ialloc_btree.h"
34 #include "xfs_dir2_sf.h"
35 #include "xfs_attr_sf.h"
36 #include "xfs_dinode.h"
37 #include "xfs_inode.h"
38 #include "xfs_btree.h"
39 #include "xfs_btree_trace.h"
40 #include "xfs_ialloc.h"
41 #include "xfs_bmap.h"
42 #include "xfs_rtalloc.h"
43 #include "xfs_error.h"
44 #include "xfs_itable.h"
45 #include "xfs_fsops.h"
46 #include "xfs_rw.h"
47 #include "xfs_attr.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_extfree_item.h"
57 #include "xfs_mru_cache.h"
58 #include "xfs_inode_item.h"
59 #include "xfs_sync.h"
60 #include "xfs_trace.h"
61
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>
70
71 static const struct super_operations xfs_super_operations;
72 static kmem_zone_t *xfs_ioend_zone;
73 mempool_t *xfs_ioend_pool;
74
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
102                                          * in stat(). */
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) */
121
122 /*
123  * Table driven mount option parser.
124  *
125  * Currently only used for remount, but it will be used for mount
126  * in the future, too.
127  */
128 enum {
129         Opt_barrier, Opt_nobarrier, Opt_err
130 };
131
132 static const match_table_t tokens = {
133         {Opt_barrier, "barrier"},
134         {Opt_nobarrier, "nobarrier"},
135         {Opt_err, NULL}
136 };
137
138
139 STATIC unsigned long
140 suffix_strtoul(char *s, char **endp, unsigned int base)
141 {
142         int     last, shift_left_factor = 0;
143         char    *value = s;
144
145         last = strlen(value) - 1;
146         if (value[last] == 'K' || value[last] == 'k') {
147                 shift_left_factor = 10;
148                 value[last] = '\0';
149         }
150         if (value[last] == 'M' || value[last] == 'm') {
151                 shift_left_factor = 20;
152                 value[last] = '\0';
153         }
154         if (value[last] == 'G' || value[last] == 'g') {
155                 shift_left_factor = 30;
156                 value[last] = '\0';
157         }
158
159         return simple_strtoul((const char *)s, endp, base) << shift_left_factor;
160 }
161
162 /*
163  * This function fills in xfs_mount_t fields based on mount args.
164  * Note: the superblock has _not_ yet been read in.
165  *
166  * Note that this function leaks the various device name allocations on
167  * failure.  The caller takes care of them.
168  */
169 STATIC int
170 xfs_parseargs(
171         struct xfs_mount        *mp,
172         char                    *options,
173         char                    **mtpt)
174 {
175         struct super_block      *sb = mp->m_super;
176         char                    *this_char, *value, *eov;
177         int                     dsunit = 0;
178         int                     dswidth = 0;
179         int                     iosize = 0;
180         int                     dmapi_implies_ikeep = 1;
181         __uint8_t               iosizelog = 0;
182
183         /*
184          * Copy binary VFS mount flags we are interested in.
185          */
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;
192
193         /*
194          * Set some default flags that could be cleared by the mount option
195          * parsing.
196          */
197         mp->m_flags |= XFS_MOUNT_BARRIER;
198         mp->m_flags |= XFS_MOUNT_COMPAT_IOSIZE;
199         mp->m_flags |= XFS_MOUNT_SMALL_INUMS;
200
201         /*
202          * These can be overridden by the mount option parsing.
203          */
204         mp->m_logbufs = -1;
205         mp->m_logbsize = -1;
206
207         if (!options)
208                 goto done;
209
210         while ((this_char = strsep(&options, ",")) != NULL) {
211                 if (!*this_char)
212                         continue;
213                 if ((value = strchr(this_char, '=')) != NULL)
214                         *value++ = 0;
215
216                 if (!strcmp(this_char, MNTOPT_LOGBUFS)) {
217                         if (!value || !*value) {
218                                 cmn_err(CE_WARN,
219                                         "XFS: %s option requires an argument",
220                                         this_char);
221                                 return EINVAL;
222                         }
223                         mp->m_logbufs = simple_strtoul(value, &eov, 10);
224                 } else if (!strcmp(this_char, MNTOPT_LOGBSIZE)) {
225                         if (!value || !*value) {
226                                 cmn_err(CE_WARN,
227                                         "XFS: %s option requires an argument",
228                                         this_char);
229                                 return EINVAL;
230                         }
231                         mp->m_logbsize = suffix_strtoul(value, &eov, 10);
232                 } else if (!strcmp(this_char, MNTOPT_LOGDEV)) {
233                         if (!value || !*value) {
234                                 cmn_err(CE_WARN,
235                                         "XFS: %s option requires an argument",
236                                         this_char);
237                                 return EINVAL;
238                         }
239                         mp->m_logname = kstrndup(value, MAXNAMELEN, GFP_KERNEL);
240                         if (!mp->m_logname)
241                                 return ENOMEM;
242                 } else if (!strcmp(this_char, MNTOPT_MTPT)) {
243                         if (!value || !*value) {
244                                 cmn_err(CE_WARN,
245                                         "XFS: %s option requires an argument",
246                                         this_char);
247                                 return EINVAL;
248                         }
249                         *mtpt = kstrndup(value, MAXNAMELEN, GFP_KERNEL);
250                         if (!*mtpt)
251                                 return ENOMEM;
252                 } else if (!strcmp(this_char, MNTOPT_RTDEV)) {
253                         if (!value || !*value) {
254                                 cmn_err(CE_WARN,
255                                         "XFS: %s option requires an argument",
256                                         this_char);
257                                 return EINVAL;
258                         }
259                         mp->m_rtname = kstrndup(value, MAXNAMELEN, GFP_KERNEL);
260                         if (!mp->m_rtname)
261                                 return ENOMEM;
262                 } else if (!strcmp(this_char, MNTOPT_BIOSIZE)) {
263                         if (!value || !*value) {
264                                 cmn_err(CE_WARN,
265                                         "XFS: %s option requires an argument",
266                                         this_char);
267                                 return EINVAL;
268                         }
269                         iosize = simple_strtoul(value, &eov, 10);
270                         iosizelog = ffs(iosize) - 1;
271                 } else if (!strcmp(this_char, MNTOPT_ALLOCSIZE)) {
272                         if (!value || !*value) {
273                                 cmn_err(CE_WARN,
274                                         "XFS: %s option requires an argument",
275                                         this_char);
276                                 return EINVAL;
277                         }
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) {
298                                 cmn_err(CE_WARN,
299                                         "XFS: %s option requires an argument",
300                                         this_char);
301                                 return EINVAL;
302                         }
303                         dsunit = simple_strtoul(value, &eov, 10);
304                 } else if (!strcmp(this_char, MNTOPT_SWIDTH)) {
305                         if (!value || !*value) {
306                                 cmn_err(CE_WARN,
307                                         "XFS: %s option requires an argument",
308                                         this_char);
309                                 return EINVAL;
310                         }
311                         dswidth = simple_strtoul(value, &eov, 10);
312                 } else if (!strcmp(this_char, MNTOPT_64BITINODE)) {
313                         mp->m_flags &= ~XFS_MOUNT_SMALL_INUMS;
314 #if !XFS_BIG_INUMS
315                         cmn_err(CE_WARN,
316                                 "XFS: %s option not allowed on this system",
317                                 this_char);
318                         return EINVAL;
319 #endif
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 |
351                                          XFS_UQUOTA_ENFD);
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 |
359                                          XFS_OQUOTA_ENFD);
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 |
366                                          XFS_OQUOTA_ENFD);
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")) {
377                         cmn_err(CE_WARN,
378         "XFS: ihashsize no longer used, option is deprecated.");
379                 } else if (!strcmp(this_char, "osyncisdsync")) {
380                         /* no-op, this is now the default */
381                         cmn_err(CE_WARN,
382         "XFS: osyncisdsync is now the default, option is deprecated.");
383                 } else if (!strcmp(this_char, "irixsgid")) {
384                         cmn_err(CE_WARN,
385         "XFS: irixsgid is now a sysctl(2) variable, option is deprecated.");
386                 } else {
387                         cmn_err(CE_WARN,
388                                 "XFS: unknown mount option [%s].", this_char);
389                         return EINVAL;
390                 }
391         }
392
393         /*
394          * no recovery flag requires a read-only mount
395          */
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.");
399                 return EINVAL;
400         }
401
402         if ((mp->m_flags & XFS_MOUNT_NOALIGN) && (dsunit || dswidth)) {
403                 cmn_err(CE_WARN,
404         "XFS: sunit and swidth options incompatible with the noalign option");
405                 return EINVAL;
406         }
407
408 #ifndef CONFIG_XFS_QUOTA
409         if (XFS_IS_QUOTA_RUNNING(mp)) {
410                 cmn_err(CE_WARN,
411                         "XFS: quota support not available in this kernel.");
412                 return EINVAL;
413         }
414 #endif
415
416         if ((mp->m_qflags & (XFS_GQUOTA_ACCT | XFS_GQUOTA_ACTIVE)) &&
417             (mp->m_qflags & (XFS_PQUOTA_ACCT | XFS_PQUOTA_ACTIVE))) {
418                 cmn_err(CE_WARN,
419                         "XFS: cannot mount with both project and group quota");
420                 return EINVAL;
421         }
422
423         if ((mp->m_flags & XFS_MOUNT_DMAPI) && (!*mtpt || *mtpt[0] == '\0')) {
424                 printk("XFS: %s option needs the mount point option as well\n",
425                         MNTOPT_DMAPI);
426                 return EINVAL;
427         }
428
429         if ((dsunit && !dswidth) || (!dsunit && dswidth)) {
430                 cmn_err(CE_WARN,
431                         "XFS: sunit and swidth must be specified together");
432                 return EINVAL;
433         }
434
435         if (dsunit && (dswidth % dsunit != 0)) {
436                 cmn_err(CE_WARN,
437         "XFS: stripe width (%d) must be a multiple of the stripe unit (%d)",
438                         dswidth, dsunit);
439                 return EINVAL;
440         }
441
442         /*
443          * Applications using DMI filesystems often expect the
444          * inode generation number to be monotonically increasing.
445          * If we delete inode chunks we break this assumption, so
446          * keep unused inode chunks on disk for DMI filesystems
447          * until we come up with a better solution.
448          * Note that if "ikeep" or "noikeep" mount options are
449          * supplied, then they are honored.
450          */
451         if ((mp->m_flags & XFS_MOUNT_DMAPI) && dmapi_implies_ikeep)
452                 mp->m_flags |= XFS_MOUNT_IKEEP;
453
454 done:
455         if (!(mp->m_flags & XFS_MOUNT_NOALIGN)) {
456                 /*
457                  * At this point the superblock has not been read
458                  * in, therefore we do not know the block size.
459                  * Before the mount call ends we will convert
460                  * these to FSBs.
461                  */
462                 if (dsunit) {
463                         mp->m_dalign = dsunit;
464                         mp->m_flags |= XFS_MOUNT_RETERR;
465                 }
466
467                 if (dswidth)
468                         mp->m_swidth = dswidth;
469         }
470
471         if (mp->m_logbufs != -1 &&
472             mp->m_logbufs != 0 &&
473             (mp->m_logbufs < XLOG_MIN_ICLOGS ||
474              mp->m_logbufs > XLOG_MAX_ICLOGS)) {
475                 cmn_err(CE_WARN,
476                         "XFS: invalid logbufs value: %d [not %d-%d]",
477                         mp->m_logbufs, XLOG_MIN_ICLOGS, XLOG_MAX_ICLOGS);
478                 return XFS_ERROR(EINVAL);
479         }
480         if (mp->m_logbsize != -1 &&
481             mp->m_logbsize !=  0 &&
482             (mp->m_logbsize < XLOG_MIN_RECORD_BSIZE ||
483              mp->m_logbsize > XLOG_MAX_RECORD_BSIZE ||
484              !is_power_of_2(mp->m_logbsize))) {
485                 cmn_err(CE_WARN,
486         "XFS: invalid logbufsize: %d [not 16k,32k,64k,128k or 256k]",
487                         mp->m_logbsize);
488                 return XFS_ERROR(EINVAL);
489         }
490
491         mp->m_fsname = kstrndup(sb->s_id, MAXNAMELEN, GFP_KERNEL);
492         if (!mp->m_fsname)
493                 return ENOMEM;
494         mp->m_fsname_len = strlen(mp->m_fsname) + 1;
495
496         if (iosizelog) {
497                 if (iosizelog > XFS_MAX_IO_LOG ||
498                     iosizelog < XFS_MIN_IO_LOG) {
499                         cmn_err(CE_WARN,
500                 "XFS: invalid log iosize: %d [not %d-%d]",
501                                 iosizelog, XFS_MIN_IO_LOG,
502                                 XFS_MAX_IO_LOG);
503                         return XFS_ERROR(EINVAL);
504                 }
505
506                 mp->m_flags |= XFS_MOUNT_DFLT_IOSIZE;
507                 mp->m_readio_log = iosizelog;
508                 mp->m_writeio_log = iosizelog;
509         }
510
511         return 0;
512 }
513
514 struct proc_xfs_info {
515         int     flag;
516         char    *str;
517 };
518
519 STATIC int
520 xfs_showargs(
521         struct xfs_mount        *mp,
522         struct seq_file         *m)
523 {
524         static struct proc_xfs_info xfs_info_set[] = {
525                 /* the few simple ones we can get from the mount struct */
526                 { XFS_MOUNT_IKEEP,              "," MNTOPT_IKEEP },
527                 { XFS_MOUNT_WSYNC,              "," MNTOPT_WSYNC },
528                 { XFS_MOUNT_NOALIGN,            "," MNTOPT_NOALIGN },
529                 { XFS_MOUNT_SWALLOC,            "," MNTOPT_SWALLOC },
530                 { XFS_MOUNT_NOUUID,             "," MNTOPT_NOUUID },
531                 { XFS_MOUNT_NORECOVERY,         "," MNTOPT_NORECOVERY },
532                 { XFS_MOUNT_OSYNCISOSYNC,       "," MNTOPT_OSYNCISOSYNC },
533                 { XFS_MOUNT_ATTR2,              "," MNTOPT_ATTR2 },
534                 { XFS_MOUNT_FILESTREAMS,        "," MNTOPT_FILESTREAM },
535                 { XFS_MOUNT_DMAPI,              "," MNTOPT_DMAPI },
536                 { XFS_MOUNT_GRPID,              "," MNTOPT_GRPID },
537                 { 0, NULL }
538         };
539         static struct proc_xfs_info xfs_info_unset[] = {
540                 /* the few simple ones we can get from the mount struct */
541                 { XFS_MOUNT_COMPAT_IOSIZE,      "," MNTOPT_LARGEIO },
542                 { XFS_MOUNT_BARRIER,            "," MNTOPT_NOBARRIER },
543                 { XFS_MOUNT_SMALL_INUMS,        "," MNTOPT_64BITINODE },
544                 { 0, NULL }
545         };
546         struct proc_xfs_info    *xfs_infop;
547
548         for (xfs_infop = xfs_info_set; xfs_infop->flag; xfs_infop++) {
549                 if (mp->m_flags & xfs_infop->flag)
550                         seq_puts(m, xfs_infop->str);
551         }
552         for (xfs_infop = xfs_info_unset; xfs_infop->flag; xfs_infop++) {
553                 if (!(mp->m_flags & xfs_infop->flag))
554                         seq_puts(m, xfs_infop->str);
555         }
556
557         if (mp->m_flags & XFS_MOUNT_DFLT_IOSIZE)
558                 seq_printf(m, "," MNTOPT_ALLOCSIZE "=%dk",
559                                 (int)(1 << mp->m_writeio_log) >> 10);
560
561         if (mp->m_logbufs > 0)
562                 seq_printf(m, "," MNTOPT_LOGBUFS "=%d", mp->m_logbufs);
563         if (mp->m_logbsize > 0)
564                 seq_printf(m, "," MNTOPT_LOGBSIZE "=%dk", mp->m_logbsize >> 10);
565
566         if (mp->m_logname)
567                 seq_printf(m, "," MNTOPT_LOGDEV "=%s", mp->m_logname);
568         if (mp->m_rtname)
569                 seq_printf(m, "," MNTOPT_RTDEV "=%s", mp->m_rtname);
570
571         if (mp->m_dalign > 0)
572                 seq_printf(m, "," MNTOPT_SUNIT "=%d",
573                                 (int)XFS_FSB_TO_BB(mp, mp->m_dalign));
574         if (mp->m_swidth > 0)
575                 seq_printf(m, "," MNTOPT_SWIDTH "=%d",
576                                 (int)XFS_FSB_TO_BB(mp, mp->m_swidth));
577
578         if (mp->m_qflags & (XFS_UQUOTA_ACCT|XFS_UQUOTA_ENFD))
579                 seq_puts(m, "," MNTOPT_USRQUOTA);
580         else if (mp->m_qflags & XFS_UQUOTA_ACCT)
581                 seq_puts(m, "," MNTOPT_UQUOTANOENF);
582
583         /* Either project or group quotas can be active, not both */
584
585         if (mp->m_qflags & XFS_PQUOTA_ACCT) {
586                 if (mp->m_qflags & XFS_OQUOTA_ENFD)
587                         seq_puts(m, "," MNTOPT_PRJQUOTA);
588                 else
589                         seq_puts(m, "," MNTOPT_PQUOTANOENF);
590         } else if (mp->m_qflags & XFS_GQUOTA_ACCT) {
591                 if (mp->m_qflags & XFS_OQUOTA_ENFD)
592                         seq_puts(m, "," MNTOPT_GRPQUOTA);
593                 else
594                         seq_puts(m, "," MNTOPT_GQUOTANOENF);
595         }
596
597         if (!(mp->m_qflags & XFS_ALL_QUOTA_ACCT))
598                 seq_puts(m, "," MNTOPT_NOQUOTA);
599
600         return 0;
601 }
602 __uint64_t
603 xfs_max_file_offset(
604         unsigned int            blockshift)
605 {
606         unsigned int            pagefactor = 1;
607         unsigned int            bitshift = BITS_PER_LONG - 1;
608
609         /* Figure out maximum filesize, on Linux this can depend on
610          * the filesystem blocksize (on 32 bit platforms).
611          * __block_prepare_write does this in an [unsigned] long...
612          *      page->index << (PAGE_CACHE_SHIFT - bbits)
613          * So, for page sized blocks (4K on 32 bit platforms),
614          * this wraps at around 8Tb (hence MAX_LFS_FILESIZE which is
615          *      (((u64)PAGE_CACHE_SIZE << (BITS_PER_LONG-1))-1)
616          * but for smaller blocksizes it is less (bbits = log2 bsize).
617          * Note1: get_block_t takes a long (implicit cast from above)
618          * Note2: The Large Block Device (LBD and HAVE_SECTOR_T) patch
619          * can optionally convert the [unsigned] long from above into
620          * an [unsigned] long long.
621          */
622
623 #if BITS_PER_LONG == 32
624 # if defined(CONFIG_LBDAF)
625         ASSERT(sizeof(sector_t) == 8);
626         pagefactor = PAGE_CACHE_SIZE;
627         bitshift = BITS_PER_LONG;
628 # else
629         pagefactor = PAGE_CACHE_SIZE >> (PAGE_CACHE_SHIFT - blockshift);
630 # endif
631 #endif
632
633         return (((__uint64_t)pagefactor) << bitshift) - 1;
634 }
635
636 STATIC int
637 xfs_blkdev_get(
638         xfs_mount_t             *mp,
639         const char              *name,
640         struct block_device     **bdevp)
641 {
642         int                     error = 0;
643
644         *bdevp = open_bdev_exclusive(name, FMODE_READ|FMODE_WRITE, mp);
645         if (IS_ERR(*bdevp)) {
646                 error = PTR_ERR(*bdevp);
647                 printk("XFS: Invalid device [%s], error=%d\n", name, error);
648         }
649
650         return -error;
651 }
652
653 STATIC void
654 xfs_blkdev_put(
655         struct block_device     *bdev)
656 {
657         if (bdev)
658                 close_bdev_exclusive(bdev, FMODE_READ|FMODE_WRITE);
659 }
660
661 /*
662  * Try to write out the superblock using barriers.
663  */
664 STATIC int
665 xfs_barrier_test(
666         xfs_mount_t     *mp)
667 {
668         xfs_buf_t       *sbp = xfs_getsb(mp, 0);
669         int             error;
670
671         XFS_BUF_UNDONE(sbp);
672         XFS_BUF_UNREAD(sbp);
673         XFS_BUF_UNDELAYWRITE(sbp);
674         XFS_BUF_WRITE(sbp);
675         XFS_BUF_UNASYNC(sbp);
676         XFS_BUF_ORDERED(sbp);
677
678         xfsbdstrat(mp, sbp);
679         error = xfs_iowait(sbp);
680
681         /*
682          * Clear all the flags we set and possible error state in the
683          * buffer.  We only did the write to try out whether barriers
684          * worked and shouldn't leave any traces in the superblock
685          * buffer.
686          */
687         XFS_BUF_DONE(sbp);
688         XFS_BUF_ERROR(sbp, 0);
689         XFS_BUF_UNORDERED(sbp);
690
691         xfs_buf_relse(sbp);
692         return error;
693 }
694
695 STATIC void
696 xfs_mountfs_check_barriers(xfs_mount_t *mp)
697 {
698         int error;
699
700         if (mp->m_logdev_targp != mp->m_ddev_targp) {
701                 xfs_fs_cmn_err(CE_NOTE, mp,
702                   "Disabling barriers, not supported with external log device");
703                 mp->m_flags &= ~XFS_MOUNT_BARRIER;
704                 return;
705         }
706
707         if (xfs_readonly_buftarg(mp->m_ddev_targp)) {
708                 xfs_fs_cmn_err(CE_NOTE, mp,
709                   "Disabling barriers, underlying device is readonly");
710                 mp->m_flags &= ~XFS_MOUNT_BARRIER;
711                 return;
712         }
713
714         error = xfs_barrier_test(mp);
715         if (error) {
716                 xfs_fs_cmn_err(CE_NOTE, mp,
717                   "Disabling barriers, trial barrier write failed");
718                 mp->m_flags &= ~XFS_MOUNT_BARRIER;
719                 return;
720         }
721 }
722
723 void
724 xfs_blkdev_issue_flush(
725         xfs_buftarg_t           *buftarg)
726 {
727         blkdev_issue_flush(buftarg->bt_bdev, NULL);
728 }
729
730 STATIC void
731 xfs_close_devices(
732         struct xfs_mount        *mp)
733 {
734         if (mp->m_logdev_targp && mp->m_logdev_targp != mp->m_ddev_targp) {
735                 struct block_device *logdev = mp->m_logdev_targp->bt_bdev;
736                 xfs_free_buftarg(mp, mp->m_logdev_targp);
737                 xfs_blkdev_put(logdev);
738         }
739         if (mp->m_rtdev_targp) {
740                 struct block_device *rtdev = mp->m_rtdev_targp->bt_bdev;
741                 xfs_free_buftarg(mp, mp->m_rtdev_targp);
742                 xfs_blkdev_put(rtdev);
743         }
744         xfs_free_buftarg(mp, mp->m_ddev_targp);
745 }
746
747 /*
748  * The file system configurations are:
749  *      (1) device (partition) with data and internal log
750  *      (2) logical volume with data and log subvolumes.
751  *      (3) logical volume with data, log, and realtime subvolumes.
752  *
753  * We only have to handle opening the log and realtime volumes here if
754  * they are present.  The data subvolume has already been opened by
755  * get_sb_bdev() and is stored in sb->s_bdev.
756  */
757 STATIC int
758 xfs_open_devices(
759         struct xfs_mount        *mp)
760 {
761         struct block_device     *ddev = mp->m_super->s_bdev;
762         struct block_device     *logdev = NULL, *rtdev = NULL;
763         int                     error;
764
765         /*
766          * Open real time and log devices - order is important.
767          */
768         if (mp->m_logname) {
769                 error = xfs_blkdev_get(mp, mp->m_logname, &logdev);
770                 if (error)
771                         goto out;
772         }
773
774         if (mp->m_rtname) {
775                 error = xfs_blkdev_get(mp, mp->m_rtname, &rtdev);
776                 if (error)
777                         goto out_close_logdev;
778
779                 if (rtdev == ddev || rtdev == logdev) {
780                         cmn_err(CE_WARN,
781         "XFS: Cannot mount filesystem with identical rtdev and ddev/logdev.");
782                         error = EINVAL;
783                         goto out_close_rtdev;
784                 }
785         }
786
787         /*
788          * Setup xfs_mount buffer target pointers
789          */
790         error = ENOMEM;
791         mp->m_ddev_targp = xfs_alloc_buftarg(ddev, 0);
792         if (!mp->m_ddev_targp)
793                 goto out_close_rtdev;
794
795         if (rtdev) {
796                 mp->m_rtdev_targp = xfs_alloc_buftarg(rtdev, 1);
797                 if (!mp->m_rtdev_targp)
798                         goto out_free_ddev_targ;
799         }
800
801         if (logdev && logdev != ddev) {
802                 mp->m_logdev_targp = xfs_alloc_buftarg(logdev, 1);
803                 if (!mp->m_logdev_targp)
804                         goto out_free_rtdev_targ;
805         } else {
806                 mp->m_logdev_targp = mp->m_ddev_targp;
807         }
808
809         return 0;
810
811  out_free_rtdev_targ:
812         if (mp->m_rtdev_targp)
813                 xfs_free_buftarg(mp, mp->m_rtdev_targp);
814  out_free_ddev_targ:
815         xfs_free_buftarg(mp, mp->m_ddev_targp);
816  out_close_rtdev:
817         if (rtdev)
818                 xfs_blkdev_put(rtdev);
819  out_close_logdev:
820         if (logdev && logdev != ddev)
821                 xfs_blkdev_put(logdev);
822  out:
823         return error;
824 }
825
826 /*
827  * Setup xfs_mount buffer target pointers based on superblock
828  */
829 STATIC int
830 xfs_setup_devices(
831         struct xfs_mount        *mp)
832 {
833         int                     error;
834
835         error = xfs_setsize_buftarg(mp->m_ddev_targp, mp->m_sb.sb_blocksize,
836                                     mp->m_sb.sb_sectsize);
837         if (error)
838                 return error;
839
840         if (mp->m_logdev_targp && mp->m_logdev_targp != mp->m_ddev_targp) {
841                 unsigned int    log_sector_size = BBSIZE;
842
843                 if (xfs_sb_version_hassector(&mp->m_sb))
844                         log_sector_size = mp->m_sb.sb_logsectsize;
845                 error = xfs_setsize_buftarg(mp->m_logdev_targp,
846                                             mp->m_sb.sb_blocksize,
847                                             log_sector_size);
848                 if (error)
849                         return error;
850         }
851         if (mp->m_rtdev_targp) {
852                 error = xfs_setsize_buftarg(mp->m_rtdev_targp,
853                                             mp->m_sb.sb_blocksize,
854                                             mp->m_sb.sb_sectsize);
855                 if (error)
856                         return error;
857         }
858
859         return 0;
860 }
861
862 /*
863  * XFS AIL push thread support
864  */
865 void
866 xfsaild_wakeup(
867         struct xfs_ail          *ailp,
868         xfs_lsn_t               threshold_lsn)
869 {
870         ailp->xa_target = threshold_lsn;
871         wake_up_process(ailp->xa_task);
872 }
873
874 STATIC int
875 xfsaild(
876         void    *data)
877 {
878         struct xfs_ail  *ailp = data;
879         xfs_lsn_t       last_pushed_lsn = 0;
880         long            tout = 0; /* milliseconds */
881
882         while (!kthread_should_stop()) {
883                 schedule_timeout_interruptible(tout ?
884                                 msecs_to_jiffies(tout) : MAX_SCHEDULE_TIMEOUT);
885
886                 /* swsusp */
887                 try_to_freeze();
888
889                 ASSERT(ailp->xa_mount->m_log);
890                 if (XFS_FORCED_SHUTDOWN(ailp->xa_mount))
891                         continue;
892
893                 tout = xfsaild_push(ailp, &last_pushed_lsn);
894         }
895
896         return 0;
897 }       /* xfsaild */
898
899 int
900 xfsaild_start(
901         struct xfs_ail  *ailp)
902 {
903         ailp->xa_target = 0;
904         ailp->xa_task = kthread_run(xfsaild, ailp, "xfsaild");
905         if (IS_ERR(ailp->xa_task))
906                 return -PTR_ERR(ailp->xa_task);
907         return 0;
908 }
909
910 void
911 xfsaild_stop(
912         struct xfs_ail  *ailp)
913 {
914         kthread_stop(ailp->xa_task);
915 }
916
917
918 /* Catch misguided souls that try to use this interface on XFS */
919 STATIC struct inode *
920 xfs_fs_alloc_inode(
921         struct super_block      *sb)
922 {
923         BUG();
924         return NULL;
925 }
926
927 /*
928  * Now that the generic code is guaranteed not to be accessing
929  * the linux inode, we can reclaim the inode.
930  */
931 STATIC void
932 xfs_fs_destroy_inode(
933         struct inode            *inode)
934 {
935         struct xfs_inode        *ip = XFS_I(inode);
936
937         xfs_itrace_entry(ip);
938
939         XFS_STATS_INC(vn_reclaim);
940
941         /* bad inode, get out here ASAP */
942         if (is_bad_inode(inode))
943                 goto out_reclaim;
944
945         xfs_ioend_wait(ip);
946
947         ASSERT(XFS_FORCED_SHUTDOWN(ip->i_mount) || ip->i_delayed_blks == 0);
948
949         /*
950          * We should never get here with one of the reclaim flags already set.
951          */
952         ASSERT_ALWAYS(!xfs_iflags_test(ip, XFS_IRECLAIMABLE));
953         ASSERT_ALWAYS(!xfs_iflags_test(ip, XFS_IRECLAIM));
954
955         /*
956          * We always use background reclaim here because even if the
957          * inode is clean, it still may be under IO and hence we have
958          * to take the flush lock. The background reclaim path handles
959          * this more efficiently than we can here, so simply let background
960          * reclaim tear down all inodes.
961          */
962 out_reclaim:
963         xfs_inode_set_reclaim_tag(ip);
964 }
965
966 /*
967  * Slab object creation initialisation for the XFS inode.
968  * This covers only the idempotent fields in the XFS inode;
969  * all other fields need to be initialised on allocation
970  * from the slab. This avoids the need to repeatedly intialise
971  * fields in the xfs inode that left in the initialise state
972  * when freeing the inode.
973  */
974 STATIC void
975 xfs_fs_inode_init_once(
976         void                    *inode)
977 {
978         struct xfs_inode        *ip = inode;
979
980         memset(ip, 0, sizeof(struct xfs_inode));
981
982         /* vfs inode */
983         inode_init_once(VFS_I(ip));
984
985         /* xfs inode */
986         atomic_set(&ip->i_iocount, 0);
987         atomic_set(&ip->i_pincount, 0);
988         spin_lock_init(&ip->i_flags_lock);
989         init_waitqueue_head(&ip->i_ipin_wait);
990         /*
991          * Because we want to use a counting completion, complete
992          * the flush completion once to allow a single access to
993          * the flush completion without blocking.
994          */
995         init_completion(&ip->i_flush);
996         complete(&ip->i_flush);
997
998         mrlock_init(&ip->i_lock, MRLOCK_ALLOW_EQUAL_PRI|MRLOCK_BARRIER,
999                      "xfsino", ip->i_ino);
1000 }
1001
1002 /*
1003  * Dirty the XFS inode when mark_inode_dirty_sync() is called so that
1004  * we catch unlogged VFS level updates to the inode. Care must be taken
1005  * here - the transaction code calls mark_inode_dirty_sync() to mark the
1006  * VFS inode dirty in a transaction and clears the i_update_core field;
1007  * it must clear the field after calling mark_inode_dirty_sync() to
1008  * correctly indicate that the dirty state has been propagated into the
1009  * inode log item.
1010  *
1011  * We need the barrier() to maintain correct ordering between unlogged
1012  * updates and the transaction commit code that clears the i_update_core
1013  * field. This requires all updates to be completed before marking the
1014  * inode dirty.
1015  */
1016 STATIC void
1017 xfs_fs_dirty_inode(
1018         struct inode    *inode)
1019 {
1020         barrier();
1021         XFS_I(inode)->i_update_core = 1;
1022 }
1023
1024 /*
1025  * Attempt to flush the inode, this will actually fail
1026  * if the inode is pinned, but we dirty the inode again
1027  * at the point when it is unpinned after a log write,
1028  * since this is when the inode itself becomes flushable.
1029  */
1030 STATIC int
1031 xfs_fs_write_inode(
1032         struct inode            *inode,
1033         int                     sync)
1034 {
1035         struct xfs_inode        *ip = XFS_I(inode);
1036         struct xfs_mount        *mp = ip->i_mount;
1037         int                     error = 0;
1038
1039         xfs_itrace_entry(ip);
1040
1041         if (XFS_FORCED_SHUTDOWN(mp))
1042                 return XFS_ERROR(EIO);
1043
1044         if (sync) {
1045                 error = xfs_wait_on_pages(ip, 0, -1);
1046                 if (error)
1047                         goto out;
1048         }
1049
1050         /*
1051          * Bypass inodes which have already been cleaned by
1052          * the inode flush clustering code inside xfs_iflush
1053          */
1054         if (xfs_inode_clean(ip))
1055                 goto out;
1056
1057         /*
1058          * We make this non-blocking if the inode is contended, return
1059          * EAGAIN to indicate to the caller that they did not succeed.
1060          * This prevents the flush path from blocking on inodes inside
1061          * another operation right now, they get caught later by xfs_sync.
1062          */
1063         if (sync) {
1064                 xfs_ilock(ip, XFS_ILOCK_SHARED);
1065                 xfs_iflock(ip);
1066
1067                 error = xfs_iflush(ip, SYNC_WAIT);
1068         } else {
1069                 error = EAGAIN;
1070                 if (!xfs_ilock_nowait(ip, XFS_ILOCK_SHARED))
1071                         goto out;
1072                 if (xfs_ipincount(ip) || !xfs_iflock_nowait(ip))
1073                         goto out_unlock;
1074
1075                 error = xfs_iflush(ip, 0);
1076         }
1077
1078  out_unlock:
1079         xfs_iunlock(ip, XFS_ILOCK_SHARED);
1080  out:
1081         /*
1082          * if we failed to write out the inode then mark
1083          * it dirty again so we'll try again later.
1084          */
1085         if (error)
1086                 xfs_mark_inode_dirty_sync(ip);
1087         return -error;
1088 }
1089
1090 STATIC void
1091 xfs_fs_clear_inode(
1092         struct inode            *inode)
1093 {
1094         xfs_inode_t             *ip = XFS_I(inode);
1095
1096         xfs_itrace_entry(ip);
1097         XFS_STATS_INC(vn_rele);
1098         XFS_STATS_INC(vn_remove);
1099         XFS_STATS_DEC(vn_active);
1100
1101         /*
1102          * The iolock is used by the file system to coordinate reads,
1103          * writes, and block truncates.  Up to this point the lock
1104          * protected concurrent accesses by users of the inode.  But
1105          * from here forward we're doing some final processing of the
1106          * inode because we're done with it, and although we reuse the
1107          * iolock for protection it is really a distinct lock class
1108          * (in the lockdep sense) from before.  To keep lockdep happy
1109          * (and basically indicate what we are doing), we explicitly
1110          * re-init the iolock here.
1111          */
1112         ASSERT(!rwsem_is_locked(&ip->i_iolock.mr_lock));
1113         mrlock_init(&ip->i_iolock, MRLOCK_BARRIER, "xfsio", ip->i_ino);
1114
1115         xfs_inactive(ip);
1116 }
1117
1118 STATIC void
1119 xfs_free_fsname(
1120         struct xfs_mount        *mp)
1121 {
1122         kfree(mp->m_fsname);
1123         kfree(mp->m_rtname);
1124         kfree(mp->m_logname);
1125 }
1126
1127 STATIC void
1128 xfs_fs_put_super(
1129         struct super_block      *sb)
1130 {
1131         struct xfs_mount        *mp = XFS_M(sb);
1132
1133         xfs_syncd_stop(mp);
1134
1135         if (!(sb->s_flags & MS_RDONLY)) {
1136                 /*
1137                  * XXX(hch): this should be SYNC_WAIT.
1138                  *
1139                  * Or more likely not needed at all because the VFS is already
1140                  * calling ->sync_fs after shutting down all filestem
1141                  * operations and just before calling ->put_super.
1142                  */
1143                 xfs_sync_data(mp, 0);
1144                 xfs_sync_attr(mp, 0);
1145         }
1146
1147         XFS_SEND_PREUNMOUNT(mp);
1148
1149         /*
1150          * Blow away any referenced inode in the filestreams cache.
1151          * This can and will cause log traffic as inodes go inactive
1152          * here.
1153          */
1154         xfs_filestream_unmount(mp);
1155
1156         XFS_bflush(mp->m_ddev_targp);
1157
1158         XFS_SEND_UNMOUNT(mp);
1159
1160         xfs_unmountfs(mp);
1161         xfs_freesb(mp);
1162         xfs_icsb_destroy_counters(mp);
1163         xfs_close_devices(mp);
1164         xfs_dmops_put(mp);
1165         xfs_free_fsname(mp);
1166         kfree(mp);
1167 }
1168
1169 STATIC int
1170 xfs_fs_sync_fs(
1171         struct super_block      *sb,
1172         int                     wait)
1173 {
1174         struct xfs_mount        *mp = XFS_M(sb);
1175         int                     error;
1176
1177         /*
1178          * Not much we can do for the first async pass.  Writing out the
1179          * superblock would be counter-productive as we are going to redirty
1180          * when writing out other data and metadata (and writing out a single
1181          * block is quite fast anyway).
1182          *
1183          * Try to asynchronously kick off quota syncing at least.
1184          */
1185         if (!wait) {
1186                 xfs_qm_sync(mp, SYNC_TRYLOCK);
1187                 return 0;
1188         }
1189
1190         error = xfs_quiesce_data(mp);
1191         if (error)
1192                 return -error;
1193
1194         if (laptop_mode) {
1195                 int     prev_sync_seq = mp->m_sync_seq;
1196
1197                 /*
1198                  * The disk must be active because we're syncing.
1199                  * We schedule xfssyncd now (now that the disk is
1200                  * active) instead of later (when it might not be).
1201                  */
1202                 wake_up_process(mp->m_sync_task);
1203                 /*
1204                  * We have to wait for the sync iteration to complete.
1205                  * If we don't, the disk activity caused by the sync
1206                  * will come after the sync is completed, and that
1207                  * triggers another sync from laptop mode.
1208                  */
1209                 wait_event(mp->m_wait_single_sync_task,
1210                                 mp->m_sync_seq != prev_sync_seq);
1211         }
1212
1213         return 0;
1214 }
1215
1216 STATIC int
1217 xfs_fs_statfs(
1218         struct dentry           *dentry,
1219         struct kstatfs          *statp)
1220 {
1221         struct xfs_mount        *mp = XFS_M(dentry->d_sb);
1222         xfs_sb_t                *sbp = &mp->m_sb;
1223         struct xfs_inode        *ip = XFS_I(dentry->d_inode);
1224         __uint64_t              fakeinos, id;
1225         xfs_extlen_t            lsize;
1226
1227         statp->f_type = XFS_SB_MAGIC;
1228         statp->f_namelen = MAXNAMELEN - 1;
1229
1230         id = huge_encode_dev(mp->m_ddev_targp->bt_dev);
1231         statp->f_fsid.val[0] = (u32)id;
1232         statp->f_fsid.val[1] = (u32)(id >> 32);
1233
1234         xfs_icsb_sync_counters(mp, XFS_ICSB_LAZY_COUNT);
1235
1236         spin_lock(&mp->m_sb_lock);
1237         statp->f_bsize = sbp->sb_blocksize;
1238         lsize = sbp->sb_logstart ? sbp->sb_logblocks : 0;
1239         statp->f_blocks = sbp->sb_dblocks - lsize;
1240         statp->f_bfree = statp->f_bavail =
1241                                 sbp->sb_fdblocks - XFS_ALLOC_SET_ASIDE(mp);
1242         fakeinos = statp->f_bfree << sbp->sb_inopblog;
1243         statp->f_files =
1244             MIN(sbp->sb_icount + fakeinos, (__uint64_t)XFS_MAXINUMBER);
1245         if (mp->m_maxicount)
1246                 statp->f_files = min_t(typeof(statp->f_files),
1247                                         statp->f_files,
1248                                         mp->m_maxicount);
1249         statp->f_ffree = statp->f_files - (sbp->sb_icount - sbp->sb_ifree);
1250         spin_unlock(&mp->m_sb_lock);
1251
1252         if ((ip->i_d.di_flags & XFS_DIFLAG_PROJINHERIT) ||
1253             ((mp->m_qflags & (XFS_PQUOTA_ACCT|XFS_OQUOTA_ENFD))) ==
1254                               (XFS_PQUOTA_ACCT|XFS_OQUOTA_ENFD))
1255                 xfs_qm_statvfs(ip, statp);
1256         return 0;
1257 }
1258
1259 STATIC void
1260 xfs_save_resvblks(struct xfs_mount *mp)
1261 {
1262         __uint64_t resblks = 0;
1263
1264         mp->m_resblks_save = mp->m_resblks;
1265         xfs_reserve_blocks(mp, &resblks, NULL);
1266 }
1267
1268 STATIC void
1269 xfs_restore_resvblks(struct xfs_mount *mp)
1270 {
1271         __uint64_t resblks;
1272
1273         if (mp->m_resblks_save) {
1274                 resblks = mp->m_resblks_save;
1275                 mp->m_resblks_save = 0;
1276         } else
1277                 resblks = xfs_default_resblks(mp);
1278
1279         xfs_reserve_blocks(mp, &resblks, NULL);
1280 }
1281
1282 STATIC int
1283 xfs_fs_remount(
1284         struct super_block      *sb,
1285         int                     *flags,
1286         char                    *options)
1287 {
1288         struct xfs_mount        *mp = XFS_M(sb);
1289         substring_t             args[MAX_OPT_ARGS];
1290         char                    *p;
1291         int                     error;
1292
1293         while ((p = strsep(&options, ",")) != NULL) {
1294                 int token;
1295
1296                 if (!*p)
1297                         continue;
1298
1299                 token = match_token(p, tokens, args);
1300                 switch (token) {
1301                 case Opt_barrier:
1302                         mp->m_flags |= XFS_MOUNT_BARRIER;
1303
1304                         /*
1305                          * Test if barriers are actually working if we can,
1306                          * else delay this check until the filesystem is
1307                          * marked writeable.
1308                          */
1309                         if (!(mp->m_flags & XFS_MOUNT_RDONLY))
1310                                 xfs_mountfs_check_barriers(mp);
1311                         break;
1312                 case Opt_nobarrier:
1313                         mp->m_flags &= ~XFS_MOUNT_BARRIER;
1314                         break;
1315                 default:
1316                         /*
1317                          * Logically we would return an error here to prevent
1318                          * users from believing they might have changed
1319                          * mount options using remount which can't be changed.
1320                          *
1321                          * But unfortunately mount(8) adds all options from
1322                          * mtab and fstab to the mount arguments in some cases
1323                          * so we can't blindly reject options, but have to
1324                          * check for each specified option if it actually
1325                          * differs from the currently set option and only
1326                          * reject it if that's the case.
1327                          *
1328                          * Until that is implemented we return success for
1329                          * every remount request, and silently ignore all
1330                          * options that we can't actually change.
1331                          */
1332 #if 0
1333                         printk(KERN_INFO
1334         "XFS: mount option \"%s\" not supported for remount\n", p);
1335                         return -EINVAL;
1336 #else
1337                         break;
1338 #endif
1339                 }
1340         }
1341
1342         /* ro -> rw */
1343         if ((mp->m_flags & XFS_MOUNT_RDONLY) && !(*flags & MS_RDONLY)) {
1344                 mp->m_flags &= ~XFS_MOUNT_RDONLY;
1345                 if (mp->m_flags & XFS_MOUNT_BARRIER)
1346                         xfs_mountfs_check_barriers(mp);
1347
1348                 /*
1349                  * If this is the first remount to writeable state we
1350                  * might have some superblock changes to update.
1351                  */
1352                 if (mp->m_update_flags) {
1353                         error = xfs_mount_log_sb(mp, mp->m_update_flags);
1354                         if (error) {
1355                                 cmn_err(CE_WARN,
1356                                         "XFS: failed to write sb changes");
1357                                 return error;
1358                         }
1359                         mp->m_update_flags = 0;
1360                 }
1361
1362                 /*
1363                  * Fill out the reserve pool if it is empty. Use the stashed
1364                  * value if it is non-zero, otherwise go with the default.
1365                  */
1366                 xfs_restore_resvblks(mp);
1367         }
1368
1369         /* rw -> ro */
1370         if (!(mp->m_flags & XFS_MOUNT_RDONLY) && (*flags & MS_RDONLY)) {
1371                 /*
1372                  * After we have synced the data but before we sync the
1373                  * metadata, we need to free up the reserve block pool so that
1374                  * the used block count in the superblock on disk is correct at
1375                  * the end of the remount. Stash the current reserve pool size
1376                  * so that if we get remounted rw, we can return it to the same
1377                  * size.
1378                  */
1379
1380                 xfs_quiesce_data(mp);
1381                 xfs_save_resvblks(mp);
1382                 xfs_quiesce_attr(mp);
1383                 mp->m_flags |= XFS_MOUNT_RDONLY;
1384         }
1385
1386         return 0;
1387 }
1388
1389 /*
1390  * Second stage of a freeze. The data is already frozen so we only
1391  * need to take care of the metadata. Once that's done write a dummy
1392  * record to dirty the log in case of a crash while frozen.
1393  */
1394 STATIC int
1395 xfs_fs_freeze(
1396         struct super_block      *sb)
1397 {
1398         struct xfs_mount        *mp = XFS_M(sb);
1399
1400         xfs_save_resvblks(mp);
1401         xfs_quiesce_attr(mp);
1402         return -xfs_fs_log_dummy(mp);
1403 }
1404
1405 STATIC int
1406 xfs_fs_unfreeze(
1407         struct super_block      *sb)
1408 {
1409         struct xfs_mount        *mp = XFS_M(sb);
1410
1411         xfs_restore_resvblks(mp);
1412         return 0;
1413 }
1414
1415 STATIC int
1416 xfs_fs_show_options(
1417         struct seq_file         *m,
1418         struct vfsmount         *mnt)
1419 {
1420         return -xfs_showargs(XFS_M(mnt->mnt_sb), m);
1421 }
1422
1423 /*
1424  * This function fills in xfs_mount_t fields based on mount args.
1425  * Note: the superblock _has_ now been read in.
1426  */
1427 STATIC int
1428 xfs_finish_flags(
1429         struct xfs_mount        *mp)
1430 {
1431         int                     ronly = (mp->m_flags & XFS_MOUNT_RDONLY);
1432
1433         /* Fail a mount where the logbuf is smaller than the log stripe */
1434         if (xfs_sb_version_haslogv2(&mp->m_sb)) {
1435                 if (mp->m_logbsize <= 0 &&
1436                     mp->m_sb.sb_logsunit > XLOG_BIG_RECORD_BSIZE) {
1437                         mp->m_logbsize = mp->m_sb.sb_logsunit;
1438                 } else if (mp->m_logbsize > 0 &&
1439                            mp->m_logbsize < mp->m_sb.sb_logsunit) {
1440                         cmn_err(CE_WARN,
1441         "XFS: logbuf size must be greater than or equal to log stripe size");
1442                         return XFS_ERROR(EINVAL);
1443                 }
1444         } else {
1445                 /* Fail a mount if the logbuf is larger than 32K */
1446                 if (mp->m_logbsize > XLOG_BIG_RECORD_BSIZE) {
1447                         cmn_err(CE_WARN,
1448         "XFS: logbuf size for version 1 logs must be 16K or 32K");
1449                         return XFS_ERROR(EINVAL);
1450                 }
1451         }
1452
1453         /*
1454          * mkfs'ed attr2 will turn on attr2 mount unless explicitly
1455          * told by noattr2 to turn it off
1456          */
1457         if (xfs_sb_version_hasattr2(&mp->m_sb) &&
1458             !(mp->m_flags & XFS_MOUNT_NOATTR2))
1459                 mp->m_flags |= XFS_MOUNT_ATTR2;
1460
1461         /*
1462          * prohibit r/w mounts of read-only filesystems
1463          */
1464         if ((mp->m_sb.sb_flags & XFS_SBF_READONLY) && !ronly) {
1465                 cmn_err(CE_WARN,
1466         "XFS: cannot mount a read-only filesystem as read-write");
1467                 return XFS_ERROR(EROFS);
1468         }
1469
1470         return 0;
1471 }
1472
1473 STATIC int
1474 xfs_fs_fill_super(
1475         struct super_block      *sb,
1476         void                    *data,
1477         int                     silent)
1478 {
1479         struct inode            *root;
1480         struct xfs_mount        *mp = NULL;
1481         int                     flags = 0, error = ENOMEM;
1482         char                    *mtpt = NULL;
1483
1484         mp = kzalloc(sizeof(struct xfs_mount), GFP_KERNEL);
1485         if (!mp)
1486                 goto out;
1487
1488         spin_lock_init(&mp->m_sb_lock);
1489         mutex_init(&mp->m_growlock);
1490         atomic_set(&mp->m_active_trans, 0);
1491         INIT_LIST_HEAD(&mp->m_sync_list);
1492         spin_lock_init(&mp->m_sync_lock);
1493         init_waitqueue_head(&mp->m_wait_single_sync_task);
1494
1495         mp->m_super = sb;
1496         sb->s_fs_info = mp;
1497
1498         error = xfs_parseargs(mp, (char *)data, &mtpt);
1499         if (error)
1500                 goto out_free_fsname;
1501
1502         sb_min_blocksize(sb, BBSIZE);
1503         sb->s_xattr = xfs_xattr_handlers;
1504         sb->s_export_op = &xfs_export_operations;
1505 #ifdef CONFIG_XFS_QUOTA
1506         sb->s_qcop = &xfs_quotactl_operations;
1507 #endif
1508         sb->s_op = &xfs_super_operations;
1509
1510         error = xfs_dmops_get(mp);
1511         if (error)
1512                 goto out_free_fsname;
1513
1514         if (silent)
1515                 flags |= XFS_MFSI_QUIET;
1516
1517         error = xfs_open_devices(mp);
1518         if (error)
1519                 goto out_put_dmops;
1520
1521         if (xfs_icsb_init_counters(mp))
1522                 mp->m_flags |= XFS_MOUNT_NO_PERCPU_SB;
1523
1524         error = xfs_readsb(mp, flags);
1525         if (error)
1526                 goto out_destroy_counters;
1527
1528         error = xfs_finish_flags(mp);
1529         if (error)
1530                 goto out_free_sb;
1531
1532         error = xfs_setup_devices(mp);
1533         if (error)
1534                 goto out_free_sb;
1535
1536         if (mp->m_flags & XFS_MOUNT_BARRIER)
1537                 xfs_mountfs_check_barriers(mp);
1538
1539         error = xfs_filestream_mount(mp);
1540         if (error)
1541                 goto out_free_sb;
1542
1543         error = xfs_mountfs(mp);
1544         if (error)
1545                 goto out_filestream_unmount;
1546
1547         XFS_SEND_MOUNT(mp, DM_RIGHT_NULL, mtpt, mp->m_fsname);
1548
1549         sb->s_magic = XFS_SB_MAGIC;
1550         sb->s_blocksize = mp->m_sb.sb_blocksize;
1551         sb->s_blocksize_bits = ffs(sb->s_blocksize) - 1;
1552         sb->s_maxbytes = xfs_max_file_offset(sb->s_blocksize_bits);
1553         sb->s_time_gran = 1;
1554         set_posix_acl_flag(sb);
1555
1556         root = igrab(VFS_I(mp->m_rootip));
1557         if (!root) {
1558                 error = ENOENT;
1559                 goto fail_unmount;
1560         }
1561         if (is_bad_inode(root)) {
1562                 error = EINVAL;
1563                 goto fail_vnrele;
1564         }
1565         sb->s_root = d_alloc_root(root);
1566         if (!sb->s_root) {
1567                 error = ENOMEM;
1568                 goto fail_vnrele;
1569         }
1570
1571         error = xfs_syncd_init(mp);
1572         if (error)
1573                 goto fail_vnrele;
1574
1575         kfree(mtpt);
1576         return 0;
1577
1578  out_filestream_unmount:
1579         xfs_filestream_unmount(mp);
1580  out_free_sb:
1581         xfs_freesb(mp);
1582  out_destroy_counters:
1583         xfs_icsb_destroy_counters(mp);
1584         xfs_close_devices(mp);
1585  out_put_dmops:
1586         xfs_dmops_put(mp);
1587  out_free_fsname:
1588         xfs_free_fsname(mp);
1589         kfree(mtpt);
1590         kfree(mp);
1591  out:
1592         return -error;
1593
1594  fail_vnrele:
1595         if (sb->s_root) {
1596                 dput(sb->s_root);
1597                 sb->s_root = NULL;
1598         } else {
1599                 iput(root);
1600         }
1601
1602  fail_unmount:
1603         /*
1604          * Blow away any referenced inode in the filestreams cache.
1605          * This can and will cause log traffic as inodes go inactive
1606          * here.
1607          */
1608         xfs_filestream_unmount(mp);
1609
1610         XFS_bflush(mp->m_ddev_targp);
1611
1612         xfs_unmountfs(mp);
1613         goto out_free_sb;
1614 }
1615
1616 STATIC int
1617 xfs_fs_get_sb(
1618         struct file_system_type *fs_type,
1619         int                     flags,
1620         const char              *dev_name,
1621         void                    *data,
1622         struct vfsmount         *mnt)
1623 {
1624         return get_sb_bdev(fs_type, flags, dev_name, data, xfs_fs_fill_super,
1625                            mnt);
1626 }
1627
1628 static const struct super_operations xfs_super_operations = {
1629         .alloc_inode            = xfs_fs_alloc_inode,
1630         .destroy_inode          = xfs_fs_destroy_inode,
1631         .dirty_inode            = xfs_fs_dirty_inode,
1632         .write_inode            = xfs_fs_write_inode,
1633         .clear_inode            = xfs_fs_clear_inode,
1634         .put_super              = xfs_fs_put_super,
1635         .sync_fs                = xfs_fs_sync_fs,
1636         .freeze_fs              = xfs_fs_freeze,
1637         .unfreeze_fs            = xfs_fs_unfreeze,
1638         .statfs                 = xfs_fs_statfs,
1639         .remount_fs             = xfs_fs_remount,
1640         .show_options           = xfs_fs_show_options,
1641 };
1642
1643 static struct file_system_type xfs_fs_type = {
1644         .owner                  = THIS_MODULE,
1645         .name                   = "xfs",
1646         .get_sb                 = xfs_fs_get_sb,
1647         .kill_sb                = kill_block_super,
1648         .fs_flags               = FS_REQUIRES_DEV,
1649 };
1650
1651 STATIC int __init
1652 xfs_init_zones(void)
1653 {
1654
1655         xfs_ioend_zone = kmem_zone_init(sizeof(xfs_ioend_t), "xfs_ioend");
1656         if (!xfs_ioend_zone)
1657                 goto out;
1658
1659         xfs_ioend_pool = mempool_create_slab_pool(4 * MAX_BUF_PER_PAGE,
1660                                                   xfs_ioend_zone);
1661         if (!xfs_ioend_pool)
1662                 goto out_destroy_ioend_zone;
1663
1664         xfs_log_ticket_zone = kmem_zone_init(sizeof(xlog_ticket_t),
1665                                                 "xfs_log_ticket");
1666         if (!xfs_log_ticket_zone)
1667                 goto out_destroy_ioend_pool;
1668
1669         xfs_bmap_free_item_zone = kmem_zone_init(sizeof(xfs_bmap_free_item_t),
1670                                                 "xfs_bmap_free_item");
1671         if (!xfs_bmap_free_item_zone)
1672                 goto out_destroy_log_ticket_zone;
1673
1674         xfs_btree_cur_zone = kmem_zone_init(sizeof(xfs_btree_cur_t),
1675                                                 "xfs_btree_cur");
1676         if (!xfs_btree_cur_zone)
1677                 goto out_destroy_bmap_free_item_zone;
1678
1679         xfs_da_state_zone = kmem_zone_init(sizeof(xfs_da_state_t),
1680                                                 "xfs_da_state");
1681         if (!xfs_da_state_zone)
1682                 goto out_destroy_btree_cur_zone;
1683
1684         xfs_dabuf_zone = kmem_zone_init(sizeof(xfs_dabuf_t), "xfs_dabuf");
1685         if (!xfs_dabuf_zone)
1686                 goto out_destroy_da_state_zone;
1687
1688         xfs_ifork_zone = kmem_zone_init(sizeof(xfs_ifork_t), "xfs_ifork");
1689         if (!xfs_ifork_zone)
1690                 goto out_destroy_dabuf_zone;
1691
1692         xfs_trans_zone = kmem_zone_init(sizeof(xfs_trans_t), "xfs_trans");
1693         if (!xfs_trans_zone)
1694                 goto out_destroy_ifork_zone;
1695
1696         /*
1697          * The size of the zone allocated buf log item is the maximum
1698          * size possible under XFS.  This wastes a little bit of memory,
1699          * but it is much faster.
1700          */
1701         xfs_buf_item_zone = kmem_zone_init((sizeof(xfs_buf_log_item_t) +
1702                                 (((XFS_MAX_BLOCKSIZE / XFS_BLI_CHUNK) /
1703                                   NBWORD) * sizeof(int))), "xfs_buf_item");
1704         if (!xfs_buf_item_zone)
1705                 goto out_destroy_trans_zone;
1706
1707         xfs_efd_zone = kmem_zone_init((sizeof(xfs_efd_log_item_t) +
1708                         ((XFS_EFD_MAX_FAST_EXTENTS - 1) *
1709                                  sizeof(xfs_extent_t))), "xfs_efd_item");
1710         if (!xfs_efd_zone)
1711                 goto out_destroy_buf_item_zone;
1712
1713         xfs_efi_zone = kmem_zone_init((sizeof(xfs_efi_log_item_t) +
1714                         ((XFS_EFI_MAX_FAST_EXTENTS - 1) *
1715                                 sizeof(xfs_extent_t))), "xfs_efi_item");
1716         if (!xfs_efi_zone)
1717                 goto out_destroy_efd_zone;
1718
1719         xfs_inode_zone =
1720                 kmem_zone_init_flags(sizeof(xfs_inode_t), "xfs_inode",
1721                         KM_ZONE_HWALIGN | KM_ZONE_RECLAIM | KM_ZONE_SPREAD,
1722                         xfs_fs_inode_init_once);
1723         if (!xfs_inode_zone)
1724                 goto out_destroy_efi_zone;
1725
1726         xfs_ili_zone =
1727                 kmem_zone_init_flags(sizeof(xfs_inode_log_item_t), "xfs_ili",
1728                                         KM_ZONE_SPREAD, NULL);
1729         if (!xfs_ili_zone)
1730                 goto out_destroy_inode_zone;
1731
1732         return 0;
1733
1734  out_destroy_inode_zone:
1735         kmem_zone_destroy(xfs_inode_zone);
1736  out_destroy_efi_zone:
1737         kmem_zone_destroy(xfs_efi_zone);
1738  out_destroy_efd_zone:
1739         kmem_zone_destroy(xfs_efd_zone);
1740  out_destroy_buf_item_zone:
1741         kmem_zone_destroy(xfs_buf_item_zone);
1742  out_destroy_trans_zone:
1743         kmem_zone_destroy(xfs_trans_zone);
1744  out_destroy_ifork_zone:
1745         kmem_zone_destroy(xfs_ifork_zone);
1746  out_destroy_dabuf_zone:
1747         kmem_zone_destroy(xfs_dabuf_zone);
1748  out_destroy_da_state_zone:
1749         kmem_zone_destroy(xfs_da_state_zone);
1750  out_destroy_btree_cur_zone:
1751         kmem_zone_destroy(xfs_btree_cur_zone);
1752  out_destroy_bmap_free_item_zone:
1753         kmem_zone_destroy(xfs_bmap_free_item_zone);
1754  out_destroy_log_ticket_zone:
1755         kmem_zone_destroy(xfs_log_ticket_zone);
1756  out_destroy_ioend_pool:
1757         mempool_destroy(xfs_ioend_pool);
1758  out_destroy_ioend_zone:
1759         kmem_zone_destroy(xfs_ioend_zone);
1760  out:
1761         return -ENOMEM;
1762 }
1763
1764 STATIC void
1765 xfs_destroy_zones(void)
1766 {
1767         kmem_zone_destroy(xfs_ili_zone);
1768         kmem_zone_destroy(xfs_inode_zone);
1769         kmem_zone_destroy(xfs_efi_zone);
1770         kmem_zone_destroy(xfs_efd_zone);
1771         kmem_zone_destroy(xfs_buf_item_zone);
1772         kmem_zone_destroy(xfs_trans_zone);
1773         kmem_zone_destroy(xfs_ifork_zone);
1774         kmem_zone_destroy(xfs_dabuf_zone);
1775         kmem_zone_destroy(xfs_da_state_zone);
1776         kmem_zone_destroy(xfs_btree_cur_zone);
1777         kmem_zone_destroy(xfs_bmap_free_item_zone);
1778         kmem_zone_destroy(xfs_log_ticket_zone);
1779         mempool_destroy(xfs_ioend_pool);
1780         kmem_zone_destroy(xfs_ioend_zone);
1781
1782 }
1783
1784 STATIC int __init
1785 init_xfs_fs(void)
1786 {
1787         int                     error;
1788
1789         printk(KERN_INFO XFS_VERSION_STRING " with "
1790                          XFS_BUILD_OPTIONS " enabled\n");
1791
1792         xfs_ioend_init();
1793         xfs_dir_startup();
1794
1795         error = xfs_init_zones();
1796         if (error)
1797                 goto out;
1798
1799         error = xfs_mru_cache_init();
1800         if (error)
1801                 goto out_destroy_zones;
1802
1803         error = xfs_filestream_init();
1804         if (error)
1805                 goto out_mru_cache_uninit;
1806
1807         error = xfs_buf_init();
1808         if (error)
1809                 goto out_filestream_uninit;
1810
1811         error = xfs_init_procfs();
1812         if (error)
1813                 goto out_buf_terminate;
1814
1815         error = xfs_sysctl_register();
1816         if (error)
1817                 goto out_cleanup_procfs;
1818
1819         vfs_initquota();
1820
1821         error = register_filesystem(&xfs_fs_type);
1822         if (error)
1823                 goto out_sysctl_unregister;
1824         return 0;
1825
1826  out_sysctl_unregister:
1827         xfs_sysctl_unregister();
1828  out_cleanup_procfs:
1829         xfs_cleanup_procfs();
1830  out_buf_terminate:
1831         xfs_buf_terminate();
1832  out_filestream_uninit:
1833         xfs_filestream_uninit();
1834  out_mru_cache_uninit:
1835         xfs_mru_cache_uninit();
1836  out_destroy_zones:
1837         xfs_destroy_zones();
1838  out:
1839         return error;
1840 }
1841
1842 STATIC void __exit
1843 exit_xfs_fs(void)
1844 {
1845         vfs_exitquota();
1846         unregister_filesystem(&xfs_fs_type);
1847         xfs_sysctl_unregister();
1848         xfs_cleanup_procfs();
1849         xfs_buf_terminate();
1850         xfs_filestream_uninit();
1851         xfs_mru_cache_uninit();
1852         xfs_destroy_zones();
1853 }
1854
1855 module_init(init_xfs_fs);
1856 module_exit(exit_xfs_fs);
1857
1858 MODULE_AUTHOR("Silicon Graphics, Inc.");
1859 MODULE_DESCRIPTION(XFS_VERSION_STRING " with " XFS_BUILD_OPTIONS " enabled");
1860 MODULE_LICENSE("GPL");