[XFS] Combine the XFS and Linux inodes
[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 #include "xfs.h"
19 #include "xfs_bit.h"
20 #include "xfs_log.h"
21 #include "xfs_clnt.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_acl.h"
48 #include "xfs_attr.h"
49 #include "xfs_buf_item.h"
50 #include "xfs_utils.h"
51 #include "xfs_vnodeops.h"
52 #include "xfs_vfsops.h"
53 #include "xfs_version.h"
54 #include "xfs_log_priv.h"
55 #include "xfs_trans_priv.h"
56 #include "xfs_filestream.h"
57 #include "xfs_da_btree.h"
58 #include "xfs_dir2_trace.h"
59 #include "xfs_extfree_item.h"
60 #include "xfs_mru_cache.h"
61 #include "xfs_inode_item.h"
62 #include "xfs_sync.h"
63
64 #include <linux/namei.h>
65 #include <linux/init.h>
66 #include <linux/mount.h>
67 #include <linux/mempool.h>
68 #include <linux/writeback.h>
69 #include <linux/kthread.h>
70 #include <linux/freezer.h>
71 #include <linux/parser.h>
72
73 static struct quotactl_ops xfs_quotactl_operations;
74 static struct super_operations xfs_super_operations;
75 static kmem_zone_t *xfs_ioend_zone;
76 mempool_t *xfs_ioend_pool;
77
78 STATIC struct xfs_mount_args *
79 xfs_args_allocate(
80         struct super_block      *sb,
81         int                     silent)
82 {
83         struct xfs_mount_args   *args;
84
85         args = kzalloc(sizeof(struct xfs_mount_args), GFP_KERNEL);
86         if (!args)
87                 return NULL;
88
89         args->logbufs = args->logbufsize = -1;
90         strncpy(args->fsname, sb->s_id, MAXNAMELEN);
91
92         /* Copy the already-parsed mount(2) flags we're interested in */
93         if (sb->s_flags & MS_DIRSYNC)
94                 args->flags |= XFSMNT_DIRSYNC;
95         if (sb->s_flags & MS_SYNCHRONOUS)
96                 args->flags |= XFSMNT_WSYNC;
97         if (silent)
98                 args->flags |= XFSMNT_QUIET;
99         args->flags |= XFSMNT_32BITINODES;
100
101         return args;
102 }
103
104 #define MNTOPT_LOGBUFS  "logbufs"       /* number of XFS log buffers */
105 #define MNTOPT_LOGBSIZE "logbsize"      /* size of XFS log buffers */
106 #define MNTOPT_LOGDEV   "logdev"        /* log device */
107 #define MNTOPT_RTDEV    "rtdev"         /* realtime I/O device */
108 #define MNTOPT_BIOSIZE  "biosize"       /* log2 of preferred buffered io size */
109 #define MNTOPT_WSYNC    "wsync"         /* safe-mode nfs compatible mount */
110 #define MNTOPT_INO64    "ino64"         /* force inodes into 64-bit range */
111 #define MNTOPT_NOALIGN  "noalign"       /* turn off stripe alignment */
112 #define MNTOPT_SWALLOC  "swalloc"       /* turn on stripe width allocation */
113 #define MNTOPT_SUNIT    "sunit"         /* data volume stripe unit */
114 #define MNTOPT_SWIDTH   "swidth"        /* data volume stripe width */
115 #define MNTOPT_NOUUID   "nouuid"        /* ignore filesystem UUID */
116 #define MNTOPT_MTPT     "mtpt"          /* filesystem mount point */
117 #define MNTOPT_GRPID    "grpid"         /* group-ID from parent directory */
118 #define MNTOPT_NOGRPID  "nogrpid"       /* group-ID from current process */
119 #define MNTOPT_BSDGROUPS    "bsdgroups"    /* group-ID from parent directory */
120 #define MNTOPT_SYSVGROUPS   "sysvgroups"   /* group-ID from current process */
121 #define MNTOPT_ALLOCSIZE    "allocsize"    /* preferred allocation size */
122 #define MNTOPT_NORECOVERY   "norecovery"   /* don't run XFS recovery */
123 #define MNTOPT_BARRIER  "barrier"       /* use writer barriers for log write and
124                                          * unwritten extent conversion */
125 #define MNTOPT_NOBARRIER "nobarrier"    /* .. disable */
126 #define MNTOPT_OSYNCISOSYNC "osyncisosync" /* o_sync is REALLY o_sync */
127 #define MNTOPT_64BITINODE   "inode64"   /* inodes can be allocated anywhere */
128 #define MNTOPT_IKEEP    "ikeep"         /* do not free empty inode clusters */
129 #define MNTOPT_NOIKEEP  "noikeep"       /* free empty inode clusters */
130 #define MNTOPT_LARGEIO     "largeio"    /* report large I/O sizes in stat() */
131 #define MNTOPT_NOLARGEIO   "nolargeio"  /* do not report large I/O sizes
132                                          * in stat(). */
133 #define MNTOPT_ATTR2    "attr2"         /* do use attr2 attribute format */
134 #define MNTOPT_NOATTR2  "noattr2"       /* do not use attr2 attribute format */
135 #define MNTOPT_FILESTREAM  "filestreams" /* use filestreams allocator */
136 #define MNTOPT_QUOTA    "quota"         /* disk quotas (user) */
137 #define MNTOPT_NOQUOTA  "noquota"       /* no quotas */
138 #define MNTOPT_USRQUOTA "usrquota"      /* user quota enabled */
139 #define MNTOPT_GRPQUOTA "grpquota"      /* group quota enabled */
140 #define MNTOPT_PRJQUOTA "prjquota"      /* project quota enabled */
141 #define MNTOPT_UQUOTA   "uquota"        /* user quota (IRIX variant) */
142 #define MNTOPT_GQUOTA   "gquota"        /* group quota (IRIX variant) */
143 #define MNTOPT_PQUOTA   "pquota"        /* project quota (IRIX variant) */
144 #define MNTOPT_UQUOTANOENF "uqnoenforce"/* user quota limit enforcement */
145 #define MNTOPT_GQUOTANOENF "gqnoenforce"/* group quota limit enforcement */
146 #define MNTOPT_PQUOTANOENF "pqnoenforce"/* project quota limit enforcement */
147 #define MNTOPT_QUOTANOENF  "qnoenforce" /* same as uqnoenforce */
148 #define MNTOPT_DMAPI    "dmapi"         /* DMI enabled (DMAPI / XDSM) */
149 #define MNTOPT_XDSM     "xdsm"          /* DMI enabled (DMAPI / XDSM) */
150 #define MNTOPT_DMI      "dmi"           /* DMI enabled (DMAPI / XDSM) */
151
152 /*
153  * Table driven mount option parser.
154  *
155  * Currently only used for remount, but it will be used for mount
156  * in the future, too.
157  */
158 enum {
159         Opt_barrier, Opt_nobarrier, Opt_err
160 };
161
162 static const match_table_t tokens = {
163         {Opt_barrier, "barrier"},
164         {Opt_nobarrier, "nobarrier"},
165         {Opt_err, NULL}
166 };
167
168
169 STATIC unsigned long
170 suffix_strtoul(char *s, char **endp, unsigned int base)
171 {
172         int     last, shift_left_factor = 0;
173         char    *value = s;
174
175         last = strlen(value) - 1;
176         if (value[last] == 'K' || value[last] == 'k') {
177                 shift_left_factor = 10;
178                 value[last] = '\0';
179         }
180         if (value[last] == 'M' || value[last] == 'm') {
181                 shift_left_factor = 20;
182                 value[last] = '\0';
183         }
184         if (value[last] == 'G' || value[last] == 'g') {
185                 shift_left_factor = 30;
186                 value[last] = '\0';
187         }
188
189         return simple_strtoul((const char *)s, endp, base) << shift_left_factor;
190 }
191
192 STATIC int
193 xfs_parseargs(
194         struct xfs_mount        *mp,
195         char                    *options,
196         struct xfs_mount_args   *args,
197         int                     update)
198 {
199         char                    *this_char, *value, *eov;
200         int                     dsunit, dswidth, vol_dsunit, vol_dswidth;
201         int                     iosize;
202         int                     dmapi_implies_ikeep = 1;
203
204         args->flags |= XFSMNT_BARRIER;
205         args->flags2 |= XFSMNT2_COMPAT_IOSIZE;
206
207         if (!options)
208                 goto done;
209
210         iosize = dsunit = dswidth = vol_dsunit = vol_dswidth = 0;
211
212         while ((this_char = strsep(&options, ",")) != NULL) {
213                 if (!*this_char)
214                         continue;
215                 if ((value = strchr(this_char, '=')) != NULL)
216                         *value++ = 0;
217
218                 if (!strcmp(this_char, MNTOPT_LOGBUFS)) {
219                         if (!value || !*value) {
220                                 cmn_err(CE_WARN,
221                                         "XFS: %s option requires an argument",
222                                         this_char);
223                                 return EINVAL;
224                         }
225                         args->logbufs = simple_strtoul(value, &eov, 10);
226                 } else if (!strcmp(this_char, MNTOPT_LOGBSIZE)) {
227                         if (!value || !*value) {
228                                 cmn_err(CE_WARN,
229                                         "XFS: %s option requires an argument",
230                                         this_char);
231                                 return EINVAL;
232                         }
233                         args->logbufsize = suffix_strtoul(value, &eov, 10);
234                 } else if (!strcmp(this_char, MNTOPT_LOGDEV)) {
235                         if (!value || !*value) {
236                                 cmn_err(CE_WARN,
237                                         "XFS: %s option requires an argument",
238                                         this_char);
239                                 return EINVAL;
240                         }
241                         strncpy(args->logname, value, MAXNAMELEN);
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                         strncpy(args->mtpt, value, MAXNAMELEN);
250                 } else if (!strcmp(this_char, MNTOPT_RTDEV)) {
251                         if (!value || !*value) {
252                                 cmn_err(CE_WARN,
253                                         "XFS: %s option requires an argument",
254                                         this_char);
255                                 return EINVAL;
256                         }
257                         strncpy(args->rtname, value, MAXNAMELEN);
258                 } else if (!strcmp(this_char, MNTOPT_BIOSIZE)) {
259                         if (!value || !*value) {
260                                 cmn_err(CE_WARN,
261                                         "XFS: %s option requires an argument",
262                                         this_char);
263                                 return EINVAL;
264                         }
265                         iosize = simple_strtoul(value, &eov, 10);
266                         args->flags |= XFSMNT_IOSIZE;
267                         args->iosizelog = (uint8_t) iosize;
268                 } else if (!strcmp(this_char, MNTOPT_ALLOCSIZE)) {
269                         if (!value || !*value) {
270                                 cmn_err(CE_WARN,
271                                         "XFS: %s option requires an argument",
272                                         this_char);
273                                 return EINVAL;
274                         }
275                         iosize = suffix_strtoul(value, &eov, 10);
276                         args->flags |= XFSMNT_IOSIZE;
277                         args->iosizelog = ffs(iosize) - 1;
278                 } else if (!strcmp(this_char, MNTOPT_GRPID) ||
279                            !strcmp(this_char, MNTOPT_BSDGROUPS)) {
280                         mp->m_flags |= XFS_MOUNT_GRPID;
281                 } else if (!strcmp(this_char, MNTOPT_NOGRPID) ||
282                            !strcmp(this_char, MNTOPT_SYSVGROUPS)) {
283                         mp->m_flags &= ~XFS_MOUNT_GRPID;
284                 } else if (!strcmp(this_char, MNTOPT_WSYNC)) {
285                         args->flags |= XFSMNT_WSYNC;
286                 } else if (!strcmp(this_char, MNTOPT_OSYNCISOSYNC)) {
287                         args->flags |= XFSMNT_OSYNCISOSYNC;
288                 } else if (!strcmp(this_char, MNTOPT_NORECOVERY)) {
289                         args->flags |= XFSMNT_NORECOVERY;
290                 } else if (!strcmp(this_char, MNTOPT_INO64)) {
291                         args->flags |= XFSMNT_INO64;
292 #if !XFS_BIG_INUMS
293                         cmn_err(CE_WARN,
294                                 "XFS: %s option not allowed on this system",
295                                 this_char);
296                         return EINVAL;
297 #endif
298                 } else if (!strcmp(this_char, MNTOPT_NOALIGN)) {
299                         args->flags |= XFSMNT_NOALIGN;
300                 } else if (!strcmp(this_char, MNTOPT_SWALLOC)) {
301                         args->flags |= XFSMNT_SWALLOC;
302                 } else if (!strcmp(this_char, MNTOPT_SUNIT)) {
303                         if (!value || !*value) {
304                                 cmn_err(CE_WARN,
305                                         "XFS: %s option requires an argument",
306                                         this_char);
307                                 return EINVAL;
308                         }
309                         dsunit = simple_strtoul(value, &eov, 10);
310                 } else if (!strcmp(this_char, MNTOPT_SWIDTH)) {
311                         if (!value || !*value) {
312                                 cmn_err(CE_WARN,
313                                         "XFS: %s option requires an argument",
314                                         this_char);
315                                 return EINVAL;
316                         }
317                         dswidth = simple_strtoul(value, &eov, 10);
318                 } else if (!strcmp(this_char, MNTOPT_64BITINODE)) {
319                         args->flags &= ~XFSMNT_32BITINODES;
320 #if !XFS_BIG_INUMS
321                         cmn_err(CE_WARN,
322                                 "XFS: %s option not allowed on this system",
323                                 this_char);
324                         return EINVAL;
325 #endif
326                 } else if (!strcmp(this_char, MNTOPT_NOUUID)) {
327                         args->flags |= XFSMNT_NOUUID;
328                 } else if (!strcmp(this_char, MNTOPT_BARRIER)) {
329                         args->flags |= XFSMNT_BARRIER;
330                 } else if (!strcmp(this_char, MNTOPT_NOBARRIER)) {
331                         args->flags &= ~XFSMNT_BARRIER;
332                 } else if (!strcmp(this_char, MNTOPT_IKEEP)) {
333                         args->flags |= XFSMNT_IKEEP;
334                 } else if (!strcmp(this_char, MNTOPT_NOIKEEP)) {
335                         dmapi_implies_ikeep = 0;
336                         args->flags &= ~XFSMNT_IKEEP;
337                 } else if (!strcmp(this_char, MNTOPT_LARGEIO)) {
338                         args->flags2 &= ~XFSMNT2_COMPAT_IOSIZE;
339                 } else if (!strcmp(this_char, MNTOPT_NOLARGEIO)) {
340                         args->flags2 |= XFSMNT2_COMPAT_IOSIZE;
341                 } else if (!strcmp(this_char, MNTOPT_ATTR2)) {
342                         args->flags |= XFSMNT_ATTR2;
343                 } else if (!strcmp(this_char, MNTOPT_NOATTR2)) {
344                         args->flags &= ~XFSMNT_ATTR2;
345                         args->flags |= XFSMNT_NOATTR2;
346                 } else if (!strcmp(this_char, MNTOPT_FILESTREAM)) {
347                         args->flags2 |= XFSMNT2_FILESTREAMS;
348                 } else if (!strcmp(this_char, MNTOPT_NOQUOTA)) {
349                         args->flags &= ~(XFSMNT_UQUOTAENF|XFSMNT_UQUOTA);
350                         args->flags &= ~(XFSMNT_GQUOTAENF|XFSMNT_GQUOTA);
351                 } else if (!strcmp(this_char, MNTOPT_QUOTA) ||
352                            !strcmp(this_char, MNTOPT_UQUOTA) ||
353                            !strcmp(this_char, MNTOPT_USRQUOTA)) {
354                         args->flags |= XFSMNT_UQUOTA | XFSMNT_UQUOTAENF;
355                 } else if (!strcmp(this_char, MNTOPT_QUOTANOENF) ||
356                            !strcmp(this_char, MNTOPT_UQUOTANOENF)) {
357                         args->flags |= XFSMNT_UQUOTA;
358                         args->flags &= ~XFSMNT_UQUOTAENF;
359                 } else if (!strcmp(this_char, MNTOPT_PQUOTA) ||
360                            !strcmp(this_char, MNTOPT_PRJQUOTA)) {
361                         args->flags |= XFSMNT_PQUOTA | XFSMNT_PQUOTAENF;
362                 } else if (!strcmp(this_char, MNTOPT_PQUOTANOENF)) {
363                         args->flags |= XFSMNT_PQUOTA;
364                         args->flags &= ~XFSMNT_PQUOTAENF;
365                 } else if (!strcmp(this_char, MNTOPT_GQUOTA) ||
366                            !strcmp(this_char, MNTOPT_GRPQUOTA)) {
367                         args->flags |= XFSMNT_GQUOTA | XFSMNT_GQUOTAENF;
368                 } else if (!strcmp(this_char, MNTOPT_GQUOTANOENF)) {
369                         args->flags |= XFSMNT_GQUOTA;
370                         args->flags &= ~XFSMNT_GQUOTAENF;
371                 } else if (!strcmp(this_char, MNTOPT_DMAPI)) {
372                         args->flags |= XFSMNT_DMAPI;
373                 } else if (!strcmp(this_char, MNTOPT_XDSM)) {
374                         args->flags |= XFSMNT_DMAPI;
375                 } else if (!strcmp(this_char, MNTOPT_DMI)) {
376                         args->flags |= XFSMNT_DMAPI;
377                 } else if (!strcmp(this_char, "ihashsize")) {
378                         cmn_err(CE_WARN,
379         "XFS: ihashsize no longer used, option is deprecated.");
380                 } else if (!strcmp(this_char, "osyncisdsync")) {
381                         /* no-op, this is now the default */
382                         cmn_err(CE_WARN,
383         "XFS: osyncisdsync is now the default, option is deprecated.");
384                 } else if (!strcmp(this_char, "irixsgid")) {
385                         cmn_err(CE_WARN,
386         "XFS: irixsgid is now a sysctl(2) variable, option is deprecated.");
387                 } else {
388                         cmn_err(CE_WARN,
389                                 "XFS: unknown mount option [%s].", this_char);
390                         return EINVAL;
391                 }
392         }
393
394         if (args->flags & XFSMNT_NORECOVERY) {
395                 if ((mp->m_flags & XFS_MOUNT_RDONLY) == 0) {
396                         cmn_err(CE_WARN,
397                                 "XFS: no-recovery mounts must be read-only.");
398                         return EINVAL;
399                 }
400         }
401
402         if ((args->flags & XFSMNT_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         if ((args->flags & XFSMNT_GQUOTA) && (args->flags & XFSMNT_PQUOTA)) {
409                 cmn_err(CE_WARN,
410                         "XFS: cannot mount with both project and group quota");
411                 return EINVAL;
412         }
413
414         if ((args->flags & XFSMNT_DMAPI) && *args->mtpt == '\0') {
415                 printk("XFS: %s option needs the mount point option as well\n",
416                         MNTOPT_DMAPI);
417                 return EINVAL;
418         }
419
420         if ((dsunit && !dswidth) || (!dsunit && dswidth)) {
421                 cmn_err(CE_WARN,
422                         "XFS: sunit and swidth must be specified together");
423                 return EINVAL;
424         }
425
426         if (dsunit && (dswidth % dsunit != 0)) {
427                 cmn_err(CE_WARN,
428         "XFS: stripe width (%d) must be a multiple of the stripe unit (%d)",
429                         dswidth, dsunit);
430                 return EINVAL;
431         }
432
433         /*
434          * Applications using DMI filesystems often expect the
435          * inode generation number to be monotonically increasing.
436          * If we delete inode chunks we break this assumption, so
437          * keep unused inode chunks on disk for DMI filesystems
438          * until we come up with a better solution.
439          * Note that if "ikeep" or "noikeep" mount options are
440          * supplied, then they are honored.
441          */
442         if ((args->flags & XFSMNT_DMAPI) && dmapi_implies_ikeep)
443                 args->flags |= XFSMNT_IKEEP;
444
445         if ((args->flags & XFSMNT_NOALIGN) != XFSMNT_NOALIGN) {
446                 if (dsunit) {
447                         args->sunit = dsunit;
448                         args->flags |= XFSMNT_RETERR;
449                 } else {
450                         args->sunit = vol_dsunit;
451                 }
452                 dswidth ? (args->swidth = dswidth) :
453                           (args->swidth = vol_dswidth);
454         } else {
455                 args->sunit = args->swidth = 0;
456         }
457
458 done:
459         if (args->flags & XFSMNT_32BITINODES)
460                 mp->m_flags |= XFS_MOUNT_SMALL_INUMS;
461         if (args->flags2)
462                 args->flags |= XFSMNT_FLAGS2;
463         return 0;
464 }
465
466 struct proc_xfs_info {
467         int     flag;
468         char    *str;
469 };
470
471 STATIC int
472 xfs_showargs(
473         struct xfs_mount        *mp,
474         struct seq_file         *m)
475 {
476         static struct proc_xfs_info xfs_info_set[] = {
477                 /* the few simple ones we can get from the mount struct */
478                 { XFS_MOUNT_IKEEP,              "," MNTOPT_IKEEP },
479                 { XFS_MOUNT_WSYNC,              "," MNTOPT_WSYNC },
480                 { XFS_MOUNT_INO64,              "," MNTOPT_INO64 },
481                 { XFS_MOUNT_NOALIGN,            "," MNTOPT_NOALIGN },
482                 { XFS_MOUNT_SWALLOC,            "," MNTOPT_SWALLOC },
483                 { XFS_MOUNT_NOUUID,             "," MNTOPT_NOUUID },
484                 { XFS_MOUNT_NORECOVERY,         "," MNTOPT_NORECOVERY },
485                 { XFS_MOUNT_OSYNCISOSYNC,       "," MNTOPT_OSYNCISOSYNC },
486                 { XFS_MOUNT_ATTR2,              "," MNTOPT_ATTR2 },
487                 { XFS_MOUNT_FILESTREAMS,        "," MNTOPT_FILESTREAM },
488                 { XFS_MOUNT_DMAPI,              "," MNTOPT_DMAPI },
489                 { XFS_MOUNT_GRPID,              "," MNTOPT_GRPID },
490                 { 0, NULL }
491         };
492         static struct proc_xfs_info xfs_info_unset[] = {
493                 /* the few simple ones we can get from the mount struct */
494                 { XFS_MOUNT_COMPAT_IOSIZE,      "," MNTOPT_LARGEIO },
495                 { XFS_MOUNT_BARRIER,            "," MNTOPT_NOBARRIER },
496                 { XFS_MOUNT_SMALL_INUMS,        "," MNTOPT_64BITINODE },
497                 { 0, NULL }
498         };
499         struct proc_xfs_info    *xfs_infop;
500
501         for (xfs_infop = xfs_info_set; xfs_infop->flag; xfs_infop++) {
502                 if (mp->m_flags & xfs_infop->flag)
503                         seq_puts(m, xfs_infop->str);
504         }
505         for (xfs_infop = xfs_info_unset; xfs_infop->flag; xfs_infop++) {
506                 if (!(mp->m_flags & xfs_infop->flag))
507                         seq_puts(m, xfs_infop->str);
508         }
509
510         if (mp->m_flags & XFS_MOUNT_DFLT_IOSIZE)
511                 seq_printf(m, "," MNTOPT_ALLOCSIZE "=%dk",
512                                 (int)(1 << mp->m_writeio_log) >> 10);
513
514         if (mp->m_logbufs > 0)
515                 seq_printf(m, "," MNTOPT_LOGBUFS "=%d", mp->m_logbufs);
516         if (mp->m_logbsize > 0)
517                 seq_printf(m, "," MNTOPT_LOGBSIZE "=%dk", mp->m_logbsize >> 10);
518
519         if (mp->m_logname)
520                 seq_printf(m, "," MNTOPT_LOGDEV "=%s", mp->m_logname);
521         if (mp->m_rtname)
522                 seq_printf(m, "," MNTOPT_RTDEV "=%s", mp->m_rtname);
523
524         if (mp->m_dalign > 0)
525                 seq_printf(m, "," MNTOPT_SUNIT "=%d",
526                                 (int)XFS_FSB_TO_BB(mp, mp->m_dalign));
527         if (mp->m_swidth > 0)
528                 seq_printf(m, "," MNTOPT_SWIDTH "=%d",
529                                 (int)XFS_FSB_TO_BB(mp, mp->m_swidth));
530
531         if (mp->m_qflags & (XFS_UQUOTA_ACCT|XFS_UQUOTA_ENFD))
532                 seq_puts(m, "," MNTOPT_USRQUOTA);
533         else if (mp->m_qflags & XFS_UQUOTA_ACCT)
534                 seq_puts(m, "," MNTOPT_UQUOTANOENF);
535
536         if (mp->m_qflags & (XFS_PQUOTA_ACCT|XFS_OQUOTA_ENFD))
537                 seq_puts(m, "," MNTOPT_PRJQUOTA);
538         else if (mp->m_qflags & XFS_PQUOTA_ACCT)
539                 seq_puts(m, "," MNTOPT_PQUOTANOENF);
540
541         if (mp->m_qflags & (XFS_GQUOTA_ACCT|XFS_OQUOTA_ENFD))
542                 seq_puts(m, "," MNTOPT_GRPQUOTA);
543         else if (mp->m_qflags & XFS_GQUOTA_ACCT)
544                 seq_puts(m, "," MNTOPT_GQUOTANOENF);
545
546         if (!(mp->m_qflags & XFS_ALL_QUOTA_ACCT))
547                 seq_puts(m, "," MNTOPT_NOQUOTA);
548
549         return 0;
550 }
551 __uint64_t
552 xfs_max_file_offset(
553         unsigned int            blockshift)
554 {
555         unsigned int            pagefactor = 1;
556         unsigned int            bitshift = BITS_PER_LONG - 1;
557
558         /* Figure out maximum filesize, on Linux this can depend on
559          * the filesystem blocksize (on 32 bit platforms).
560          * __block_prepare_write does this in an [unsigned] long...
561          *      page->index << (PAGE_CACHE_SHIFT - bbits)
562          * So, for page sized blocks (4K on 32 bit platforms),
563          * this wraps at around 8Tb (hence MAX_LFS_FILESIZE which is
564          *      (((u64)PAGE_CACHE_SIZE << (BITS_PER_LONG-1))-1)
565          * but for smaller blocksizes it is less (bbits = log2 bsize).
566          * Note1: get_block_t takes a long (implicit cast from above)
567          * Note2: The Large Block Device (LBD and HAVE_SECTOR_T) patch
568          * can optionally convert the [unsigned] long from above into
569          * an [unsigned] long long.
570          */
571
572 #if BITS_PER_LONG == 32
573 # if defined(CONFIG_LBD)
574         ASSERT(sizeof(sector_t) == 8);
575         pagefactor = PAGE_CACHE_SIZE;
576         bitshift = BITS_PER_LONG;
577 # else
578         pagefactor = PAGE_CACHE_SIZE >> (PAGE_CACHE_SHIFT - blockshift);
579 # endif
580 #endif
581
582         return (((__uint64_t)pagefactor) << bitshift) - 1;
583 }
584
585 int
586 xfs_blkdev_get(
587         xfs_mount_t             *mp,
588         const char              *name,
589         struct block_device     **bdevp)
590 {
591         int                     error = 0;
592
593         *bdevp = open_bdev_exclusive(name, FMODE_READ|FMODE_WRITE, mp);
594         if (IS_ERR(*bdevp)) {
595                 error = PTR_ERR(*bdevp);
596                 printk("XFS: Invalid device [%s], error=%d\n", name, error);
597         }
598
599         return -error;
600 }
601
602 void
603 xfs_blkdev_put(
604         struct block_device     *bdev)
605 {
606         if (bdev)
607                 close_bdev_exclusive(bdev, FMODE_READ|FMODE_WRITE);
608 }
609
610 /*
611  * Try to write out the superblock using barriers.
612  */
613 STATIC int
614 xfs_barrier_test(
615         xfs_mount_t     *mp)
616 {
617         xfs_buf_t       *sbp = xfs_getsb(mp, 0);
618         int             error;
619
620         XFS_BUF_UNDONE(sbp);
621         XFS_BUF_UNREAD(sbp);
622         XFS_BUF_UNDELAYWRITE(sbp);
623         XFS_BUF_WRITE(sbp);
624         XFS_BUF_UNASYNC(sbp);
625         XFS_BUF_ORDERED(sbp);
626
627         xfsbdstrat(mp, sbp);
628         error = xfs_iowait(sbp);
629
630         /*
631          * Clear all the flags we set and possible error state in the
632          * buffer.  We only did the write to try out whether barriers
633          * worked and shouldn't leave any traces in the superblock
634          * buffer.
635          */
636         XFS_BUF_DONE(sbp);
637         XFS_BUF_ERROR(sbp, 0);
638         XFS_BUF_UNORDERED(sbp);
639
640         xfs_buf_relse(sbp);
641         return error;
642 }
643
644 void
645 xfs_mountfs_check_barriers(xfs_mount_t *mp)
646 {
647         int error;
648
649         if (mp->m_logdev_targp != mp->m_ddev_targp) {
650                 xfs_fs_cmn_err(CE_NOTE, mp,
651                   "Disabling barriers, not supported with external log device");
652                 mp->m_flags &= ~XFS_MOUNT_BARRIER;
653                 return;
654         }
655
656         if (xfs_readonly_buftarg(mp->m_ddev_targp)) {
657                 xfs_fs_cmn_err(CE_NOTE, mp,
658                   "Disabling barriers, underlying device is readonly");
659                 mp->m_flags &= ~XFS_MOUNT_BARRIER;
660                 return;
661         }
662
663         error = xfs_barrier_test(mp);
664         if (error) {
665                 xfs_fs_cmn_err(CE_NOTE, mp,
666                   "Disabling barriers, trial barrier write failed");
667                 mp->m_flags &= ~XFS_MOUNT_BARRIER;
668                 return;
669         }
670 }
671
672 void
673 xfs_blkdev_issue_flush(
674         xfs_buftarg_t           *buftarg)
675 {
676         blkdev_issue_flush(buftarg->bt_bdev, NULL);
677 }
678
679 STATIC void
680 xfs_close_devices(
681         struct xfs_mount        *mp)
682 {
683         if (mp->m_logdev_targp && mp->m_logdev_targp != mp->m_ddev_targp) {
684                 struct block_device *logdev = mp->m_logdev_targp->bt_bdev;
685                 xfs_free_buftarg(mp->m_logdev_targp);
686                 xfs_blkdev_put(logdev);
687         }
688         if (mp->m_rtdev_targp) {
689                 struct block_device *rtdev = mp->m_rtdev_targp->bt_bdev;
690                 xfs_free_buftarg(mp->m_rtdev_targp);
691                 xfs_blkdev_put(rtdev);
692         }
693         xfs_free_buftarg(mp->m_ddev_targp);
694 }
695
696 /*
697  * The file system configurations are:
698  *      (1) device (partition) with data and internal log
699  *      (2) logical volume with data and log subvolumes.
700  *      (3) logical volume with data, log, and realtime subvolumes.
701  *
702  * We only have to handle opening the log and realtime volumes here if
703  * they are present.  The data subvolume has already been opened by
704  * get_sb_bdev() and is stored in sb->s_bdev.
705  */
706 STATIC int
707 xfs_open_devices(
708         struct xfs_mount        *mp,
709         struct xfs_mount_args   *args)
710 {
711         struct block_device     *ddev = mp->m_super->s_bdev;
712         struct block_device     *logdev = NULL, *rtdev = NULL;
713         int                     error;
714
715         /*
716          * Open real time and log devices - order is important.
717          */
718         if (args->logname[0]) {
719                 error = xfs_blkdev_get(mp, args->logname, &logdev);
720                 if (error)
721                         goto out;
722         }
723
724         if (args->rtname[0]) {
725                 error = xfs_blkdev_get(mp, args->rtname, &rtdev);
726                 if (error)
727                         goto out_close_logdev;
728
729                 if (rtdev == ddev || rtdev == logdev) {
730                         cmn_err(CE_WARN,
731         "XFS: Cannot mount filesystem with identical rtdev and ddev/logdev.");
732                         error = EINVAL;
733                         goto out_close_rtdev;
734                 }
735         }
736
737         /*
738          * Setup xfs_mount buffer target pointers
739          */
740         error = ENOMEM;
741         mp->m_ddev_targp = xfs_alloc_buftarg(ddev, 0);
742         if (!mp->m_ddev_targp)
743                 goto out_close_rtdev;
744
745         if (rtdev) {
746                 mp->m_rtdev_targp = xfs_alloc_buftarg(rtdev, 1);
747                 if (!mp->m_rtdev_targp)
748                         goto out_free_ddev_targ;
749         }
750
751         if (logdev && logdev != ddev) {
752                 mp->m_logdev_targp = xfs_alloc_buftarg(logdev, 1);
753                 if (!mp->m_logdev_targp)
754                         goto out_free_rtdev_targ;
755         } else {
756                 mp->m_logdev_targp = mp->m_ddev_targp;
757         }
758
759         return 0;
760
761  out_free_rtdev_targ:
762         if (mp->m_rtdev_targp)
763                 xfs_free_buftarg(mp->m_rtdev_targp);
764  out_free_ddev_targ:
765         xfs_free_buftarg(mp->m_ddev_targp);
766  out_close_rtdev:
767         if (rtdev)
768                 xfs_blkdev_put(rtdev);
769  out_close_logdev:
770         if (logdev && logdev != ddev)
771                 xfs_blkdev_put(logdev);
772  out:
773         return error;
774 }
775
776 /*
777  * Setup xfs_mount buffer target pointers based on superblock
778  */
779 STATIC int
780 xfs_setup_devices(
781         struct xfs_mount        *mp)
782 {
783         int                     error;
784
785         error = xfs_setsize_buftarg(mp->m_ddev_targp, mp->m_sb.sb_blocksize,
786                                     mp->m_sb.sb_sectsize);
787         if (error)
788                 return error;
789
790         if (mp->m_logdev_targp && mp->m_logdev_targp != mp->m_ddev_targp) {
791                 unsigned int    log_sector_size = BBSIZE;
792
793                 if (xfs_sb_version_hassector(&mp->m_sb))
794                         log_sector_size = mp->m_sb.sb_logsectsize;
795                 error = xfs_setsize_buftarg(mp->m_logdev_targp,
796                                             mp->m_sb.sb_blocksize,
797                                             log_sector_size);
798                 if (error)
799                         return error;
800         }
801         if (mp->m_rtdev_targp) {
802                 error = xfs_setsize_buftarg(mp->m_rtdev_targp,
803                                             mp->m_sb.sb_blocksize,
804                                             mp->m_sb.sb_sectsize);
805                 if (error)
806                         return error;
807         }
808
809         return 0;
810 }
811
812 /*
813  * XFS AIL push thread support
814  */
815 void
816 xfsaild_wakeup(
817         xfs_mount_t             *mp,
818         xfs_lsn_t               threshold_lsn)
819 {
820         mp->m_ail.xa_target = threshold_lsn;
821         wake_up_process(mp->m_ail.xa_task);
822 }
823
824 int
825 xfsaild(
826         void    *data)
827 {
828         xfs_mount_t     *mp = (xfs_mount_t *)data;
829         xfs_lsn_t       last_pushed_lsn = 0;
830         long            tout = 0;
831
832         while (!kthread_should_stop()) {
833                 if (tout)
834                         schedule_timeout_interruptible(msecs_to_jiffies(tout));
835                 tout = 1000;
836
837                 /* swsusp */
838                 try_to_freeze();
839
840                 ASSERT(mp->m_log);
841                 if (XFS_FORCED_SHUTDOWN(mp))
842                         continue;
843
844                 tout = xfsaild_push(mp, &last_pushed_lsn);
845         }
846
847         return 0;
848 }       /* xfsaild */
849
850 int
851 xfsaild_start(
852         xfs_mount_t     *mp)
853 {
854         mp->m_ail.xa_target = 0;
855         mp->m_ail.xa_task = kthread_run(xfsaild, mp, "xfsaild");
856         if (IS_ERR(mp->m_ail.xa_task))
857                 return -PTR_ERR(mp->m_ail.xa_task);
858         return 0;
859 }
860
861 void
862 xfsaild_stop(
863         xfs_mount_t     *mp)
864 {
865         kthread_stop(mp->m_ail.xa_task);
866 }
867
868
869 /* Catch misguided souls that try to use this interface on XFS */
870 STATIC struct inode *
871 xfs_fs_alloc_inode(
872         struct super_block      *sb)
873 {
874         BUG();
875 }
876
877 /*
878  * we need to provide an empty inode free function to prevent
879  * the generic code from trying to free our combined inode.
880  */
881 STATIC void
882 xfs_fs_destroy_inode(
883         struct inode    *inode)
884 {
885 }
886
887 /*
888  * Slab object creation initialisation for the XFS inode.
889  * This covers only the idempotent fields in the XFS inode;
890  * all other fields need to be initialised on allocation
891  * from the slab. This avoids the need to repeatedly intialise
892  * fields in the xfs inode that left in the initialise state
893  * when freeing the inode.
894  */
895 STATIC void
896 xfs_fs_inode_init_once(
897         void                    *inode)
898 {
899         struct xfs_inode        *ip = inode;
900
901         memset(ip, 0, sizeof(struct xfs_inode));
902
903         /* vfs inode */
904         inode_init_once(VFS_I(ip));
905
906         /* xfs inode */
907         atomic_set(&ip->i_iocount, 0);
908         atomic_set(&ip->i_pincount, 0);
909         spin_lock_init(&ip->i_flags_lock);
910         INIT_LIST_HEAD(&ip->i_reclaim);
911         init_waitqueue_head(&ip->i_ipin_wait);
912         /*
913          * Because we want to use a counting completion, complete
914          * the flush completion once to allow a single access to
915          * the flush completion without blocking.
916          */
917         init_completion(&ip->i_flush);
918         complete(&ip->i_flush);
919
920         mrlock_init(&ip->i_lock, MRLOCK_ALLOW_EQUAL_PRI|MRLOCK_BARRIER,
921                      "xfsino", ip->i_ino);
922         mrlock_init(&ip->i_iolock, MRLOCK_BARRIER, "xfsio", ip->i_ino);
923 }
924
925 /*
926  * Attempt to flush the inode, this will actually fail
927  * if the inode is pinned, but we dirty the inode again
928  * at the point when it is unpinned after a log write,
929  * since this is when the inode itself becomes flushable.
930  */
931 STATIC int
932 xfs_fs_write_inode(
933         struct inode            *inode,
934         int                     sync)
935 {
936         int                     error = 0;
937         int                     flags = 0;
938
939         xfs_itrace_entry(XFS_I(inode));
940         if (sync) {
941                 filemap_fdatawait(inode->i_mapping);
942                 flags |= FLUSH_SYNC;
943         }
944         error = xfs_inode_flush(XFS_I(inode), flags);
945         /*
946          * if we failed to write out the inode then mark
947          * it dirty again so we'll try again later.
948          */
949         if (error)
950                 xfs_mark_inode_dirty_sync(XFS_I(inode));
951
952         return -error;
953 }
954
955 STATIC void
956 xfs_fs_clear_inode(
957         struct inode            *inode)
958 {
959         xfs_inode_t             *ip = XFS_I(inode);
960
961         /*
962          * ip can be null when xfs_iget_core calls xfs_idestroy if we
963          * find an inode with di_mode == 0 but without IGET_CREATE set.
964          */
965         if (ip) {
966                 xfs_itrace_entry(ip);
967                 XFS_STATS_INC(vn_rele);
968                 XFS_STATS_INC(vn_remove);
969                 XFS_STATS_INC(vn_reclaim);
970                 XFS_STATS_DEC(vn_active);
971
972                 xfs_inactive(ip);
973                 xfs_iflags_clear(ip, XFS_IMODIFIED);
974                 if (xfs_reclaim(ip))
975                         panic("%s: cannot reclaim 0x%p\n", __func__, inode);
976         }
977 }
978
979 STATIC void
980 xfs_free_fsname(
981         struct xfs_mount        *mp)
982 {
983         kfree(mp->m_fsname);
984         kfree(mp->m_rtname);
985         kfree(mp->m_logname);
986 }
987
988 STATIC void
989 xfs_fs_put_super(
990         struct super_block      *sb)
991 {
992         struct xfs_mount        *mp = XFS_M(sb);
993         struct xfs_inode        *rip = mp->m_rootip;
994         int                     unmount_event_flags = 0;
995         int                     error;
996
997         xfs_syncd_stop(mp);
998         xfs_sync_inodes(mp, SYNC_ATTR|SYNC_DELWRI);
999
1000 #ifdef HAVE_DMAPI
1001         if (mp->m_flags & XFS_MOUNT_DMAPI) {
1002                 unmount_event_flags =
1003                         (mp->m_dmevmask & (1 << DM_EVENT_UNMOUNT)) ?
1004                                 0 : DM_FLAGS_UNWANTED;
1005                 /*
1006                  * Ignore error from dmapi here, first unmount is not allowed
1007                  * to fail anyway, and second we wouldn't want to fail a
1008                  * unmount because of dmapi.
1009                  */
1010                 XFS_SEND_PREUNMOUNT(mp, rip, DM_RIGHT_NULL, rip, DM_RIGHT_NULL,
1011                                 NULL, NULL, 0, 0, unmount_event_flags);
1012         }
1013 #endif
1014
1015         /*
1016          * Blow away any referenced inode in the filestreams cache.
1017          * This can and will cause log traffic as inodes go inactive
1018          * here.
1019          */
1020         xfs_filestream_unmount(mp);
1021
1022         XFS_bflush(mp->m_ddev_targp);
1023         error = xfs_unmount_flush(mp, 0);
1024         WARN_ON(error);
1025
1026         if (mp->m_flags & XFS_MOUNT_DMAPI) {
1027                 XFS_SEND_UNMOUNT(mp, rip, DM_RIGHT_NULL, 0, 0,
1028                                 unmount_event_flags);
1029         }
1030
1031         xfs_unmountfs(mp);
1032         xfs_freesb(mp);
1033         xfs_icsb_destroy_counters(mp);
1034         xfs_close_devices(mp);
1035         xfs_qmops_put(mp);
1036         xfs_dmops_put(mp);
1037         xfs_free_fsname(mp);
1038         kfree(mp);
1039 }
1040
1041 STATIC void
1042 xfs_fs_write_super(
1043         struct super_block      *sb)
1044 {
1045         if (!(sb->s_flags & MS_RDONLY))
1046                 xfs_sync_fsdata(XFS_M(sb), 0);
1047         sb->s_dirt = 0;
1048 }
1049
1050 STATIC int
1051 xfs_fs_sync_super(
1052         struct super_block      *sb,
1053         int                     wait)
1054 {
1055         struct xfs_mount        *mp = XFS_M(sb);
1056         int                     error;
1057
1058         /*
1059          * Treat a sync operation like a freeze.  This is to work
1060          * around a race in sync_inodes() which works in two phases
1061          * - an asynchronous flush, which can write out an inode
1062          * without waiting for file size updates to complete, and a
1063          * synchronous flush, which wont do anything because the
1064          * async flush removed the inode's dirty flag.  Also
1065          * sync_inodes() will not see any files that just have
1066          * outstanding transactions to be flushed because we don't
1067          * dirty the Linux inode until after the transaction I/O
1068          * completes.
1069          */
1070         if (wait || unlikely(sb->s_frozen == SB_FREEZE_WRITE))
1071                 error = xfs_quiesce_data(mp);
1072         else
1073                 error = xfs_sync_fsdata(mp, 0);
1074         sb->s_dirt = 0;
1075
1076         if (unlikely(laptop_mode)) {
1077                 int     prev_sync_seq = mp->m_sync_seq;
1078
1079                 /*
1080                  * The disk must be active because we're syncing.
1081                  * We schedule xfssyncd now (now that the disk is
1082                  * active) instead of later (when it might not be).
1083                  */
1084                 wake_up_process(mp->m_sync_task);
1085                 /*
1086                  * We have to wait for the sync iteration to complete.
1087                  * If we don't, the disk activity caused by the sync
1088                  * will come after the sync is completed, and that
1089                  * triggers another sync from laptop mode.
1090                  */
1091                 wait_event(mp->m_wait_single_sync_task,
1092                                 mp->m_sync_seq != prev_sync_seq);
1093         }
1094
1095         return -error;
1096 }
1097
1098 STATIC int
1099 xfs_fs_statfs(
1100         struct dentry           *dentry,
1101         struct kstatfs          *statp)
1102 {
1103         struct xfs_mount        *mp = XFS_M(dentry->d_sb);
1104         xfs_sb_t                *sbp = &mp->m_sb;
1105         __uint64_t              fakeinos, id;
1106         xfs_extlen_t            lsize;
1107
1108         statp->f_type = XFS_SB_MAGIC;
1109         statp->f_namelen = MAXNAMELEN - 1;
1110
1111         id = huge_encode_dev(mp->m_ddev_targp->bt_dev);
1112         statp->f_fsid.val[0] = (u32)id;
1113         statp->f_fsid.val[1] = (u32)(id >> 32);
1114
1115         xfs_icsb_sync_counters(mp, XFS_ICSB_LAZY_COUNT);
1116
1117         spin_lock(&mp->m_sb_lock);
1118         statp->f_bsize = sbp->sb_blocksize;
1119         lsize = sbp->sb_logstart ? sbp->sb_logblocks : 0;
1120         statp->f_blocks = sbp->sb_dblocks - lsize;
1121         statp->f_bfree = statp->f_bavail =
1122                                 sbp->sb_fdblocks - XFS_ALLOC_SET_ASIDE(mp);
1123         fakeinos = statp->f_bfree << sbp->sb_inopblog;
1124 #if XFS_BIG_INUMS
1125         fakeinos += mp->m_inoadd;
1126 #endif
1127         statp->f_files =
1128             MIN(sbp->sb_icount + fakeinos, (__uint64_t)XFS_MAXINUMBER);
1129         if (mp->m_maxicount)
1130 #if XFS_BIG_INUMS
1131                 if (!mp->m_inoadd)
1132 #endif
1133                         statp->f_files = min_t(typeof(statp->f_files),
1134                                                 statp->f_files,
1135                                                 mp->m_maxicount);
1136         statp->f_ffree = statp->f_files - (sbp->sb_icount - sbp->sb_ifree);
1137         spin_unlock(&mp->m_sb_lock);
1138
1139         XFS_QM_DQSTATVFS(XFS_I(dentry->d_inode), statp);
1140         return 0;
1141 }
1142
1143 STATIC int
1144 xfs_fs_remount(
1145         struct super_block      *sb,
1146         int                     *flags,
1147         char                    *options)
1148 {
1149         struct xfs_mount        *mp = XFS_M(sb);
1150         substring_t             args[MAX_OPT_ARGS];
1151         char                    *p;
1152
1153         while ((p = strsep(&options, ",")) != NULL) {
1154                 int token;
1155
1156                 if (!*p)
1157                         continue;
1158
1159                 token = match_token(p, tokens, args);
1160                 switch (token) {
1161                 case Opt_barrier:
1162                         mp->m_flags |= XFS_MOUNT_BARRIER;
1163
1164                         /*
1165                          * Test if barriers are actually working if we can,
1166                          * else delay this check until the filesystem is
1167                          * marked writeable.
1168                          */
1169                         if (!(mp->m_flags & XFS_MOUNT_RDONLY))
1170                                 xfs_mountfs_check_barriers(mp);
1171                         break;
1172                 case Opt_nobarrier:
1173                         mp->m_flags &= ~XFS_MOUNT_BARRIER;
1174                         break;
1175                 default:
1176                         /*
1177                          * Logically we would return an error here to prevent
1178                          * users from believing they might have changed
1179                          * mount options using remount which can't be changed.
1180                          *
1181                          * But unfortunately mount(8) adds all options from
1182                          * mtab and fstab to the mount arguments in some cases
1183                          * so we can't blindly reject options, but have to
1184                          * check for each specified option if it actually
1185                          * differs from the currently set option and only
1186                          * reject it if that's the case.
1187                          *
1188                          * Until that is implemented we return success for
1189                          * every remount request, and silently ignore all
1190                          * options that we can't actually change.
1191                          */
1192 #if 0
1193                         printk(KERN_INFO
1194         "XFS: mount option \"%s\" not supported for remount\n", p);
1195                         return -EINVAL;
1196 #else
1197                         break;
1198 #endif
1199                 }
1200         }
1201
1202         /* rw/ro -> rw */
1203         if ((mp->m_flags & XFS_MOUNT_RDONLY) && !(*flags & MS_RDONLY)) {
1204                 mp->m_flags &= ~XFS_MOUNT_RDONLY;
1205                 if (mp->m_flags & XFS_MOUNT_BARRIER)
1206                         xfs_mountfs_check_barriers(mp);
1207         }
1208
1209         /* rw -> ro */
1210         if (!(mp->m_flags & XFS_MOUNT_RDONLY) && (*flags & MS_RDONLY)) {
1211                 xfs_quiesce_data(mp);
1212                 xfs_quiesce_attr(mp);
1213                 mp->m_flags |= XFS_MOUNT_RDONLY;
1214         }
1215
1216         return 0;
1217 }
1218
1219 /*
1220  * Second stage of a freeze. The data is already frozen so we only
1221  * need to take care of the metadata. Once that's done write a dummy
1222  * record to dirty the log in case of a crash while frozen.
1223  */
1224 STATIC void
1225 xfs_fs_lockfs(
1226         struct super_block      *sb)
1227 {
1228         struct xfs_mount        *mp = XFS_M(sb);
1229
1230         xfs_quiesce_attr(mp);
1231         xfs_fs_log_dummy(mp);
1232 }
1233
1234 STATIC int
1235 xfs_fs_show_options(
1236         struct seq_file         *m,
1237         struct vfsmount         *mnt)
1238 {
1239         return -xfs_showargs(XFS_M(mnt->mnt_sb), m);
1240 }
1241
1242 STATIC int
1243 xfs_fs_quotasync(
1244         struct super_block      *sb,
1245         int                     type)
1246 {
1247         return -XFS_QM_QUOTACTL(XFS_M(sb), Q_XQUOTASYNC, 0, NULL);
1248 }
1249
1250 STATIC int
1251 xfs_fs_getxstate(
1252         struct super_block      *sb,
1253         struct fs_quota_stat    *fqs)
1254 {
1255         return -XFS_QM_QUOTACTL(XFS_M(sb), Q_XGETQSTAT, 0, (caddr_t)fqs);
1256 }
1257
1258 STATIC int
1259 xfs_fs_setxstate(
1260         struct super_block      *sb,
1261         unsigned int            flags,
1262         int                     op)
1263 {
1264         return -XFS_QM_QUOTACTL(XFS_M(sb), op, 0, (caddr_t)&flags);
1265 }
1266
1267 STATIC int
1268 xfs_fs_getxquota(
1269         struct super_block      *sb,
1270         int                     type,
1271         qid_t                   id,
1272         struct fs_disk_quota    *fdq)
1273 {
1274         return -XFS_QM_QUOTACTL(XFS_M(sb),
1275                                  (type == USRQUOTA) ? Q_XGETQUOTA :
1276                                   ((type == GRPQUOTA) ? Q_XGETGQUOTA :
1277                                    Q_XGETPQUOTA), id, (caddr_t)fdq);
1278 }
1279
1280 STATIC int
1281 xfs_fs_setxquota(
1282         struct super_block      *sb,
1283         int                     type,
1284         qid_t                   id,
1285         struct fs_disk_quota    *fdq)
1286 {
1287         return -XFS_QM_QUOTACTL(XFS_M(sb),
1288                                  (type == USRQUOTA) ? Q_XSETQLIM :
1289                                   ((type == GRPQUOTA) ? Q_XSETGQLIM :
1290                                    Q_XSETPQLIM), id, (caddr_t)fdq);
1291 }
1292
1293 /*
1294  * This function fills in xfs_mount_t fields based on mount args.
1295  * Note: the superblock has _not_ yet been read in.
1296  */
1297 STATIC int
1298 xfs_start_flags(
1299         struct xfs_mount_args   *ap,
1300         struct xfs_mount        *mp)
1301 {
1302         int                     error;
1303
1304         /* Values are in BBs */
1305         if ((ap->flags & XFSMNT_NOALIGN) != XFSMNT_NOALIGN) {
1306                 /*
1307                  * At this point the superblock has not been read
1308                  * in, therefore we do not know the block size.
1309                  * Before the mount call ends we will convert
1310                  * these to FSBs.
1311                  */
1312                 mp->m_dalign = ap->sunit;
1313                 mp->m_swidth = ap->swidth;
1314         }
1315
1316         if (ap->logbufs != -1 &&
1317             ap->logbufs != 0 &&
1318             (ap->logbufs < XLOG_MIN_ICLOGS ||
1319              ap->logbufs > XLOG_MAX_ICLOGS)) {
1320                 cmn_err(CE_WARN,
1321                         "XFS: invalid logbufs value: %d [not %d-%d]",
1322                         ap->logbufs, XLOG_MIN_ICLOGS, XLOG_MAX_ICLOGS);
1323                 return XFS_ERROR(EINVAL);
1324         }
1325         mp->m_logbufs = ap->logbufs;
1326         if (ap->logbufsize != -1 &&
1327             ap->logbufsize !=  0 &&
1328             (ap->logbufsize < XLOG_MIN_RECORD_BSIZE ||
1329              ap->logbufsize > XLOG_MAX_RECORD_BSIZE ||
1330              !is_power_of_2(ap->logbufsize))) {
1331                 cmn_err(CE_WARN,
1332         "XFS: invalid logbufsize: %d [not 16k,32k,64k,128k or 256k]",
1333                         ap->logbufsize);
1334                 return XFS_ERROR(EINVAL);
1335         }
1336
1337         error = ENOMEM;
1338
1339         mp->m_logbsize = ap->logbufsize;
1340         mp->m_fsname_len = strlen(ap->fsname) + 1;
1341
1342         mp->m_fsname = kstrdup(ap->fsname, GFP_KERNEL);
1343         if (!mp->m_fsname)
1344                 goto out;
1345
1346         if (ap->rtname[0]) {
1347                 mp->m_rtname = kstrdup(ap->rtname, GFP_KERNEL);
1348                 if (!mp->m_rtname)
1349                         goto out_free_fsname;
1350
1351         }
1352
1353         if (ap->logname[0]) {
1354                 mp->m_logname = kstrdup(ap->logname, GFP_KERNEL);
1355                 if (!mp->m_logname)
1356                         goto out_free_rtname;
1357         }
1358
1359         if (ap->flags & XFSMNT_WSYNC)
1360                 mp->m_flags |= XFS_MOUNT_WSYNC;
1361 #if XFS_BIG_INUMS
1362         if (ap->flags & XFSMNT_INO64) {
1363                 mp->m_flags |= XFS_MOUNT_INO64;
1364                 mp->m_inoadd = XFS_INO64_OFFSET;
1365         }
1366 #endif
1367         if (ap->flags & XFSMNT_RETERR)
1368                 mp->m_flags |= XFS_MOUNT_RETERR;
1369         if (ap->flags & XFSMNT_NOALIGN)
1370                 mp->m_flags |= XFS_MOUNT_NOALIGN;
1371         if (ap->flags & XFSMNT_SWALLOC)
1372                 mp->m_flags |= XFS_MOUNT_SWALLOC;
1373         if (ap->flags & XFSMNT_OSYNCISOSYNC)
1374                 mp->m_flags |= XFS_MOUNT_OSYNCISOSYNC;
1375         if (ap->flags & XFSMNT_32BITINODES)
1376                 mp->m_flags |= XFS_MOUNT_32BITINODES;
1377
1378         if (ap->flags & XFSMNT_IOSIZE) {
1379                 if (ap->iosizelog > XFS_MAX_IO_LOG ||
1380                     ap->iosizelog < XFS_MIN_IO_LOG) {
1381                         cmn_err(CE_WARN,
1382                 "XFS: invalid log iosize: %d [not %d-%d]",
1383                                 ap->iosizelog, XFS_MIN_IO_LOG,
1384                                 XFS_MAX_IO_LOG);
1385                         return XFS_ERROR(EINVAL);
1386                 }
1387
1388                 mp->m_flags |= XFS_MOUNT_DFLT_IOSIZE;
1389                 mp->m_readio_log = mp->m_writeio_log = ap->iosizelog;
1390         }
1391
1392         if (ap->flags & XFSMNT_IKEEP)
1393                 mp->m_flags |= XFS_MOUNT_IKEEP;
1394         if (ap->flags & XFSMNT_DIRSYNC)
1395                 mp->m_flags |= XFS_MOUNT_DIRSYNC;
1396         if (ap->flags & XFSMNT_ATTR2)
1397                 mp->m_flags |= XFS_MOUNT_ATTR2;
1398         if (ap->flags & XFSMNT_NOATTR2)
1399                 mp->m_flags |= XFS_MOUNT_NOATTR2;
1400
1401         if (ap->flags2 & XFSMNT2_COMPAT_IOSIZE)
1402                 mp->m_flags |= XFS_MOUNT_COMPAT_IOSIZE;
1403
1404         /*
1405          * no recovery flag requires a read-only mount
1406          */
1407         if (ap->flags & XFSMNT_NORECOVERY) {
1408                 if (!(mp->m_flags & XFS_MOUNT_RDONLY)) {
1409                         cmn_err(CE_WARN,
1410         "XFS: tried to mount a FS read-write without recovery!");
1411                         return XFS_ERROR(EINVAL);
1412                 }
1413                 mp->m_flags |= XFS_MOUNT_NORECOVERY;
1414         }
1415
1416         if (ap->flags & XFSMNT_NOUUID)
1417                 mp->m_flags |= XFS_MOUNT_NOUUID;
1418         if (ap->flags & XFSMNT_BARRIER)
1419                 mp->m_flags |= XFS_MOUNT_BARRIER;
1420         else
1421                 mp->m_flags &= ~XFS_MOUNT_BARRIER;
1422
1423         if (ap->flags2 & XFSMNT2_FILESTREAMS)
1424                 mp->m_flags |= XFS_MOUNT_FILESTREAMS;
1425
1426         if (ap->flags & XFSMNT_DMAPI)
1427                 mp->m_flags |= XFS_MOUNT_DMAPI;
1428         return 0;
1429
1430
1431  out_free_rtname:
1432         kfree(mp->m_rtname);
1433  out_free_fsname:
1434         kfree(mp->m_fsname);
1435  out:
1436         return error;
1437 }
1438
1439 /*
1440  * This function fills in xfs_mount_t fields based on mount args.
1441  * Note: the superblock _has_ now been read in.
1442  */
1443 STATIC int
1444 xfs_finish_flags(
1445         struct xfs_mount_args   *ap,
1446         struct xfs_mount        *mp)
1447 {
1448         int                     ronly = (mp->m_flags & XFS_MOUNT_RDONLY);
1449
1450         /* Fail a mount where the logbuf is smaller then the log stripe */
1451         if (xfs_sb_version_haslogv2(&mp->m_sb)) {
1452                 if ((ap->logbufsize <= 0) &&
1453                     (mp->m_sb.sb_logsunit > XLOG_BIG_RECORD_BSIZE)) {
1454                         mp->m_logbsize = mp->m_sb.sb_logsunit;
1455                 } else if (ap->logbufsize > 0 &&
1456                            ap->logbufsize < mp->m_sb.sb_logsunit) {
1457                         cmn_err(CE_WARN,
1458         "XFS: logbuf size must be greater than or equal to log stripe size");
1459                         return XFS_ERROR(EINVAL);
1460                 }
1461         } else {
1462                 /* Fail a mount if the logbuf is larger than 32K */
1463                 if (ap->logbufsize > XLOG_BIG_RECORD_BSIZE) {
1464                         cmn_err(CE_WARN,
1465         "XFS: logbuf size for version 1 logs must be 16K or 32K");
1466                         return XFS_ERROR(EINVAL);
1467                 }
1468         }
1469
1470         /*
1471          * mkfs'ed attr2 will turn on attr2 mount unless explicitly
1472          * told by noattr2 to turn it off
1473          */
1474         if (xfs_sb_version_hasattr2(&mp->m_sb) &&
1475             !(ap->flags & XFSMNT_NOATTR2))
1476                 mp->m_flags |= XFS_MOUNT_ATTR2;
1477
1478         /*
1479          * prohibit r/w mounts of read-only filesystems
1480          */
1481         if ((mp->m_sb.sb_flags & XFS_SBF_READONLY) && !ronly) {
1482                 cmn_err(CE_WARN,
1483         "XFS: cannot mount a read-only filesystem as read-write");
1484                 return XFS_ERROR(EROFS);
1485         }
1486
1487         /*
1488          * check for shared mount.
1489          */
1490         if (ap->flags & XFSMNT_SHARED) {
1491                 if (!xfs_sb_version_hasshared(&mp->m_sb))
1492                         return XFS_ERROR(EINVAL);
1493
1494                 /*
1495                  * For IRIX 6.5, shared mounts must have the shared
1496                  * version bit set, have the persistent readonly
1497                  * field set, must be version 0 and can only be mounted
1498                  * read-only.
1499                  */
1500                 if (!ronly || !(mp->m_sb.sb_flags & XFS_SBF_READONLY) ||
1501                      (mp->m_sb.sb_shared_vn != 0))
1502                         return XFS_ERROR(EINVAL);
1503
1504                 mp->m_flags |= XFS_MOUNT_SHARED;
1505
1506                 /*
1507                  * Shared XFS V0 can't deal with DMI.  Return EINVAL.
1508                  */
1509                 if (mp->m_sb.sb_shared_vn == 0 && (ap->flags & XFSMNT_DMAPI))
1510                         return XFS_ERROR(EINVAL);
1511         }
1512
1513         if (ap->flags & XFSMNT_UQUOTA) {
1514                 mp->m_qflags |= (XFS_UQUOTA_ACCT | XFS_UQUOTA_ACTIVE);
1515                 if (ap->flags & XFSMNT_UQUOTAENF)
1516                         mp->m_qflags |= XFS_UQUOTA_ENFD;
1517         }
1518
1519         if (ap->flags & XFSMNT_GQUOTA) {
1520                 mp->m_qflags |= (XFS_GQUOTA_ACCT | XFS_GQUOTA_ACTIVE);
1521                 if (ap->flags & XFSMNT_GQUOTAENF)
1522                         mp->m_qflags |= XFS_OQUOTA_ENFD;
1523         } else if (ap->flags & XFSMNT_PQUOTA) {
1524                 mp->m_qflags |= (XFS_PQUOTA_ACCT | XFS_PQUOTA_ACTIVE);
1525                 if (ap->flags & XFSMNT_PQUOTAENF)
1526                         mp->m_qflags |= XFS_OQUOTA_ENFD;
1527         }
1528
1529         return 0;
1530 }
1531
1532 STATIC int
1533 xfs_fs_fill_super(
1534         struct super_block      *sb,
1535         void                    *data,
1536         int                     silent)
1537 {
1538         struct inode            *root;
1539         struct xfs_mount        *mp = NULL;
1540         struct xfs_mount_args   *args;
1541         int                     flags = 0, error = ENOMEM;
1542
1543         args = xfs_args_allocate(sb, silent);
1544         if (!args)
1545                 return -ENOMEM;
1546
1547         mp = kzalloc(sizeof(struct xfs_mount), GFP_KERNEL);
1548         if (!mp)
1549                 goto out_free_args;
1550
1551         spin_lock_init(&mp->m_sb_lock);
1552         mutex_init(&mp->m_ilock);
1553         mutex_init(&mp->m_growlock);
1554         atomic_set(&mp->m_active_trans, 0);
1555         INIT_LIST_HEAD(&mp->m_sync_list);
1556         spin_lock_init(&mp->m_sync_lock);
1557         init_waitqueue_head(&mp->m_wait_single_sync_task);
1558
1559         mp->m_super = sb;
1560         sb->s_fs_info = mp;
1561
1562         if (sb->s_flags & MS_RDONLY)
1563                 mp->m_flags |= XFS_MOUNT_RDONLY;
1564
1565         error = xfs_parseargs(mp, (char *)data, args, 0);
1566         if (error)
1567                 goto out_free_mp;
1568
1569         sb_min_blocksize(sb, BBSIZE);
1570         sb->s_xattr = xfs_xattr_handlers;
1571         sb->s_export_op = &xfs_export_operations;
1572         sb->s_qcop = &xfs_quotactl_operations;
1573         sb->s_op = &xfs_super_operations;
1574
1575         error = xfs_dmops_get(mp, args);
1576         if (error)
1577                 goto out_free_mp;
1578         error = xfs_qmops_get(mp, args);
1579         if (error)
1580                 goto out_put_dmops;
1581
1582         if (args->flags & XFSMNT_QUIET)
1583                 flags |= XFS_MFSI_QUIET;
1584
1585         error = xfs_open_devices(mp, args);
1586         if (error)
1587                 goto out_put_qmops;
1588
1589         if (xfs_icsb_init_counters(mp))
1590                 mp->m_flags |= XFS_MOUNT_NO_PERCPU_SB;
1591
1592         /*
1593          * Setup flags based on mount(2) options and then the superblock
1594          */
1595         error = xfs_start_flags(args, mp);
1596         if (error)
1597                 goto out_free_fsname;
1598         error = xfs_readsb(mp, flags);
1599         if (error)
1600                 goto out_free_fsname;
1601         error = xfs_finish_flags(args, mp);
1602         if (error)
1603                 goto out_free_sb;
1604
1605         error = xfs_setup_devices(mp);
1606         if (error)
1607                 goto out_free_sb;
1608
1609         if (mp->m_flags & XFS_MOUNT_BARRIER)
1610                 xfs_mountfs_check_barriers(mp);
1611
1612         error = xfs_filestream_mount(mp);
1613         if (error)
1614                 goto out_free_sb;
1615
1616         error = xfs_mountfs(mp);
1617         if (error)
1618                 goto out_filestream_unmount;
1619
1620         XFS_SEND_MOUNT(mp, DM_RIGHT_NULL, args->mtpt, args->fsname);
1621
1622         sb->s_dirt = 1;
1623         sb->s_magic = XFS_SB_MAGIC;
1624         sb->s_blocksize = mp->m_sb.sb_blocksize;
1625         sb->s_blocksize_bits = ffs(sb->s_blocksize) - 1;
1626         sb->s_maxbytes = xfs_max_file_offset(sb->s_blocksize_bits);
1627         sb->s_time_gran = 1;
1628         set_posix_acl_flag(sb);
1629
1630         root = igrab(VFS_I(mp->m_rootip));
1631         if (!root) {
1632                 error = ENOENT;
1633                 goto fail_unmount;
1634         }
1635         if (is_bad_inode(root)) {
1636                 error = EINVAL;
1637                 goto fail_vnrele;
1638         }
1639         sb->s_root = d_alloc_root(root);
1640         if (!sb->s_root) {
1641                 error = ENOMEM;
1642                 goto fail_vnrele;
1643         }
1644
1645         error = xfs_syncd_init(mp);
1646         if (error)
1647                 goto fail_vnrele;
1648
1649         xfs_itrace_exit(XFS_I(sb->s_root->d_inode));
1650
1651         kfree(args);
1652         return 0;
1653
1654  out_filestream_unmount:
1655         xfs_filestream_unmount(mp);
1656  out_free_sb:
1657         xfs_freesb(mp);
1658  out_free_fsname:
1659         xfs_free_fsname(mp);
1660         xfs_icsb_destroy_counters(mp);
1661         xfs_close_devices(mp);
1662  out_put_qmops:
1663         xfs_qmops_put(mp);
1664  out_put_dmops:
1665         xfs_dmops_put(mp);
1666  out_free_mp:
1667         kfree(mp);
1668  out_free_args:
1669         kfree(args);
1670         return -error;
1671
1672  fail_vnrele:
1673         if (sb->s_root) {
1674                 dput(sb->s_root);
1675                 sb->s_root = NULL;
1676         } else {
1677                 iput(root);
1678         }
1679
1680  fail_unmount:
1681         /*
1682          * Blow away any referenced inode in the filestreams cache.
1683          * This can and will cause log traffic as inodes go inactive
1684          * here.
1685          */
1686         xfs_filestream_unmount(mp);
1687
1688         XFS_bflush(mp->m_ddev_targp);
1689         error = xfs_unmount_flush(mp, 0);
1690         WARN_ON(error);
1691
1692         xfs_unmountfs(mp);
1693         goto out_free_sb;
1694 }
1695
1696 STATIC int
1697 xfs_fs_get_sb(
1698         struct file_system_type *fs_type,
1699         int                     flags,
1700         const char              *dev_name,
1701         void                    *data,
1702         struct vfsmount         *mnt)
1703 {
1704         return get_sb_bdev(fs_type, flags, dev_name, data, xfs_fs_fill_super,
1705                            mnt);
1706 }
1707
1708 static struct super_operations xfs_super_operations = {
1709         .alloc_inode            = xfs_fs_alloc_inode,
1710         .destroy_inode          = xfs_fs_destroy_inode,
1711         .write_inode            = xfs_fs_write_inode,
1712         .clear_inode            = xfs_fs_clear_inode,
1713         .put_super              = xfs_fs_put_super,
1714         .write_super            = xfs_fs_write_super,
1715         .sync_fs                = xfs_fs_sync_super,
1716         .write_super_lockfs     = xfs_fs_lockfs,
1717         .statfs                 = xfs_fs_statfs,
1718         .remount_fs             = xfs_fs_remount,
1719         .show_options           = xfs_fs_show_options,
1720 };
1721
1722 static struct quotactl_ops xfs_quotactl_operations = {
1723         .quota_sync             = xfs_fs_quotasync,
1724         .get_xstate             = xfs_fs_getxstate,
1725         .set_xstate             = xfs_fs_setxstate,
1726         .get_xquota             = xfs_fs_getxquota,
1727         .set_xquota             = xfs_fs_setxquota,
1728 };
1729
1730 static struct file_system_type xfs_fs_type = {
1731         .owner                  = THIS_MODULE,
1732         .name                   = "xfs",
1733         .get_sb                 = xfs_fs_get_sb,
1734         .kill_sb                = kill_block_super,
1735         .fs_flags               = FS_REQUIRES_DEV,
1736 };
1737
1738 STATIC int __init
1739 xfs_alloc_trace_bufs(void)
1740 {
1741 #ifdef XFS_ALLOC_TRACE
1742         xfs_alloc_trace_buf = ktrace_alloc(XFS_ALLOC_TRACE_SIZE, KM_MAYFAIL);
1743         if (!xfs_alloc_trace_buf)
1744                 goto out;
1745 #endif
1746 #ifdef XFS_BMAP_TRACE
1747         xfs_bmap_trace_buf = ktrace_alloc(XFS_BMAP_TRACE_SIZE, KM_MAYFAIL);
1748         if (!xfs_bmap_trace_buf)
1749                 goto out_free_alloc_trace;
1750 #endif
1751 #ifdef XFS_BTREE_TRACE
1752         xfs_allocbt_trace_buf = ktrace_alloc(XFS_ALLOCBT_TRACE_SIZE,
1753                                              KM_MAYFAIL);
1754         if (!xfs_allocbt_trace_buf)
1755                 goto out_free_bmap_trace;
1756
1757         xfs_inobt_trace_buf = ktrace_alloc(XFS_INOBT_TRACE_SIZE, KM_MAYFAIL);
1758         if (!xfs_inobt_trace_buf)
1759                 goto out_free_allocbt_trace;
1760
1761         xfs_bmbt_trace_buf = ktrace_alloc(XFS_BMBT_TRACE_SIZE, KM_MAYFAIL);
1762         if (!xfs_bmbt_trace_buf)
1763                 goto out_free_inobt_trace;
1764 #endif
1765 #ifdef XFS_ATTR_TRACE
1766         xfs_attr_trace_buf = ktrace_alloc(XFS_ATTR_TRACE_SIZE, KM_MAYFAIL);
1767         if (!xfs_attr_trace_buf)
1768                 goto out_free_bmbt_trace;
1769 #endif
1770 #ifdef XFS_DIR2_TRACE
1771         xfs_dir2_trace_buf = ktrace_alloc(XFS_DIR2_GTRACE_SIZE, KM_MAYFAIL);
1772         if (!xfs_dir2_trace_buf)
1773                 goto out_free_attr_trace;
1774 #endif
1775
1776         return 0;
1777
1778 #ifdef XFS_DIR2_TRACE
1779  out_free_attr_trace:
1780 #endif
1781 #ifdef XFS_ATTR_TRACE
1782         ktrace_free(xfs_attr_trace_buf);
1783  out_free_bmbt_trace:
1784 #endif
1785 #ifdef XFS_BTREE_TRACE
1786         ktrace_free(xfs_bmbt_trace_buf);
1787  out_free_inobt_trace:
1788         ktrace_free(xfs_inobt_trace_buf);
1789  out_free_allocbt_trace:
1790         ktrace_free(xfs_allocbt_trace_buf);
1791  out_free_bmap_trace:
1792 #endif
1793 #ifdef XFS_BMAP_TRACE
1794         ktrace_free(xfs_bmap_trace_buf);
1795  out_free_alloc_trace:
1796 #endif
1797 #ifdef XFS_ALLOC_TRACE
1798         ktrace_free(xfs_alloc_trace_buf);
1799  out:
1800 #endif
1801         return -ENOMEM;
1802 }
1803
1804 STATIC void
1805 xfs_free_trace_bufs(void)
1806 {
1807 #ifdef XFS_DIR2_TRACE
1808         ktrace_free(xfs_dir2_trace_buf);
1809 #endif
1810 #ifdef XFS_ATTR_TRACE
1811         ktrace_free(xfs_attr_trace_buf);
1812 #endif
1813 #ifdef XFS_BTREE_TRACE
1814         ktrace_free(xfs_bmbt_trace_buf);
1815         ktrace_free(xfs_inobt_trace_buf);
1816         ktrace_free(xfs_allocbt_trace_buf);
1817 #endif
1818 #ifdef XFS_BMAP_TRACE
1819         ktrace_free(xfs_bmap_trace_buf);
1820 #endif
1821 #ifdef XFS_ALLOC_TRACE
1822         ktrace_free(xfs_alloc_trace_buf);
1823 #endif
1824 }
1825
1826 STATIC int __init
1827 xfs_init_zones(void)
1828 {
1829
1830         xfs_ioend_zone = kmem_zone_init(sizeof(xfs_ioend_t), "xfs_ioend");
1831         if (!xfs_ioend_zone)
1832                 goto out;
1833
1834         xfs_ioend_pool = mempool_create_slab_pool(4 * MAX_BUF_PER_PAGE,
1835                                                   xfs_ioend_zone);
1836         if (!xfs_ioend_pool)
1837                 goto out_destroy_ioend_zone;
1838
1839         xfs_log_ticket_zone = kmem_zone_init(sizeof(xlog_ticket_t),
1840                                                 "xfs_log_ticket");
1841         if (!xfs_log_ticket_zone)
1842                 goto out_destroy_ioend_pool;
1843
1844         xfs_bmap_free_item_zone = kmem_zone_init(sizeof(xfs_bmap_free_item_t),
1845                                                 "xfs_bmap_free_item");
1846         if (!xfs_bmap_free_item_zone)
1847                 goto out_destroy_log_ticket_zone;
1848
1849         xfs_btree_cur_zone = kmem_zone_init(sizeof(xfs_btree_cur_t),
1850                                                 "xfs_btree_cur");
1851         if (!xfs_btree_cur_zone)
1852                 goto out_destroy_bmap_free_item_zone;
1853
1854         xfs_da_state_zone = kmem_zone_init(sizeof(xfs_da_state_t),
1855                                                 "xfs_da_state");
1856         if (!xfs_da_state_zone)
1857                 goto out_destroy_btree_cur_zone;
1858
1859         xfs_dabuf_zone = kmem_zone_init(sizeof(xfs_dabuf_t), "xfs_dabuf");
1860         if (!xfs_dabuf_zone)
1861                 goto out_destroy_da_state_zone;
1862
1863         xfs_ifork_zone = kmem_zone_init(sizeof(xfs_ifork_t), "xfs_ifork");
1864         if (!xfs_ifork_zone)
1865                 goto out_destroy_dabuf_zone;
1866
1867         xfs_trans_zone = kmem_zone_init(sizeof(xfs_trans_t), "xfs_trans");
1868         if (!xfs_trans_zone)
1869                 goto out_destroy_ifork_zone;
1870
1871         /*
1872          * The size of the zone allocated buf log item is the maximum
1873          * size possible under XFS.  This wastes a little bit of memory,
1874          * but it is much faster.
1875          */
1876         xfs_buf_item_zone = kmem_zone_init((sizeof(xfs_buf_log_item_t) +
1877                                 (((XFS_MAX_BLOCKSIZE / XFS_BLI_CHUNK) /
1878                                   NBWORD) * sizeof(int))), "xfs_buf_item");
1879         if (!xfs_buf_item_zone)
1880                 goto out_destroy_trans_zone;
1881
1882         xfs_efd_zone = kmem_zone_init((sizeof(xfs_efd_log_item_t) +
1883                         ((XFS_EFD_MAX_FAST_EXTENTS - 1) *
1884                                  sizeof(xfs_extent_t))), "xfs_efd_item");
1885         if (!xfs_efd_zone)
1886                 goto out_destroy_buf_item_zone;
1887
1888         xfs_efi_zone = kmem_zone_init((sizeof(xfs_efi_log_item_t) +
1889                         ((XFS_EFI_MAX_FAST_EXTENTS - 1) *
1890                                 sizeof(xfs_extent_t))), "xfs_efi_item");
1891         if (!xfs_efi_zone)
1892                 goto out_destroy_efd_zone;
1893
1894         xfs_inode_zone =
1895                 kmem_zone_init_flags(sizeof(xfs_inode_t), "xfs_inode",
1896                         KM_ZONE_HWALIGN | KM_ZONE_RECLAIM | KM_ZONE_SPREAD,
1897                         xfs_fs_inode_init_once);
1898         if (!xfs_inode_zone)
1899                 goto out_destroy_efi_zone;
1900
1901         xfs_ili_zone =
1902                 kmem_zone_init_flags(sizeof(xfs_inode_log_item_t), "xfs_ili",
1903                                         KM_ZONE_SPREAD, NULL);
1904         if (!xfs_ili_zone)
1905                 goto out_destroy_inode_zone;
1906
1907 #ifdef CONFIG_XFS_POSIX_ACL
1908         xfs_acl_zone = kmem_zone_init(sizeof(xfs_acl_t), "xfs_acl");
1909         if (!xfs_acl_zone)
1910                 goto out_destroy_ili_zone;
1911 #endif
1912
1913         return 0;
1914
1915 #ifdef CONFIG_XFS_POSIX_ACL
1916  out_destroy_ili_zone:
1917 #endif
1918         kmem_zone_destroy(xfs_ili_zone);
1919  out_destroy_inode_zone:
1920         kmem_zone_destroy(xfs_inode_zone);
1921  out_destroy_efi_zone:
1922         kmem_zone_destroy(xfs_efi_zone);
1923  out_destroy_efd_zone:
1924         kmem_zone_destroy(xfs_efd_zone);
1925  out_destroy_buf_item_zone:
1926         kmem_zone_destroy(xfs_buf_item_zone);
1927  out_destroy_trans_zone:
1928         kmem_zone_destroy(xfs_trans_zone);
1929  out_destroy_ifork_zone:
1930         kmem_zone_destroy(xfs_ifork_zone);
1931  out_destroy_dabuf_zone:
1932         kmem_zone_destroy(xfs_dabuf_zone);
1933  out_destroy_da_state_zone:
1934         kmem_zone_destroy(xfs_da_state_zone);
1935  out_destroy_btree_cur_zone:
1936         kmem_zone_destroy(xfs_btree_cur_zone);
1937  out_destroy_bmap_free_item_zone:
1938         kmem_zone_destroy(xfs_bmap_free_item_zone);
1939  out_destroy_log_ticket_zone:
1940         kmem_zone_destroy(xfs_log_ticket_zone);
1941  out_destroy_ioend_pool:
1942         mempool_destroy(xfs_ioend_pool);
1943  out_destroy_ioend_zone:
1944         kmem_zone_destroy(xfs_ioend_zone);
1945  out:
1946         return -ENOMEM;
1947 }
1948
1949 STATIC void
1950 xfs_destroy_zones(void)
1951 {
1952 #ifdef CONFIG_XFS_POSIX_ACL
1953         kmem_zone_destroy(xfs_acl_zone);
1954 #endif
1955         kmem_zone_destroy(xfs_ili_zone);
1956         kmem_zone_destroy(xfs_inode_zone);
1957         kmem_zone_destroy(xfs_efi_zone);
1958         kmem_zone_destroy(xfs_efd_zone);
1959         kmem_zone_destroy(xfs_buf_item_zone);
1960         kmem_zone_destroy(xfs_trans_zone);
1961         kmem_zone_destroy(xfs_ifork_zone);
1962         kmem_zone_destroy(xfs_dabuf_zone);
1963         kmem_zone_destroy(xfs_da_state_zone);
1964         kmem_zone_destroy(xfs_btree_cur_zone);
1965         kmem_zone_destroy(xfs_bmap_free_item_zone);
1966         kmem_zone_destroy(xfs_log_ticket_zone);
1967         mempool_destroy(xfs_ioend_pool);
1968         kmem_zone_destroy(xfs_ioend_zone);
1969
1970 }
1971
1972 STATIC int __init
1973 init_xfs_fs(void)
1974 {
1975         int                     error;
1976         static char             message[] __initdata = KERN_INFO \
1977                 XFS_VERSION_STRING " with " XFS_BUILD_OPTIONS " enabled\n";
1978
1979         printk(message);
1980
1981         ktrace_init(64);
1982         vn_init();
1983         xfs_dir_startup();
1984
1985         error = xfs_init_zones();
1986         if (error)
1987                 goto out;
1988
1989         error = xfs_alloc_trace_bufs();
1990         if (error)
1991                 goto out_destroy_zones;
1992
1993         error = xfs_mru_cache_init();
1994         if (error)
1995                 goto out_free_trace_buffers;
1996
1997         error = xfs_filestream_init();
1998         if (error)
1999                 goto out_mru_cache_uninit;
2000
2001         error = xfs_buf_init();
2002         if (error)
2003                 goto out_filestream_uninit;
2004
2005         error = xfs_init_procfs();
2006         if (error)
2007                 goto out_buf_terminate;
2008
2009         error = xfs_sysctl_register();
2010         if (error)
2011                 goto out_cleanup_procfs;
2012
2013         vfs_initquota();
2014
2015         error = register_filesystem(&xfs_fs_type);
2016         if (error)
2017                 goto out_sysctl_unregister;
2018         return 0;
2019
2020  out_sysctl_unregister:
2021         xfs_sysctl_unregister();
2022  out_cleanup_procfs:
2023         xfs_cleanup_procfs();
2024  out_buf_terminate:
2025         xfs_buf_terminate();
2026  out_filestream_uninit:
2027         xfs_filestream_uninit();
2028  out_mru_cache_uninit:
2029         xfs_mru_cache_uninit();
2030  out_free_trace_buffers:
2031         xfs_free_trace_bufs();
2032  out_destroy_zones:
2033         xfs_destroy_zones();
2034  out:
2035         return error;
2036 }
2037
2038 STATIC void __exit
2039 exit_xfs_fs(void)
2040 {
2041         vfs_exitquota();
2042         unregister_filesystem(&xfs_fs_type);
2043         xfs_sysctl_unregister();
2044         xfs_cleanup_procfs();
2045         xfs_buf_terminate();
2046         xfs_filestream_uninit();
2047         xfs_mru_cache_uninit();
2048         xfs_free_trace_bufs();
2049         xfs_destroy_zones();
2050         ktrace_uninit();
2051 }
2052
2053 module_init(init_xfs_fs);
2054 module_exit(exit_xfs_fs);
2055
2056 MODULE_AUTHOR("Silicon Graphics, Inc.");
2057 MODULE_DESCRIPTION(XFS_VERSION_STRING " with " XFS_BUILD_OPTIONS " enabled");
2058 MODULE_LICENSE("GPL");