xfs: optimize bio handling in the buffer writeback path
[cascardo/linux.git] / fs / xfs / 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_shared.h"
21 #include "xfs_format.h"
22 #include "xfs_log_format.h"
23 #include "xfs_trans_resv.h"
24 #include "xfs_sb.h"
25 #include "xfs_mount.h"
26 #include "xfs_da_format.h"
27 #include "xfs_inode.h"
28 #include "xfs_btree.h"
29 #include "xfs_bmap.h"
30 #include "xfs_alloc.h"
31 #include "xfs_error.h"
32 #include "xfs_fsops.h"
33 #include "xfs_trans.h"
34 #include "xfs_buf_item.h"
35 #include "xfs_log.h"
36 #include "xfs_log_priv.h"
37 #include "xfs_da_btree.h"
38 #include "xfs_dir2.h"
39 #include "xfs_extfree_item.h"
40 #include "xfs_mru_cache.h"
41 #include "xfs_inode_item.h"
42 #include "xfs_icache.h"
43 #include "xfs_trace.h"
44 #include "xfs_icreate_item.h"
45 #include "xfs_filestream.h"
46 #include "xfs_quota.h"
47 #include "xfs_sysfs.h"
48 #include "xfs_ondisk.h"
49
50 #include <linux/namei.h>
51 #include <linux/init.h>
52 #include <linux/slab.h>
53 #include <linux/mount.h>
54 #include <linux/mempool.h>
55 #include <linux/writeback.h>
56 #include <linux/kthread.h>
57 #include <linux/freezer.h>
58 #include <linux/parser.h>
59
60 static const struct super_operations xfs_super_operations;
61 struct bio_set *xfs_ioend_bioset;
62
63 static struct kset *xfs_kset;           /* top-level xfs sysfs dir */
64 #ifdef DEBUG
65 static struct xfs_kobj xfs_dbg_kobj;    /* global debug sysfs attrs */
66 #endif
67
68 /*
69  * Table driven mount option parser.
70  */
71 enum {
72         Opt_logbufs, Opt_logbsize, Opt_logdev, Opt_rtdev, Opt_biosize,
73         Opt_wsync, Opt_noalign, Opt_swalloc, Opt_sunit, Opt_swidth, Opt_nouuid,
74         Opt_mtpt, Opt_grpid, Opt_nogrpid, Opt_bsdgroups, Opt_sysvgroups,
75         Opt_allocsize, Opt_norecovery, Opt_barrier, Opt_nobarrier,
76         Opt_inode64, Opt_inode32, Opt_ikeep, Opt_noikeep,
77         Opt_largeio, Opt_nolargeio, Opt_attr2, Opt_noattr2, Opt_filestreams,
78         Opt_quota, Opt_noquota, Opt_usrquota, Opt_grpquota, Opt_prjquota,
79         Opt_uquota, Opt_gquota, Opt_pquota,
80         Opt_uqnoenforce, Opt_gqnoenforce, Opt_pqnoenforce, Opt_qnoenforce,
81         Opt_discard, Opt_nodiscard, Opt_dax, Opt_err,
82 };
83
84 static const match_table_t tokens = {
85         {Opt_logbufs,   "logbufs=%u"},  /* number of XFS log buffers */
86         {Opt_logbsize,  "logbsize=%s"}, /* size of XFS log buffers */
87         {Opt_logdev,    "logdev=%s"},   /* log device */
88         {Opt_rtdev,     "rtdev=%s"},    /* realtime I/O device */
89         {Opt_biosize,   "biosize=%u"},  /* log2 of preferred buffered io size */
90         {Opt_wsync,     "wsync"},       /* safe-mode nfs compatible mount */
91         {Opt_noalign,   "noalign"},     /* turn off stripe alignment */
92         {Opt_swalloc,   "swalloc"},     /* turn on stripe width allocation */
93         {Opt_sunit,     "sunit=%u"},    /* data volume stripe unit */
94         {Opt_swidth,    "swidth=%u"},   /* data volume stripe width */
95         {Opt_nouuid,    "nouuid"},      /* ignore filesystem UUID */
96         {Opt_mtpt,      "mtpt"},        /* filesystem mount point */
97         {Opt_grpid,     "grpid"},       /* group-ID from parent directory */
98         {Opt_nogrpid,   "nogrpid"},     /* group-ID from current process */
99         {Opt_bsdgroups, "bsdgroups"},   /* group-ID from parent directory */
100         {Opt_sysvgroups,"sysvgroups"},  /* group-ID from current process */
101         {Opt_allocsize, "allocsize=%s"},/* preferred allocation size */
102         {Opt_norecovery,"norecovery"},  /* don't run XFS recovery */
103         {Opt_barrier,   "barrier"},     /* use writer barriers for log write and
104                                          * unwritten extent conversion */
105         {Opt_nobarrier, "nobarrier"},   /* .. disable */
106         {Opt_inode64,   "inode64"},     /* inodes can be allocated anywhere */
107         {Opt_inode32,   "inode32"},     /* inode allocation limited to
108                                          * XFS_MAXINUMBER_32 */
109         {Opt_ikeep,     "ikeep"},       /* do not free empty inode clusters */
110         {Opt_noikeep,   "noikeep"},     /* free empty inode clusters */
111         {Opt_largeio,   "largeio"},     /* report large I/O sizes in stat() */
112         {Opt_nolargeio, "nolargeio"},   /* do not report large I/O sizes
113                                          * in stat(). */
114         {Opt_attr2,     "attr2"},       /* do use attr2 attribute format */
115         {Opt_noattr2,   "noattr2"},     /* do not use attr2 attribute format */
116         {Opt_filestreams,"filestreams"},/* use filestreams allocator */
117         {Opt_quota,     "quota"},       /* disk quotas (user) */
118         {Opt_noquota,   "noquota"},     /* no quotas */
119         {Opt_usrquota,  "usrquota"},    /* user quota enabled */
120         {Opt_grpquota,  "grpquota"},    /* group quota enabled */
121         {Opt_prjquota,  "prjquota"},    /* project quota enabled */
122         {Opt_uquota,    "uquota"},      /* user quota (IRIX variant) */
123         {Opt_gquota,    "gquota"},      /* group quota (IRIX variant) */
124         {Opt_pquota,    "pquota"},      /* project quota (IRIX variant) */
125         {Opt_uqnoenforce,"uqnoenforce"},/* user quota limit enforcement */
126         {Opt_gqnoenforce,"gqnoenforce"},/* group quota limit enforcement */
127         {Opt_pqnoenforce,"pqnoenforce"},/* project quota limit enforcement */
128         {Opt_qnoenforce, "qnoenforce"}, /* same as uqnoenforce */
129         {Opt_discard,   "discard"},     /* Discard unused blocks */
130         {Opt_nodiscard, "nodiscard"},   /* Do not discard unused blocks */
131
132         {Opt_dax,       "dax"},         /* Enable direct access to bdev pages */
133         {Opt_err,       NULL},
134 };
135
136
137 STATIC int
138 suffix_kstrtoint(const substring_t *s, unsigned int base, int *res)
139 {
140         int     last, shift_left_factor = 0, _res;
141         char    *value;
142         int     ret = 0;
143
144         value = match_strdup(s);
145         if (!value)
146                 return -ENOMEM;
147
148         last = strlen(value) - 1;
149         if (value[last] == 'K' || value[last] == 'k') {
150                 shift_left_factor = 10;
151                 value[last] = '\0';
152         }
153         if (value[last] == 'M' || value[last] == 'm') {
154                 shift_left_factor = 20;
155                 value[last] = '\0';
156         }
157         if (value[last] == 'G' || value[last] == 'g') {
158                 shift_left_factor = 30;
159                 value[last] = '\0';
160         }
161
162         if (kstrtoint(value, base, &_res))
163                 ret = -EINVAL;
164         kfree(value);
165         *res = _res << shift_left_factor;
166         return ret;
167 }
168
169 /*
170  * This function fills in xfs_mount_t fields based on mount args.
171  * Note: the superblock has _not_ yet been read in.
172  *
173  * Note that this function leaks the various device name allocations on
174  * failure.  The caller takes care of them.
175  *
176  * *sb is const because this is also used to test options on the remount
177  * path, and we don't want this to have any side effects at remount time.
178  * Today this function does not change *sb, but just to future-proof...
179  */
180 STATIC int
181 xfs_parseargs(
182         struct xfs_mount        *mp,
183         char                    *options)
184 {
185         const struct super_block *sb = mp->m_super;
186         char                    *p;
187         substring_t             args[MAX_OPT_ARGS];
188         int                     dsunit = 0;
189         int                     dswidth = 0;
190         int                     iosize = 0;
191         __uint8_t               iosizelog = 0;
192
193         /*
194          * set up the mount name first so all the errors will refer to the
195          * correct device.
196          */
197         mp->m_fsname = kstrndup(sb->s_id, MAXNAMELEN, GFP_KERNEL);
198         if (!mp->m_fsname)
199                 return -ENOMEM;
200         mp->m_fsname_len = strlen(mp->m_fsname) + 1;
201
202         /*
203          * Copy binary VFS mount flags we are interested in.
204          */
205         if (sb->s_flags & MS_RDONLY)
206                 mp->m_flags |= XFS_MOUNT_RDONLY;
207         if (sb->s_flags & MS_DIRSYNC)
208                 mp->m_flags |= XFS_MOUNT_DIRSYNC;
209         if (sb->s_flags & MS_SYNCHRONOUS)
210                 mp->m_flags |= XFS_MOUNT_WSYNC;
211
212         /*
213          * Set some default flags that could be cleared by the mount option
214          * parsing.
215          */
216         mp->m_flags |= XFS_MOUNT_BARRIER;
217         mp->m_flags |= XFS_MOUNT_COMPAT_IOSIZE;
218
219         /*
220          * These can be overridden by the mount option parsing.
221          */
222         mp->m_logbufs = -1;
223         mp->m_logbsize = -1;
224
225         if (!options)
226                 goto done;
227
228         while ((p = strsep(&options, ",")) != NULL) {
229                 int             token;
230
231                 if (!*p)
232                         continue;
233
234                 token = match_token(p, tokens, args);
235                 switch (token) {
236                 case Opt_logbufs:
237                         if (match_int(args, &mp->m_logbufs))
238                                 return -EINVAL;
239                         break;
240                 case Opt_logbsize:
241                         if (suffix_kstrtoint(args, 10, &mp->m_logbsize))
242                                 return -EINVAL;
243                         break;
244                 case Opt_logdev:
245                         mp->m_logname = match_strdup(args);
246                         if (!mp->m_logname)
247                                 return -ENOMEM;
248                         break;
249                 case Opt_mtpt:
250                         xfs_warn(mp, "%s option not allowed on this system", p);
251                         return -EINVAL;
252                 case Opt_rtdev:
253                         mp->m_rtname = match_strdup(args);
254                         if (!mp->m_rtname)
255                                 return -ENOMEM;
256                         break;
257                 case Opt_allocsize:
258                 case Opt_biosize:
259                         if (suffix_kstrtoint(args, 10, &iosize))
260                                 return -EINVAL;
261                         iosizelog = ffs(iosize) - 1;
262                         break;
263                 case Opt_grpid:
264                 case Opt_bsdgroups:
265                         mp->m_flags |= XFS_MOUNT_GRPID;
266                         break;
267                 case Opt_nogrpid:
268                 case Opt_sysvgroups:
269                         mp->m_flags &= ~XFS_MOUNT_GRPID;
270                         break;
271                 case Opt_wsync:
272                         mp->m_flags |= XFS_MOUNT_WSYNC;
273                         break;
274                 case Opt_norecovery:
275                         mp->m_flags |= XFS_MOUNT_NORECOVERY;
276                         break;
277                 case Opt_noalign:
278                         mp->m_flags |= XFS_MOUNT_NOALIGN;
279                         break;
280                 case Opt_swalloc:
281                         mp->m_flags |= XFS_MOUNT_SWALLOC;
282                         break;
283                 case Opt_sunit:
284                         if (match_int(args, &dsunit))
285                                 return -EINVAL;
286                         break;
287                 case Opt_swidth:
288                         if (match_int(args, &dswidth))
289                                 return -EINVAL;
290                         break;
291                 case Opt_inode32:
292                         mp->m_flags |= XFS_MOUNT_SMALL_INUMS;
293                         break;
294                 case Opt_inode64:
295                         mp->m_flags &= ~XFS_MOUNT_SMALL_INUMS;
296                         break;
297                 case Opt_nouuid:
298                         mp->m_flags |= XFS_MOUNT_NOUUID;
299                         break;
300                 case Opt_barrier:
301                         mp->m_flags |= XFS_MOUNT_BARRIER;
302                         break;
303                 case Opt_nobarrier:
304                         mp->m_flags &= ~XFS_MOUNT_BARRIER;
305                         break;
306                 case Opt_ikeep:
307                         mp->m_flags |= XFS_MOUNT_IKEEP;
308                         break;
309                 case Opt_noikeep:
310                         mp->m_flags &= ~XFS_MOUNT_IKEEP;
311                         break;
312                 case Opt_largeio:
313                         mp->m_flags &= ~XFS_MOUNT_COMPAT_IOSIZE;
314                         break;
315                 case Opt_nolargeio:
316                         mp->m_flags |= XFS_MOUNT_COMPAT_IOSIZE;
317                         break;
318                 case Opt_attr2:
319                         mp->m_flags |= XFS_MOUNT_ATTR2;
320                         break;
321                 case Opt_noattr2:
322                         mp->m_flags &= ~XFS_MOUNT_ATTR2;
323                         mp->m_flags |= XFS_MOUNT_NOATTR2;
324                         break;
325                 case Opt_filestreams:
326                         mp->m_flags |= XFS_MOUNT_FILESTREAMS;
327                         break;
328                 case Opt_noquota:
329                         mp->m_qflags &= ~XFS_ALL_QUOTA_ACCT;
330                         mp->m_qflags &= ~XFS_ALL_QUOTA_ENFD;
331                         mp->m_qflags &= ~XFS_ALL_QUOTA_ACTIVE;
332                         break;
333                 case Opt_quota:
334                 case Opt_uquota:
335                 case Opt_usrquota:
336                         mp->m_qflags |= (XFS_UQUOTA_ACCT | XFS_UQUOTA_ACTIVE |
337                                          XFS_UQUOTA_ENFD);
338                         break;
339                 case Opt_qnoenforce:
340                 case Opt_uqnoenforce:
341                         mp->m_qflags |= (XFS_UQUOTA_ACCT | XFS_UQUOTA_ACTIVE);
342                         mp->m_qflags &= ~XFS_UQUOTA_ENFD;
343                         break;
344                 case Opt_pquota:
345                 case Opt_prjquota:
346                         mp->m_qflags |= (XFS_PQUOTA_ACCT | XFS_PQUOTA_ACTIVE |
347                                          XFS_PQUOTA_ENFD);
348                         break;
349                 case Opt_pqnoenforce:
350                         mp->m_qflags |= (XFS_PQUOTA_ACCT | XFS_PQUOTA_ACTIVE);
351                         mp->m_qflags &= ~XFS_PQUOTA_ENFD;
352                 case Opt_gquota:
353                 case Opt_grpquota:
354                         mp->m_qflags |= (XFS_GQUOTA_ACCT | XFS_GQUOTA_ACTIVE |
355                                          XFS_GQUOTA_ENFD);
356                         break;
357                 case Opt_gqnoenforce:
358                         mp->m_qflags |= (XFS_GQUOTA_ACCT | XFS_GQUOTA_ACTIVE);
359                         mp->m_qflags &= ~XFS_GQUOTA_ENFD;
360                         break;
361                 case Opt_discard:
362                         mp->m_flags |= XFS_MOUNT_DISCARD;
363                         break;
364                 case Opt_nodiscard:
365                         mp->m_flags &= ~XFS_MOUNT_DISCARD;
366                         break;
367 #ifdef CONFIG_FS_DAX
368                 case Opt_dax:
369                         mp->m_flags |= XFS_MOUNT_DAX;
370                         break;
371 #endif
372                 default:
373                         xfs_warn(mp, "unknown mount option [%s].", p);
374                         return -EINVAL;
375                 }
376         }
377
378         /*
379          * no recovery flag requires a read-only mount
380          */
381         if ((mp->m_flags & XFS_MOUNT_NORECOVERY) &&
382             !(mp->m_flags & XFS_MOUNT_RDONLY)) {
383                 xfs_warn(mp, "no-recovery mounts must be read-only.");
384                 return -EINVAL;
385         }
386
387         if ((mp->m_flags & XFS_MOUNT_NOALIGN) && (dsunit || dswidth)) {
388                 xfs_warn(mp,
389         "sunit and swidth options incompatible with the noalign option");
390                 return -EINVAL;
391         }
392
393 #ifndef CONFIG_XFS_QUOTA
394         if (XFS_IS_QUOTA_RUNNING(mp)) {
395                 xfs_warn(mp, "quota support not available in this kernel.");
396                 return -EINVAL;
397         }
398 #endif
399
400         if ((dsunit && !dswidth) || (!dsunit && dswidth)) {
401                 xfs_warn(mp, "sunit and swidth must be specified together");
402                 return -EINVAL;
403         }
404
405         if (dsunit && (dswidth % dsunit != 0)) {
406                 xfs_warn(mp,
407         "stripe width (%d) must be a multiple of the stripe unit (%d)",
408                         dswidth, dsunit);
409                 return -EINVAL;
410         }
411
412 done:
413         if (dsunit && !(mp->m_flags & XFS_MOUNT_NOALIGN)) {
414                 /*
415                  * At this point the superblock has not been read
416                  * in, therefore we do not know the block size.
417                  * Before the mount call ends we will convert
418                  * these to FSBs.
419                  */
420                 mp->m_dalign = dsunit;
421                 mp->m_swidth = dswidth;
422         }
423
424         if (mp->m_logbufs != -1 &&
425             mp->m_logbufs != 0 &&
426             (mp->m_logbufs < XLOG_MIN_ICLOGS ||
427              mp->m_logbufs > XLOG_MAX_ICLOGS)) {
428                 xfs_warn(mp, "invalid logbufs value: %d [not %d-%d]",
429                         mp->m_logbufs, XLOG_MIN_ICLOGS, XLOG_MAX_ICLOGS);
430                 return -EINVAL;
431         }
432         if (mp->m_logbsize != -1 &&
433             mp->m_logbsize !=  0 &&
434             (mp->m_logbsize < XLOG_MIN_RECORD_BSIZE ||
435              mp->m_logbsize > XLOG_MAX_RECORD_BSIZE ||
436              !is_power_of_2(mp->m_logbsize))) {
437                 xfs_warn(mp,
438                         "invalid logbufsize: %d [not 16k,32k,64k,128k or 256k]",
439                         mp->m_logbsize);
440                 return -EINVAL;
441         }
442
443         if (iosizelog) {
444                 if (iosizelog > XFS_MAX_IO_LOG ||
445                     iosizelog < XFS_MIN_IO_LOG) {
446                         xfs_warn(mp, "invalid log iosize: %d [not %d-%d]",
447                                 iosizelog, XFS_MIN_IO_LOG,
448                                 XFS_MAX_IO_LOG);
449                         return -EINVAL;
450                 }
451
452                 mp->m_flags |= XFS_MOUNT_DFLT_IOSIZE;
453                 mp->m_readio_log = iosizelog;
454                 mp->m_writeio_log = iosizelog;
455         }
456
457         return 0;
458 }
459
460 struct proc_xfs_info {
461         uint64_t        flag;
462         char            *str;
463 };
464
465 STATIC int
466 xfs_showargs(
467         struct xfs_mount        *mp,
468         struct seq_file         *m)
469 {
470         static struct proc_xfs_info xfs_info_set[] = {
471                 /* the few simple ones we can get from the mount struct */
472                 { XFS_MOUNT_IKEEP,              ",ikeep" },
473                 { XFS_MOUNT_WSYNC,              ",wsync" },
474                 { XFS_MOUNT_NOALIGN,            ",noalign" },
475                 { XFS_MOUNT_SWALLOC,            ",swalloc" },
476                 { XFS_MOUNT_NOUUID,             ",nouuid" },
477                 { XFS_MOUNT_NORECOVERY,         ",norecovery" },
478                 { XFS_MOUNT_ATTR2,              ",attr2" },
479                 { XFS_MOUNT_FILESTREAMS,        ",filestreams" },
480                 { XFS_MOUNT_GRPID,              ",grpid" },
481                 { XFS_MOUNT_DISCARD,            ",discard" },
482                 { XFS_MOUNT_SMALL_INUMS,        ",inode32" },
483                 { XFS_MOUNT_DAX,                ",dax" },
484                 { 0, NULL }
485         };
486         static struct proc_xfs_info xfs_info_unset[] = {
487                 /* the few simple ones we can get from the mount struct */
488                 { XFS_MOUNT_COMPAT_IOSIZE,      ",largeio" },
489                 { XFS_MOUNT_BARRIER,            ",nobarrier" },
490                 { XFS_MOUNT_SMALL_INUMS,        ",inode64" },
491                 { 0, NULL }
492         };
493         struct proc_xfs_info    *xfs_infop;
494
495         for (xfs_infop = xfs_info_set; xfs_infop->flag; xfs_infop++) {
496                 if (mp->m_flags & xfs_infop->flag)
497                         seq_puts(m, xfs_infop->str);
498         }
499         for (xfs_infop = xfs_info_unset; xfs_infop->flag; xfs_infop++) {
500                 if (!(mp->m_flags & xfs_infop->flag))
501                         seq_puts(m, xfs_infop->str);
502         }
503
504         if (mp->m_flags & XFS_MOUNT_DFLT_IOSIZE)
505                 seq_printf(m, ",allocsize=%dk",
506                                 (int)(1 << mp->m_writeio_log) >> 10);
507
508         if (mp->m_logbufs > 0)
509                 seq_printf(m, ",logbufs=%d", mp->m_logbufs);
510         if (mp->m_logbsize > 0)
511                 seq_printf(m, ",logbsize=%dk", mp->m_logbsize >> 10);
512
513         if (mp->m_logname)
514                 seq_show_option(m, "logdev", mp->m_logname);
515         if (mp->m_rtname)
516                 seq_show_option(m, "rtdev", mp->m_rtname);
517
518         if (mp->m_dalign > 0)
519                 seq_printf(m, ",sunit=%d",
520                                 (int)XFS_FSB_TO_BB(mp, mp->m_dalign));
521         if (mp->m_swidth > 0)
522                 seq_printf(m, ",swidth=%d",
523                                 (int)XFS_FSB_TO_BB(mp, mp->m_swidth));
524
525         if (mp->m_qflags & (XFS_UQUOTA_ACCT|XFS_UQUOTA_ENFD))
526                 seq_puts(m, ",usrquota");
527         else if (mp->m_qflags & XFS_UQUOTA_ACCT)
528                 seq_puts(m, ",uqnoenforce");
529
530         if (mp->m_qflags & XFS_PQUOTA_ACCT) {
531                 if (mp->m_qflags & XFS_PQUOTA_ENFD)
532                         seq_puts(m, ",prjquota");
533                 else
534                         seq_puts(m, ",pqnoenforce");
535         }
536         if (mp->m_qflags & XFS_GQUOTA_ACCT) {
537                 if (mp->m_qflags & XFS_GQUOTA_ENFD)
538                         seq_puts(m, ",grpquota");
539                 else
540                         seq_puts(m, ",gqnoenforce");
541         }
542
543         if (!(mp->m_qflags & XFS_ALL_QUOTA_ACCT))
544                 seq_puts(m, ",noquota");
545
546         return 0;
547 }
548 __uint64_t
549 xfs_max_file_offset(
550         unsigned int            blockshift)
551 {
552         unsigned int            pagefactor = 1;
553         unsigned int            bitshift = BITS_PER_LONG - 1;
554
555         /* Figure out maximum filesize, on Linux this can depend on
556          * the filesystem blocksize (on 32 bit platforms).
557          * __block_write_begin does this in an [unsigned] long...
558          *      page->index << (PAGE_CACHE_SHIFT - bbits)
559          * So, for page sized blocks (4K on 32 bit platforms),
560          * this wraps at around 8Tb (hence MAX_LFS_FILESIZE which is
561          *      (((u64)PAGE_CACHE_SIZE << (BITS_PER_LONG-1))-1)
562          * but for smaller blocksizes it is less (bbits = log2 bsize).
563          * Note1: get_block_t takes a long (implicit cast from above)
564          * Note2: The Large Block Device (LBD and HAVE_SECTOR_T) patch
565          * can optionally convert the [unsigned] long from above into
566          * an [unsigned] long long.
567          */
568
569 #if BITS_PER_LONG == 32
570 # if defined(CONFIG_LBDAF)
571         ASSERT(sizeof(sector_t) == 8);
572         pagefactor = PAGE_CACHE_SIZE;
573         bitshift = BITS_PER_LONG;
574 # else
575         pagefactor = PAGE_CACHE_SIZE >> (PAGE_CACHE_SHIFT - blockshift);
576 # endif
577 #endif
578
579         return (((__uint64_t)pagefactor) << bitshift) - 1;
580 }
581
582 /*
583  * Set parameters for inode allocation heuristics, taking into account
584  * filesystem size and inode32/inode64 mount options; i.e. specifically
585  * whether or not XFS_MOUNT_SMALL_INUMS is set.
586  *
587  * Inode allocation patterns are altered only if inode32 is requested
588  * (XFS_MOUNT_SMALL_INUMS), and the filesystem is sufficiently large.
589  * If altered, XFS_MOUNT_32BITINODES is set as well.
590  *
591  * An agcount independent of that in the mount structure is provided
592  * because in the growfs case, mp->m_sb.sb_agcount is not yet updated
593  * to the potentially higher ag count.
594  *
595  * Returns the maximum AG index which may contain inodes.
596  */
597 xfs_agnumber_t
598 xfs_set_inode_alloc(
599         struct xfs_mount *mp,
600         xfs_agnumber_t  agcount)
601 {
602         xfs_agnumber_t  index;
603         xfs_agnumber_t  maxagi = 0;
604         xfs_sb_t        *sbp = &mp->m_sb;
605         xfs_agnumber_t  max_metadata;
606         xfs_agino_t     agino;
607         xfs_ino_t       ino;
608
609         /*
610          * Calculate how much should be reserved for inodes to meet
611          * the max inode percentage.  Used only for inode32.
612          */
613         if (mp->m_maxicount) {
614                 __uint64_t      icount;
615
616                 icount = sbp->sb_dblocks * sbp->sb_imax_pct;
617                 do_div(icount, 100);
618                 icount += sbp->sb_agblocks - 1;
619                 do_div(icount, sbp->sb_agblocks);
620                 max_metadata = icount;
621         } else {
622                 max_metadata = agcount;
623         }
624
625         /* Get the last possible inode in the filesystem */
626         agino = XFS_OFFBNO_TO_AGINO(mp, sbp->sb_agblocks - 1, 0);
627         ino = XFS_AGINO_TO_INO(mp, agcount - 1, agino);
628
629         /*
630          * If user asked for no more than 32-bit inodes, and the fs is
631          * sufficiently large, set XFS_MOUNT_32BITINODES if we must alter
632          * the allocator to accommodate the request.
633          */
634         if ((mp->m_flags & XFS_MOUNT_SMALL_INUMS) && ino > XFS_MAXINUMBER_32)
635                 mp->m_flags |= XFS_MOUNT_32BITINODES;
636         else
637                 mp->m_flags &= ~XFS_MOUNT_32BITINODES;
638
639         for (index = 0; index < agcount; index++) {
640                 struct xfs_perag        *pag;
641
642                 ino = XFS_AGINO_TO_INO(mp, index, agino);
643
644                 pag = xfs_perag_get(mp, index);
645
646                 if (mp->m_flags & XFS_MOUNT_32BITINODES) {
647                         if (ino > XFS_MAXINUMBER_32) {
648                                 pag->pagi_inodeok = 0;
649                                 pag->pagf_metadata = 0;
650                         } else {
651                                 pag->pagi_inodeok = 1;
652                                 maxagi++;
653                                 if (index < max_metadata)
654                                         pag->pagf_metadata = 1;
655                                 else
656                                         pag->pagf_metadata = 0;
657                         }
658                 } else {
659                         pag->pagi_inodeok = 1;
660                         pag->pagf_metadata = 0;
661                 }
662
663                 xfs_perag_put(pag);
664         }
665
666         return (mp->m_flags & XFS_MOUNT_32BITINODES) ? maxagi : agcount;
667 }
668
669 STATIC int
670 xfs_blkdev_get(
671         xfs_mount_t             *mp,
672         const char              *name,
673         struct block_device     **bdevp)
674 {
675         int                     error = 0;
676
677         *bdevp = blkdev_get_by_path(name, FMODE_READ|FMODE_WRITE|FMODE_EXCL,
678                                     mp);
679         if (IS_ERR(*bdevp)) {
680                 error = PTR_ERR(*bdevp);
681                 xfs_warn(mp, "Invalid device [%s], error=%d", name, error);
682         }
683
684         return error;
685 }
686
687 STATIC void
688 xfs_blkdev_put(
689         struct block_device     *bdev)
690 {
691         if (bdev)
692                 blkdev_put(bdev, FMODE_READ|FMODE_WRITE|FMODE_EXCL);
693 }
694
695 void
696 xfs_blkdev_issue_flush(
697         xfs_buftarg_t           *buftarg)
698 {
699         blkdev_issue_flush(buftarg->bt_bdev, GFP_NOFS, NULL);
700 }
701
702 STATIC void
703 xfs_close_devices(
704         struct xfs_mount        *mp)
705 {
706         if (mp->m_logdev_targp && mp->m_logdev_targp != mp->m_ddev_targp) {
707                 struct block_device *logdev = mp->m_logdev_targp->bt_bdev;
708                 xfs_free_buftarg(mp, mp->m_logdev_targp);
709                 xfs_blkdev_put(logdev);
710         }
711         if (mp->m_rtdev_targp) {
712                 struct block_device *rtdev = mp->m_rtdev_targp->bt_bdev;
713                 xfs_free_buftarg(mp, mp->m_rtdev_targp);
714                 xfs_blkdev_put(rtdev);
715         }
716         xfs_free_buftarg(mp, mp->m_ddev_targp);
717 }
718
719 /*
720  * The file system configurations are:
721  *      (1) device (partition) with data and internal log
722  *      (2) logical volume with data and log subvolumes.
723  *      (3) logical volume with data, log, and realtime subvolumes.
724  *
725  * We only have to handle opening the log and realtime volumes here if
726  * they are present.  The data subvolume has already been opened by
727  * get_sb_bdev() and is stored in sb->s_bdev.
728  */
729 STATIC int
730 xfs_open_devices(
731         struct xfs_mount        *mp)
732 {
733         struct block_device     *ddev = mp->m_super->s_bdev;
734         struct block_device     *logdev = NULL, *rtdev = NULL;
735         int                     error;
736
737         /*
738          * Open real time and log devices - order is important.
739          */
740         if (mp->m_logname) {
741                 error = xfs_blkdev_get(mp, mp->m_logname, &logdev);
742                 if (error)
743                         goto out;
744         }
745
746         if (mp->m_rtname) {
747                 error = xfs_blkdev_get(mp, mp->m_rtname, &rtdev);
748                 if (error)
749                         goto out_close_logdev;
750
751                 if (rtdev == ddev || rtdev == logdev) {
752                         xfs_warn(mp,
753         "Cannot mount filesystem with identical rtdev and ddev/logdev.");
754                         error = -EINVAL;
755                         goto out_close_rtdev;
756                 }
757         }
758
759         /*
760          * Setup xfs_mount buffer target pointers
761          */
762         error = -ENOMEM;
763         mp->m_ddev_targp = xfs_alloc_buftarg(mp, ddev);
764         if (!mp->m_ddev_targp)
765                 goto out_close_rtdev;
766
767         if (rtdev) {
768                 mp->m_rtdev_targp = xfs_alloc_buftarg(mp, rtdev);
769                 if (!mp->m_rtdev_targp)
770                         goto out_free_ddev_targ;
771         }
772
773         if (logdev && logdev != ddev) {
774                 mp->m_logdev_targp = xfs_alloc_buftarg(mp, logdev);
775                 if (!mp->m_logdev_targp)
776                         goto out_free_rtdev_targ;
777         } else {
778                 mp->m_logdev_targp = mp->m_ddev_targp;
779         }
780
781         return 0;
782
783  out_free_rtdev_targ:
784         if (mp->m_rtdev_targp)
785                 xfs_free_buftarg(mp, mp->m_rtdev_targp);
786  out_free_ddev_targ:
787         xfs_free_buftarg(mp, mp->m_ddev_targp);
788  out_close_rtdev:
789         xfs_blkdev_put(rtdev);
790  out_close_logdev:
791         if (logdev && logdev != ddev)
792                 xfs_blkdev_put(logdev);
793  out:
794         return error;
795 }
796
797 /*
798  * Setup xfs_mount buffer target pointers based on superblock
799  */
800 STATIC int
801 xfs_setup_devices(
802         struct xfs_mount        *mp)
803 {
804         int                     error;
805
806         error = xfs_setsize_buftarg(mp->m_ddev_targp, mp->m_sb.sb_sectsize);
807         if (error)
808                 return error;
809
810         if (mp->m_logdev_targp && mp->m_logdev_targp != mp->m_ddev_targp) {
811                 unsigned int    log_sector_size = BBSIZE;
812
813                 if (xfs_sb_version_hassector(&mp->m_sb))
814                         log_sector_size = mp->m_sb.sb_logsectsize;
815                 error = xfs_setsize_buftarg(mp->m_logdev_targp,
816                                             log_sector_size);
817                 if (error)
818                         return error;
819         }
820         if (mp->m_rtdev_targp) {
821                 error = xfs_setsize_buftarg(mp->m_rtdev_targp,
822                                             mp->m_sb.sb_sectsize);
823                 if (error)
824                         return error;
825         }
826
827         return 0;
828 }
829
830 STATIC int
831 xfs_init_mount_workqueues(
832         struct xfs_mount        *mp)
833 {
834         mp->m_buf_workqueue = alloc_workqueue("xfs-buf/%s",
835                         WQ_MEM_RECLAIM|WQ_FREEZABLE, 1, mp->m_fsname);
836         if (!mp->m_buf_workqueue)
837                 goto out;
838
839         mp->m_data_workqueue = alloc_workqueue("xfs-data/%s",
840                         WQ_MEM_RECLAIM|WQ_FREEZABLE, 0, mp->m_fsname);
841         if (!mp->m_data_workqueue)
842                 goto out_destroy_buf;
843
844         mp->m_unwritten_workqueue = alloc_workqueue("xfs-conv/%s",
845                         WQ_MEM_RECLAIM|WQ_FREEZABLE, 0, mp->m_fsname);
846         if (!mp->m_unwritten_workqueue)
847                 goto out_destroy_data_iodone_queue;
848
849         mp->m_cil_workqueue = alloc_workqueue("xfs-cil/%s",
850                         WQ_MEM_RECLAIM|WQ_FREEZABLE, 0, mp->m_fsname);
851         if (!mp->m_cil_workqueue)
852                 goto out_destroy_unwritten;
853
854         mp->m_reclaim_workqueue = alloc_workqueue("xfs-reclaim/%s",
855                         WQ_MEM_RECLAIM|WQ_FREEZABLE, 0, mp->m_fsname);
856         if (!mp->m_reclaim_workqueue)
857                 goto out_destroy_cil;
858
859         mp->m_log_workqueue = alloc_workqueue("xfs-log/%s",
860                         WQ_MEM_RECLAIM|WQ_FREEZABLE|WQ_HIGHPRI, 0,
861                         mp->m_fsname);
862         if (!mp->m_log_workqueue)
863                 goto out_destroy_reclaim;
864
865         mp->m_eofblocks_workqueue = alloc_workqueue("xfs-eofblocks/%s",
866                         WQ_MEM_RECLAIM|WQ_FREEZABLE, 0, mp->m_fsname);
867         if (!mp->m_eofblocks_workqueue)
868                 goto out_destroy_log;
869
870         return 0;
871
872 out_destroy_log:
873         destroy_workqueue(mp->m_log_workqueue);
874 out_destroy_reclaim:
875         destroy_workqueue(mp->m_reclaim_workqueue);
876 out_destroy_cil:
877         destroy_workqueue(mp->m_cil_workqueue);
878 out_destroy_unwritten:
879         destroy_workqueue(mp->m_unwritten_workqueue);
880 out_destroy_data_iodone_queue:
881         destroy_workqueue(mp->m_data_workqueue);
882 out_destroy_buf:
883         destroy_workqueue(mp->m_buf_workqueue);
884 out:
885         return -ENOMEM;
886 }
887
888 STATIC void
889 xfs_destroy_mount_workqueues(
890         struct xfs_mount        *mp)
891 {
892         destroy_workqueue(mp->m_eofblocks_workqueue);
893         destroy_workqueue(mp->m_log_workqueue);
894         destroy_workqueue(mp->m_reclaim_workqueue);
895         destroy_workqueue(mp->m_cil_workqueue);
896         destroy_workqueue(mp->m_data_workqueue);
897         destroy_workqueue(mp->m_unwritten_workqueue);
898         destroy_workqueue(mp->m_buf_workqueue);
899 }
900
901 /*
902  * Flush all dirty data to disk. Must not be called while holding an XFS_ILOCK
903  * or a page lock. We use sync_inodes_sb() here to ensure we block while waiting
904  * for IO to complete so that we effectively throttle multiple callers to the
905  * rate at which IO is completing.
906  */
907 void
908 xfs_flush_inodes(
909         struct xfs_mount        *mp)
910 {
911         struct super_block      *sb = mp->m_super;
912
913         if (down_read_trylock(&sb->s_umount)) {
914                 sync_inodes_sb(sb);
915                 up_read(&sb->s_umount);
916         }
917 }
918
919 /* Catch misguided souls that try to use this interface on XFS */
920 STATIC struct inode *
921 xfs_fs_alloc_inode(
922         struct super_block      *sb)
923 {
924         BUG();
925         return NULL;
926 }
927
928 /*
929  * Now that the generic code is guaranteed not to be accessing
930  * the linux inode, we can reclaim the inode.
931  */
932 STATIC void
933 xfs_fs_destroy_inode(
934         struct inode            *inode)
935 {
936         struct xfs_inode        *ip = XFS_I(inode);
937
938         trace_xfs_destroy_inode(ip);
939
940         XFS_STATS_INC(ip->i_mount, vn_reclaim);
941
942         ASSERT(XFS_FORCED_SHUTDOWN(ip->i_mount) || ip->i_delayed_blks == 0);
943
944         /*
945          * We should never get here with one of the reclaim flags already set.
946          */
947         ASSERT_ALWAYS(!xfs_iflags_test(ip, XFS_IRECLAIMABLE));
948         ASSERT_ALWAYS(!xfs_iflags_test(ip, XFS_IRECLAIM));
949
950         /*
951          * We always use background reclaim here because even if the
952          * inode is clean, it still may be under IO and hence we have
953          * to take the flush lock. The background reclaim path handles
954          * this more efficiently than we can here, so simply let background
955          * reclaim tear down all inodes.
956          */
957         xfs_inode_set_reclaim_tag(ip);
958 }
959
960 /*
961  * Slab object creation initialisation for the XFS inode.
962  * This covers only the idempotent fields in the XFS inode;
963  * all other fields need to be initialised on allocation
964  * from the slab. This avoids the need to repeatedly initialise
965  * fields in the xfs inode that left in the initialise state
966  * when freeing the inode.
967  */
968 STATIC void
969 xfs_fs_inode_init_once(
970         void                    *inode)
971 {
972         struct xfs_inode        *ip = inode;
973
974         memset(ip, 0, sizeof(struct xfs_inode));
975
976         /* vfs inode */
977         inode_init_once(VFS_I(ip));
978
979         /* xfs inode */
980         atomic_set(&ip->i_pincount, 0);
981         spin_lock_init(&ip->i_flags_lock);
982
983         mrlock_init(&ip->i_mmaplock, MRLOCK_ALLOW_EQUAL_PRI|MRLOCK_BARRIER,
984                      "xfsino", ip->i_ino);
985         mrlock_init(&ip->i_lock, MRLOCK_ALLOW_EQUAL_PRI|MRLOCK_BARRIER,
986                      "xfsino", ip->i_ino);
987 }
988
989 STATIC void
990 xfs_fs_evict_inode(
991         struct inode            *inode)
992 {
993         xfs_inode_t             *ip = XFS_I(inode);
994
995         ASSERT(!rwsem_is_locked(&ip->i_iolock.mr_lock));
996
997         trace_xfs_evict_inode(ip);
998
999         truncate_inode_pages_final(&inode->i_data);
1000         clear_inode(inode);
1001         XFS_STATS_INC(ip->i_mount, vn_rele);
1002         XFS_STATS_INC(ip->i_mount, vn_remove);
1003
1004         xfs_inactive(ip);
1005 }
1006
1007 /*
1008  * We do an unlocked check for XFS_IDONTCACHE here because we are already
1009  * serialised against cache hits here via the inode->i_lock and igrab() in
1010  * xfs_iget_cache_hit(). Hence a lookup that might clear this flag will not be
1011  * racing with us, and it avoids needing to grab a spinlock here for every inode
1012  * we drop the final reference on.
1013  */
1014 STATIC int
1015 xfs_fs_drop_inode(
1016         struct inode            *inode)
1017 {
1018         struct xfs_inode        *ip = XFS_I(inode);
1019
1020         return generic_drop_inode(inode) || (ip->i_flags & XFS_IDONTCACHE);
1021 }
1022
1023 STATIC void
1024 xfs_free_fsname(
1025         struct xfs_mount        *mp)
1026 {
1027         kfree(mp->m_fsname);
1028         kfree(mp->m_rtname);
1029         kfree(mp->m_logname);
1030 }
1031
1032 STATIC int
1033 xfs_fs_sync_fs(
1034         struct super_block      *sb,
1035         int                     wait)
1036 {
1037         struct xfs_mount        *mp = XFS_M(sb);
1038
1039         /*
1040          * Doing anything during the async pass would be counterproductive.
1041          */
1042         if (!wait)
1043                 return 0;
1044
1045         xfs_log_force(mp, XFS_LOG_SYNC);
1046         if (laptop_mode) {
1047                 /*
1048                  * The disk must be active because we're syncing.
1049                  * We schedule log work now (now that the disk is
1050                  * active) instead of later (when it might not be).
1051                  */
1052                 flush_delayed_work(&mp->m_log->l_work);
1053         }
1054
1055         return 0;
1056 }
1057
1058 STATIC int
1059 xfs_fs_statfs(
1060         struct dentry           *dentry,
1061         struct kstatfs          *statp)
1062 {
1063         struct xfs_mount        *mp = XFS_M(dentry->d_sb);
1064         xfs_sb_t                *sbp = &mp->m_sb;
1065         struct xfs_inode        *ip = XFS_I(d_inode(dentry));
1066         __uint64_t              fakeinos, id;
1067         __uint64_t              icount;
1068         __uint64_t              ifree;
1069         __uint64_t              fdblocks;
1070         xfs_extlen_t            lsize;
1071         __int64_t               ffree;
1072
1073         statp->f_type = XFS_SB_MAGIC;
1074         statp->f_namelen = MAXNAMELEN - 1;
1075
1076         id = huge_encode_dev(mp->m_ddev_targp->bt_dev);
1077         statp->f_fsid.val[0] = (u32)id;
1078         statp->f_fsid.val[1] = (u32)(id >> 32);
1079
1080         icount = percpu_counter_sum(&mp->m_icount);
1081         ifree = percpu_counter_sum(&mp->m_ifree);
1082         fdblocks = percpu_counter_sum(&mp->m_fdblocks);
1083
1084         spin_lock(&mp->m_sb_lock);
1085         statp->f_bsize = sbp->sb_blocksize;
1086         lsize = sbp->sb_logstart ? sbp->sb_logblocks : 0;
1087         statp->f_blocks = sbp->sb_dblocks - lsize;
1088         spin_unlock(&mp->m_sb_lock);
1089
1090         statp->f_bfree = fdblocks - XFS_ALLOC_SET_ASIDE(mp);
1091         statp->f_bavail = statp->f_bfree;
1092
1093         fakeinos = statp->f_bfree << sbp->sb_inopblog;
1094         statp->f_files = MIN(icount + fakeinos, (__uint64_t)XFS_MAXINUMBER);
1095         if (mp->m_maxicount)
1096                 statp->f_files = min_t(typeof(statp->f_files),
1097                                         statp->f_files,
1098                                         mp->m_maxicount);
1099
1100         /* If sb_icount overshot maxicount, report actual allocation */
1101         statp->f_files = max_t(typeof(statp->f_files),
1102                                         statp->f_files,
1103                                         sbp->sb_icount);
1104
1105         /* make sure statp->f_ffree does not underflow */
1106         ffree = statp->f_files - (icount - ifree);
1107         statp->f_ffree = max_t(__int64_t, ffree, 0);
1108
1109
1110         if ((ip->i_d.di_flags & XFS_DIFLAG_PROJINHERIT) &&
1111             ((mp->m_qflags & (XFS_PQUOTA_ACCT|XFS_PQUOTA_ENFD))) ==
1112                               (XFS_PQUOTA_ACCT|XFS_PQUOTA_ENFD))
1113                 xfs_qm_statvfs(ip, statp);
1114         return 0;
1115 }
1116
1117 STATIC void
1118 xfs_save_resvblks(struct xfs_mount *mp)
1119 {
1120         __uint64_t resblks = 0;
1121
1122         mp->m_resblks_save = mp->m_resblks;
1123         xfs_reserve_blocks(mp, &resblks, NULL);
1124 }
1125
1126 STATIC void
1127 xfs_restore_resvblks(struct xfs_mount *mp)
1128 {
1129         __uint64_t resblks;
1130
1131         if (mp->m_resblks_save) {
1132                 resblks = mp->m_resblks_save;
1133                 mp->m_resblks_save = 0;
1134         } else
1135                 resblks = xfs_default_resblks(mp);
1136
1137         xfs_reserve_blocks(mp, &resblks, NULL);
1138 }
1139
1140 /*
1141  * Trigger writeback of all the dirty metadata in the file system.
1142  *
1143  * This ensures that the metadata is written to their location on disk rather
1144  * than just existing in transactions in the log. This means after a quiesce
1145  * there is no log replay required to write the inodes to disk - this is the
1146  * primary difference between a sync and a quiesce.
1147  *
1148  * Note: xfs_log_quiesce() stops background log work - the callers must ensure
1149  * it is started again when appropriate.
1150  */
1151 static void
1152 xfs_quiesce_attr(
1153         struct xfs_mount        *mp)
1154 {
1155         int     error = 0;
1156
1157         /* wait for all modifications to complete */
1158         while (atomic_read(&mp->m_active_trans) > 0)
1159                 delay(100);
1160
1161         /* force the log to unpin objects from the now complete transactions */
1162         xfs_log_force(mp, XFS_LOG_SYNC);
1163
1164         /* reclaim inodes to do any IO before the freeze completes */
1165         xfs_reclaim_inodes(mp, 0);
1166         xfs_reclaim_inodes(mp, SYNC_WAIT);
1167
1168         /* Push the superblock and write an unmount record */
1169         error = xfs_log_sbcount(mp);
1170         if (error)
1171                 xfs_warn(mp, "xfs_attr_quiesce: failed to log sb changes. "
1172                                 "Frozen image may not be consistent.");
1173         /*
1174          * Just warn here till VFS can correctly support
1175          * read-only remount without racing.
1176          */
1177         WARN_ON(atomic_read(&mp->m_active_trans) != 0);
1178
1179         xfs_log_quiesce(mp);
1180 }
1181
1182 STATIC int
1183 xfs_test_remount_options(
1184         struct super_block      *sb,
1185         struct xfs_mount        *mp,
1186         char                    *options)
1187 {
1188         int                     error = 0;
1189         struct xfs_mount        *tmp_mp;
1190
1191         tmp_mp = kmem_zalloc(sizeof(*tmp_mp), KM_MAYFAIL);
1192         if (!tmp_mp)
1193                 return -ENOMEM;
1194
1195         tmp_mp->m_super = sb;
1196         error = xfs_parseargs(tmp_mp, options);
1197         xfs_free_fsname(tmp_mp);
1198         kfree(tmp_mp);
1199
1200         return error;
1201 }
1202
1203 STATIC int
1204 xfs_fs_remount(
1205         struct super_block      *sb,
1206         int                     *flags,
1207         char                    *options)
1208 {
1209         struct xfs_mount        *mp = XFS_M(sb);
1210         xfs_sb_t                *sbp = &mp->m_sb;
1211         substring_t             args[MAX_OPT_ARGS];
1212         char                    *p;
1213         int                     error;
1214
1215         /* First, check for complete junk; i.e. invalid options */
1216         error = xfs_test_remount_options(sb, mp, options);
1217         if (error)
1218                 return error;
1219
1220         sync_filesystem(sb);
1221         while ((p = strsep(&options, ",")) != NULL) {
1222                 int token;
1223
1224                 if (!*p)
1225                         continue;
1226
1227                 token = match_token(p, tokens, args);
1228                 switch (token) {
1229                 case Opt_barrier:
1230                         mp->m_flags |= XFS_MOUNT_BARRIER;
1231                         break;
1232                 case Opt_nobarrier:
1233                         mp->m_flags &= ~XFS_MOUNT_BARRIER;
1234                         break;
1235                 case Opt_inode64:
1236                         mp->m_flags &= ~XFS_MOUNT_SMALL_INUMS;
1237                         mp->m_maxagi = xfs_set_inode_alloc(mp, sbp->sb_agcount);
1238                         break;
1239                 case Opt_inode32:
1240                         mp->m_flags |= XFS_MOUNT_SMALL_INUMS;
1241                         mp->m_maxagi = xfs_set_inode_alloc(mp, sbp->sb_agcount);
1242                         break;
1243                 default:
1244                         /*
1245                          * Logically we would return an error here to prevent
1246                          * users from believing they might have changed
1247                          * mount options using remount which can't be changed.
1248                          *
1249                          * But unfortunately mount(8) adds all options from
1250                          * mtab and fstab to the mount arguments in some cases
1251                          * so we can't blindly reject options, but have to
1252                          * check for each specified option if it actually
1253                          * differs from the currently set option and only
1254                          * reject it if that's the case.
1255                          *
1256                          * Until that is implemented we return success for
1257                          * every remount request, and silently ignore all
1258                          * options that we can't actually change.
1259                          */
1260 #if 0
1261                         xfs_info(mp,
1262                 "mount option \"%s\" not supported for remount", p);
1263                         return -EINVAL;
1264 #else
1265                         break;
1266 #endif
1267                 }
1268         }
1269
1270         /* ro -> rw */
1271         if ((mp->m_flags & XFS_MOUNT_RDONLY) && !(*flags & MS_RDONLY)) {
1272                 if (mp->m_flags & XFS_MOUNT_NORECOVERY) {
1273                         xfs_warn(mp,
1274                 "ro->rw transition prohibited on norecovery mount");
1275                         return -EINVAL;
1276                 }
1277
1278                 mp->m_flags &= ~XFS_MOUNT_RDONLY;
1279
1280                 /*
1281                  * If this is the first remount to writeable state we
1282                  * might have some superblock changes to update.
1283                  */
1284                 if (mp->m_update_sb) {
1285                         error = xfs_sync_sb(mp, false);
1286                         if (error) {
1287                                 xfs_warn(mp, "failed to write sb changes");
1288                                 return error;
1289                         }
1290                         mp->m_update_sb = false;
1291                 }
1292
1293                 /*
1294                  * Fill out the reserve pool if it is empty. Use the stashed
1295                  * value if it is non-zero, otherwise go with the default.
1296                  */
1297                 xfs_restore_resvblks(mp);
1298                 xfs_log_work_queue(mp);
1299         }
1300
1301         /* rw -> ro */
1302         if (!(mp->m_flags & XFS_MOUNT_RDONLY) && (*flags & MS_RDONLY)) {
1303                 /*
1304                  * Before we sync the metadata, we need to free up the reserve
1305                  * block pool so that the used block count in the superblock on
1306                  * disk is correct at the end of the remount. Stash the current
1307                  * reserve pool size so that if we get remounted rw, we can
1308                  * return it to the same size.
1309                  */
1310                 xfs_save_resvblks(mp);
1311                 xfs_quiesce_attr(mp);
1312                 mp->m_flags |= XFS_MOUNT_RDONLY;
1313         }
1314
1315         return 0;
1316 }
1317
1318 /*
1319  * Second stage of a freeze. The data is already frozen so we only
1320  * need to take care of the metadata. Once that's done sync the superblock
1321  * to the log to dirty it in case of a crash while frozen. This ensures that we
1322  * will recover the unlinked inode lists on the next mount.
1323  */
1324 STATIC int
1325 xfs_fs_freeze(
1326         struct super_block      *sb)
1327 {
1328         struct xfs_mount        *mp = XFS_M(sb);
1329
1330         xfs_save_resvblks(mp);
1331         xfs_quiesce_attr(mp);
1332         return xfs_sync_sb(mp, true);
1333 }
1334
1335 STATIC int
1336 xfs_fs_unfreeze(
1337         struct super_block      *sb)
1338 {
1339         struct xfs_mount        *mp = XFS_M(sb);
1340
1341         xfs_restore_resvblks(mp);
1342         xfs_log_work_queue(mp);
1343         return 0;
1344 }
1345
1346 STATIC int
1347 xfs_fs_show_options(
1348         struct seq_file         *m,
1349         struct dentry           *root)
1350 {
1351         return xfs_showargs(XFS_M(root->d_sb), m);
1352 }
1353
1354 /*
1355  * This function fills in xfs_mount_t fields based on mount args.
1356  * Note: the superblock _has_ now been read in.
1357  */
1358 STATIC int
1359 xfs_finish_flags(
1360         struct xfs_mount        *mp)
1361 {
1362         int                     ronly = (mp->m_flags & XFS_MOUNT_RDONLY);
1363
1364         /* Fail a mount where the logbuf is smaller than the log stripe */
1365         if (xfs_sb_version_haslogv2(&mp->m_sb)) {
1366                 if (mp->m_logbsize <= 0 &&
1367                     mp->m_sb.sb_logsunit > XLOG_BIG_RECORD_BSIZE) {
1368                         mp->m_logbsize = mp->m_sb.sb_logsunit;
1369                 } else if (mp->m_logbsize > 0 &&
1370                            mp->m_logbsize < mp->m_sb.sb_logsunit) {
1371                         xfs_warn(mp,
1372                 "logbuf size must be greater than or equal to log stripe size");
1373                         return -EINVAL;
1374                 }
1375         } else {
1376                 /* Fail a mount if the logbuf is larger than 32K */
1377                 if (mp->m_logbsize > XLOG_BIG_RECORD_BSIZE) {
1378                         xfs_warn(mp,
1379                 "logbuf size for version 1 logs must be 16K or 32K");
1380                         return -EINVAL;
1381                 }
1382         }
1383
1384         /*
1385          * V5 filesystems always use attr2 format for attributes.
1386          */
1387         if (xfs_sb_version_hascrc(&mp->m_sb) &&
1388             (mp->m_flags & XFS_MOUNT_NOATTR2)) {
1389                 xfs_warn(mp, "Cannot mount a V5 filesystem as noattr2. "
1390                              "attr2 is always enabled for V5 filesystems.");
1391                 return -EINVAL;
1392         }
1393
1394         /*
1395          * mkfs'ed attr2 will turn on attr2 mount unless explicitly
1396          * told by noattr2 to turn it off
1397          */
1398         if (xfs_sb_version_hasattr2(&mp->m_sb) &&
1399             !(mp->m_flags & XFS_MOUNT_NOATTR2))
1400                 mp->m_flags |= XFS_MOUNT_ATTR2;
1401
1402         /*
1403          * prohibit r/w mounts of read-only filesystems
1404          */
1405         if ((mp->m_sb.sb_flags & XFS_SBF_READONLY) && !ronly) {
1406                 xfs_warn(mp,
1407                         "cannot mount a read-only filesystem as read-write");
1408                 return -EROFS;
1409         }
1410
1411         if ((mp->m_qflags & (XFS_GQUOTA_ACCT | XFS_GQUOTA_ACTIVE)) &&
1412             (mp->m_qflags & (XFS_PQUOTA_ACCT | XFS_PQUOTA_ACTIVE)) &&
1413             !xfs_sb_version_has_pquotino(&mp->m_sb)) {
1414                 xfs_warn(mp,
1415                   "Super block does not support project and group quota together");
1416                 return -EINVAL;
1417         }
1418
1419         return 0;
1420 }
1421
1422 static int
1423 xfs_init_percpu_counters(
1424         struct xfs_mount        *mp)
1425 {
1426         int             error;
1427
1428         error = percpu_counter_init(&mp->m_icount, 0, GFP_KERNEL);
1429         if (error)
1430                 return -ENOMEM;
1431
1432         error = percpu_counter_init(&mp->m_ifree, 0, GFP_KERNEL);
1433         if (error)
1434                 goto free_icount;
1435
1436         error = percpu_counter_init(&mp->m_fdblocks, 0, GFP_KERNEL);
1437         if (error)
1438                 goto free_ifree;
1439
1440         return 0;
1441
1442 free_ifree:
1443         percpu_counter_destroy(&mp->m_ifree);
1444 free_icount:
1445         percpu_counter_destroy(&mp->m_icount);
1446         return -ENOMEM;
1447 }
1448
1449 void
1450 xfs_reinit_percpu_counters(
1451         struct xfs_mount        *mp)
1452 {
1453         percpu_counter_set(&mp->m_icount, mp->m_sb.sb_icount);
1454         percpu_counter_set(&mp->m_ifree, mp->m_sb.sb_ifree);
1455         percpu_counter_set(&mp->m_fdblocks, mp->m_sb.sb_fdblocks);
1456 }
1457
1458 static void
1459 xfs_destroy_percpu_counters(
1460         struct xfs_mount        *mp)
1461 {
1462         percpu_counter_destroy(&mp->m_icount);
1463         percpu_counter_destroy(&mp->m_ifree);
1464         percpu_counter_destroy(&mp->m_fdblocks);
1465 }
1466
1467 STATIC int
1468 xfs_fs_fill_super(
1469         struct super_block      *sb,
1470         void                    *data,
1471         int                     silent)
1472 {
1473         struct inode            *root;
1474         struct xfs_mount        *mp = NULL;
1475         int                     flags = 0, error = -ENOMEM;
1476
1477         mp = kzalloc(sizeof(struct xfs_mount), GFP_KERNEL);
1478         if (!mp)
1479                 goto out;
1480
1481         spin_lock_init(&mp->m_sb_lock);
1482         mutex_init(&mp->m_growlock);
1483         atomic_set(&mp->m_active_trans, 0);
1484         INIT_DELAYED_WORK(&mp->m_reclaim_work, xfs_reclaim_worker);
1485         INIT_DELAYED_WORK(&mp->m_eofblocks_work, xfs_eofblocks_worker);
1486         mp->m_kobj.kobject.kset = xfs_kset;
1487
1488         mp->m_super = sb;
1489         sb->s_fs_info = mp;
1490
1491         error = xfs_parseargs(mp, (char *)data);
1492         if (error)
1493                 goto out_free_fsname;
1494
1495         sb_min_blocksize(sb, BBSIZE);
1496         sb->s_xattr = xfs_xattr_handlers;
1497         sb->s_export_op = &xfs_export_operations;
1498 #ifdef CONFIG_XFS_QUOTA
1499         sb->s_qcop = &xfs_quotactl_operations;
1500         sb->s_quota_types = QTYPE_MASK_USR | QTYPE_MASK_GRP | QTYPE_MASK_PRJ;
1501 #endif
1502         sb->s_op = &xfs_super_operations;
1503
1504         if (silent)
1505                 flags |= XFS_MFSI_QUIET;
1506
1507         error = xfs_open_devices(mp);
1508         if (error)
1509                 goto out_free_fsname;
1510
1511         error = xfs_init_mount_workqueues(mp);
1512         if (error)
1513                 goto out_close_devices;
1514
1515         error = xfs_init_percpu_counters(mp);
1516         if (error)
1517                 goto out_destroy_workqueues;
1518
1519         /* Allocate stats memory before we do operations that might use it */
1520         mp->m_stats.xs_stats = alloc_percpu(struct xfsstats);
1521         if (!mp->m_stats.xs_stats) {
1522                 error = -ENOMEM;
1523                 goto out_destroy_counters;
1524         }
1525
1526         error = xfs_readsb(mp, flags);
1527         if (error)
1528                 goto out_free_stats;
1529
1530         error = xfs_finish_flags(mp);
1531         if (error)
1532                 goto out_free_sb;
1533
1534         error = xfs_setup_devices(mp);
1535         if (error)
1536                 goto out_free_sb;
1537
1538         error = xfs_filestream_mount(mp);
1539         if (error)
1540                 goto out_free_sb;
1541
1542         /*
1543          * we must configure the block size in the superblock before we run the
1544          * full mount process as the mount process can lookup and cache inodes.
1545          */
1546         sb->s_magic = XFS_SB_MAGIC;
1547         sb->s_blocksize = mp->m_sb.sb_blocksize;
1548         sb->s_blocksize_bits = ffs(sb->s_blocksize) - 1;
1549         sb->s_maxbytes = xfs_max_file_offset(sb->s_blocksize_bits);
1550         sb->s_max_links = XFS_MAXLINK;
1551         sb->s_time_gran = 1;
1552         set_posix_acl_flag(sb);
1553
1554         /* version 5 superblocks support inode version counters. */
1555         if (XFS_SB_VERSION_NUM(&mp->m_sb) == XFS_SB_VERSION_5)
1556                 sb->s_flags |= MS_I_VERSION;
1557
1558         if (mp->m_flags & XFS_MOUNT_DAX) {
1559                 xfs_warn(mp,
1560         "DAX enabled. Warning: EXPERIMENTAL, use at your own risk");
1561                 if (sb->s_blocksize != PAGE_SIZE) {
1562                         xfs_alert(mp,
1563                 "Filesystem block size invalid for DAX Turning DAX off.");
1564                         mp->m_flags &= ~XFS_MOUNT_DAX;
1565                 } else if (!sb->s_bdev->bd_disk->fops->direct_access) {
1566                         xfs_alert(mp,
1567                 "Block device does not support DAX Turning DAX off.");
1568                         mp->m_flags &= ~XFS_MOUNT_DAX;
1569                 }
1570         }
1571
1572         if (xfs_sb_version_hassparseinodes(&mp->m_sb))
1573                 xfs_alert(mp,
1574         "EXPERIMENTAL sparse inode feature enabled. Use at your own risk!");
1575
1576         error = xfs_mountfs(mp);
1577         if (error)
1578                 goto out_filestream_unmount;
1579
1580         root = igrab(VFS_I(mp->m_rootip));
1581         if (!root) {
1582                 error = -ENOENT;
1583                 goto out_unmount;
1584         }
1585         sb->s_root = d_make_root(root);
1586         if (!sb->s_root) {
1587                 error = -ENOMEM;
1588                 goto out_unmount;
1589         }
1590
1591         return 0;
1592
1593  out_filestream_unmount:
1594         xfs_filestream_unmount(mp);
1595  out_free_sb:
1596         xfs_freesb(mp);
1597  out_free_stats:
1598         free_percpu(mp->m_stats.xs_stats);
1599  out_destroy_counters:
1600         xfs_destroy_percpu_counters(mp);
1601  out_destroy_workqueues:
1602         xfs_destroy_mount_workqueues(mp);
1603  out_close_devices:
1604         xfs_close_devices(mp);
1605  out_free_fsname:
1606         xfs_free_fsname(mp);
1607         kfree(mp);
1608  out:
1609         return error;
1610
1611  out_unmount:
1612         xfs_filestream_unmount(mp);
1613         xfs_unmountfs(mp);
1614         goto out_free_sb;
1615 }
1616
1617 STATIC void
1618 xfs_fs_put_super(
1619         struct super_block      *sb)
1620 {
1621         struct xfs_mount        *mp = XFS_M(sb);
1622
1623         xfs_notice(mp, "Unmounting Filesystem");
1624         xfs_filestream_unmount(mp);
1625         xfs_unmountfs(mp);
1626
1627         xfs_freesb(mp);
1628         free_percpu(mp->m_stats.xs_stats);
1629         xfs_destroy_percpu_counters(mp);
1630         xfs_destroy_mount_workqueues(mp);
1631         xfs_close_devices(mp);
1632         xfs_free_fsname(mp);
1633         kfree(mp);
1634 }
1635
1636 STATIC struct dentry *
1637 xfs_fs_mount(
1638         struct file_system_type *fs_type,
1639         int                     flags,
1640         const char              *dev_name,
1641         void                    *data)
1642 {
1643         return mount_bdev(fs_type, flags, dev_name, data, xfs_fs_fill_super);
1644 }
1645
1646 static long
1647 xfs_fs_nr_cached_objects(
1648         struct super_block      *sb,
1649         struct shrink_control   *sc)
1650 {
1651         return xfs_reclaim_inodes_count(XFS_M(sb));
1652 }
1653
1654 static long
1655 xfs_fs_free_cached_objects(
1656         struct super_block      *sb,
1657         struct shrink_control   *sc)
1658 {
1659         return xfs_reclaim_inodes_nr(XFS_M(sb), sc->nr_to_scan);
1660 }
1661
1662 static const struct super_operations xfs_super_operations = {
1663         .alloc_inode            = xfs_fs_alloc_inode,
1664         .destroy_inode          = xfs_fs_destroy_inode,
1665         .evict_inode            = xfs_fs_evict_inode,
1666         .drop_inode             = xfs_fs_drop_inode,
1667         .put_super              = xfs_fs_put_super,
1668         .sync_fs                = xfs_fs_sync_fs,
1669         .freeze_fs              = xfs_fs_freeze,
1670         .unfreeze_fs            = xfs_fs_unfreeze,
1671         .statfs                 = xfs_fs_statfs,
1672         .remount_fs             = xfs_fs_remount,
1673         .show_options           = xfs_fs_show_options,
1674         .nr_cached_objects      = xfs_fs_nr_cached_objects,
1675         .free_cached_objects    = xfs_fs_free_cached_objects,
1676 };
1677
1678 static struct file_system_type xfs_fs_type = {
1679         .owner                  = THIS_MODULE,
1680         .name                   = "xfs",
1681         .mount                  = xfs_fs_mount,
1682         .kill_sb                = kill_block_super,
1683         .fs_flags               = FS_REQUIRES_DEV,
1684 };
1685 MODULE_ALIAS_FS("xfs");
1686
1687 STATIC int __init
1688 xfs_init_zones(void)
1689 {
1690         xfs_ioend_bioset = bioset_create(4 * MAX_BUF_PER_PAGE,
1691                         offsetof(struct xfs_ioend, io_inline_bio));
1692         if (!xfs_ioend_bioset)
1693                 goto out;
1694
1695         xfs_log_ticket_zone = kmem_zone_init(sizeof(xlog_ticket_t),
1696                                                 "xfs_log_ticket");
1697         if (!xfs_log_ticket_zone)
1698                 goto out_free_ioend_bioset;
1699
1700         xfs_bmap_free_item_zone = kmem_zone_init(sizeof(xfs_bmap_free_item_t),
1701                                                 "xfs_bmap_free_item");
1702         if (!xfs_bmap_free_item_zone)
1703                 goto out_destroy_log_ticket_zone;
1704
1705         xfs_btree_cur_zone = kmem_zone_init(sizeof(xfs_btree_cur_t),
1706                                                 "xfs_btree_cur");
1707         if (!xfs_btree_cur_zone)
1708                 goto out_destroy_bmap_free_item_zone;
1709
1710         xfs_da_state_zone = kmem_zone_init(sizeof(xfs_da_state_t),
1711                                                 "xfs_da_state");
1712         if (!xfs_da_state_zone)
1713                 goto out_destroy_btree_cur_zone;
1714
1715         xfs_ifork_zone = kmem_zone_init(sizeof(xfs_ifork_t), "xfs_ifork");
1716         if (!xfs_ifork_zone)
1717                 goto out_destroy_da_state_zone;
1718
1719         xfs_trans_zone = kmem_zone_init(sizeof(xfs_trans_t), "xfs_trans");
1720         if (!xfs_trans_zone)
1721                 goto out_destroy_ifork_zone;
1722
1723         xfs_log_item_desc_zone =
1724                 kmem_zone_init(sizeof(struct xfs_log_item_desc),
1725                                "xfs_log_item_desc");
1726         if (!xfs_log_item_desc_zone)
1727                 goto out_destroy_trans_zone;
1728
1729         /*
1730          * The size of the zone allocated buf log item is the maximum
1731          * size possible under XFS.  This wastes a little bit of memory,
1732          * but it is much faster.
1733          */
1734         xfs_buf_item_zone = kmem_zone_init(sizeof(struct xfs_buf_log_item),
1735                                            "xfs_buf_item");
1736         if (!xfs_buf_item_zone)
1737                 goto out_destroy_log_item_desc_zone;
1738
1739         xfs_efd_zone = kmem_zone_init((sizeof(xfs_efd_log_item_t) +
1740                         ((XFS_EFD_MAX_FAST_EXTENTS - 1) *
1741                                  sizeof(xfs_extent_t))), "xfs_efd_item");
1742         if (!xfs_efd_zone)
1743                 goto out_destroy_buf_item_zone;
1744
1745         xfs_efi_zone = kmem_zone_init((sizeof(xfs_efi_log_item_t) +
1746                         ((XFS_EFI_MAX_FAST_EXTENTS - 1) *
1747                                 sizeof(xfs_extent_t))), "xfs_efi_item");
1748         if (!xfs_efi_zone)
1749                 goto out_destroy_efd_zone;
1750
1751         xfs_inode_zone =
1752                 kmem_zone_init_flags(sizeof(xfs_inode_t), "xfs_inode",
1753                         KM_ZONE_HWALIGN | KM_ZONE_RECLAIM | KM_ZONE_SPREAD |
1754                         KM_ZONE_ACCOUNT, xfs_fs_inode_init_once);
1755         if (!xfs_inode_zone)
1756                 goto out_destroy_efi_zone;
1757
1758         xfs_ili_zone =
1759                 kmem_zone_init_flags(sizeof(xfs_inode_log_item_t), "xfs_ili",
1760                                         KM_ZONE_SPREAD, NULL);
1761         if (!xfs_ili_zone)
1762                 goto out_destroy_inode_zone;
1763         xfs_icreate_zone = kmem_zone_init(sizeof(struct xfs_icreate_item),
1764                                         "xfs_icr");
1765         if (!xfs_icreate_zone)
1766                 goto out_destroy_ili_zone;
1767
1768         return 0;
1769
1770  out_destroy_ili_zone:
1771         kmem_zone_destroy(xfs_ili_zone);
1772  out_destroy_inode_zone:
1773         kmem_zone_destroy(xfs_inode_zone);
1774  out_destroy_efi_zone:
1775         kmem_zone_destroy(xfs_efi_zone);
1776  out_destroy_efd_zone:
1777         kmem_zone_destroy(xfs_efd_zone);
1778  out_destroy_buf_item_zone:
1779         kmem_zone_destroy(xfs_buf_item_zone);
1780  out_destroy_log_item_desc_zone:
1781         kmem_zone_destroy(xfs_log_item_desc_zone);
1782  out_destroy_trans_zone:
1783         kmem_zone_destroy(xfs_trans_zone);
1784  out_destroy_ifork_zone:
1785         kmem_zone_destroy(xfs_ifork_zone);
1786  out_destroy_da_state_zone:
1787         kmem_zone_destroy(xfs_da_state_zone);
1788  out_destroy_btree_cur_zone:
1789         kmem_zone_destroy(xfs_btree_cur_zone);
1790  out_destroy_bmap_free_item_zone:
1791         kmem_zone_destroy(xfs_bmap_free_item_zone);
1792  out_destroy_log_ticket_zone:
1793         kmem_zone_destroy(xfs_log_ticket_zone);
1794  out_free_ioend_bioset:
1795         bioset_free(xfs_ioend_bioset);
1796  out:
1797         return -ENOMEM;
1798 }
1799
1800 STATIC void
1801 xfs_destroy_zones(void)
1802 {
1803         /*
1804          * Make sure all delayed rcu free are flushed before we
1805          * destroy caches.
1806          */
1807         rcu_barrier();
1808         kmem_zone_destroy(xfs_icreate_zone);
1809         kmem_zone_destroy(xfs_ili_zone);
1810         kmem_zone_destroy(xfs_inode_zone);
1811         kmem_zone_destroy(xfs_efi_zone);
1812         kmem_zone_destroy(xfs_efd_zone);
1813         kmem_zone_destroy(xfs_buf_item_zone);
1814         kmem_zone_destroy(xfs_log_item_desc_zone);
1815         kmem_zone_destroy(xfs_trans_zone);
1816         kmem_zone_destroy(xfs_ifork_zone);
1817         kmem_zone_destroy(xfs_da_state_zone);
1818         kmem_zone_destroy(xfs_btree_cur_zone);
1819         kmem_zone_destroy(xfs_bmap_free_item_zone);
1820         kmem_zone_destroy(xfs_log_ticket_zone);
1821         bioset_free(xfs_ioend_bioset);
1822 }
1823
1824 STATIC int __init
1825 xfs_init_workqueues(void)
1826 {
1827         /*
1828          * The allocation workqueue can be used in memory reclaim situations
1829          * (writepage path), and parallelism is only limited by the number of
1830          * AGs in all the filesystems mounted. Hence use the default large
1831          * max_active value for this workqueue.
1832          */
1833         xfs_alloc_wq = alloc_workqueue("xfsalloc",
1834                         WQ_MEM_RECLAIM|WQ_FREEZABLE, 0);
1835         if (!xfs_alloc_wq)
1836                 return -ENOMEM;
1837
1838         return 0;
1839 }
1840
1841 STATIC void
1842 xfs_destroy_workqueues(void)
1843 {
1844         destroy_workqueue(xfs_alloc_wq);
1845 }
1846
1847 STATIC int __init
1848 init_xfs_fs(void)
1849 {
1850         int                     error;
1851
1852         xfs_check_ondisk_structs();
1853
1854         printk(KERN_INFO XFS_VERSION_STRING " with "
1855                          XFS_BUILD_OPTIONS " enabled\n");
1856
1857         xfs_dir_startup();
1858
1859         error = xfs_init_zones();
1860         if (error)
1861                 goto out;
1862
1863         error = xfs_init_workqueues();
1864         if (error)
1865                 goto out_destroy_zones;
1866
1867         error = xfs_mru_cache_init();
1868         if (error)
1869                 goto out_destroy_wq;
1870
1871         error = xfs_buf_init();
1872         if (error)
1873                 goto out_mru_cache_uninit;
1874
1875         error = xfs_init_procfs();
1876         if (error)
1877                 goto out_buf_terminate;
1878
1879         error = xfs_sysctl_register();
1880         if (error)
1881                 goto out_cleanup_procfs;
1882
1883         xfs_kset = kset_create_and_add("xfs", NULL, fs_kobj);
1884         if (!xfs_kset) {
1885                 error = -ENOMEM;
1886                 goto out_sysctl_unregister;
1887         }
1888
1889         xfsstats.xs_kobj.kobject.kset = xfs_kset;
1890
1891         xfsstats.xs_stats = alloc_percpu(struct xfsstats);
1892         if (!xfsstats.xs_stats) {
1893                 error = -ENOMEM;
1894                 goto out_kset_unregister;
1895         }
1896
1897         error = xfs_sysfs_init(&xfsstats.xs_kobj, &xfs_stats_ktype, NULL,
1898                                "stats");
1899         if (error)
1900                 goto out_free_stats;
1901
1902 #ifdef DEBUG
1903         xfs_dbg_kobj.kobject.kset = xfs_kset;
1904         error = xfs_sysfs_init(&xfs_dbg_kobj, &xfs_dbg_ktype, NULL, "debug");
1905         if (error)
1906                 goto out_remove_stats_kobj;
1907 #endif
1908
1909         error = xfs_qm_init();
1910         if (error)
1911                 goto out_remove_dbg_kobj;
1912
1913         error = register_filesystem(&xfs_fs_type);
1914         if (error)
1915                 goto out_qm_exit;
1916         return 0;
1917
1918  out_qm_exit:
1919         xfs_qm_exit();
1920  out_remove_dbg_kobj:
1921 #ifdef DEBUG
1922         xfs_sysfs_del(&xfs_dbg_kobj);
1923  out_remove_stats_kobj:
1924 #endif
1925         xfs_sysfs_del(&xfsstats.xs_kobj);
1926  out_free_stats:
1927         free_percpu(xfsstats.xs_stats);
1928  out_kset_unregister:
1929         kset_unregister(xfs_kset);
1930  out_sysctl_unregister:
1931         xfs_sysctl_unregister();
1932  out_cleanup_procfs:
1933         xfs_cleanup_procfs();
1934  out_buf_terminate:
1935         xfs_buf_terminate();
1936  out_mru_cache_uninit:
1937         xfs_mru_cache_uninit();
1938  out_destroy_wq:
1939         xfs_destroy_workqueues();
1940  out_destroy_zones:
1941         xfs_destroy_zones();
1942  out:
1943         return error;
1944 }
1945
1946 STATIC void __exit
1947 exit_xfs_fs(void)
1948 {
1949         xfs_qm_exit();
1950         unregister_filesystem(&xfs_fs_type);
1951 #ifdef DEBUG
1952         xfs_sysfs_del(&xfs_dbg_kobj);
1953 #endif
1954         xfs_sysfs_del(&xfsstats.xs_kobj);
1955         free_percpu(xfsstats.xs_stats);
1956         kset_unregister(xfs_kset);
1957         xfs_sysctl_unregister();
1958         xfs_cleanup_procfs();
1959         xfs_buf_terminate();
1960         xfs_mru_cache_uninit();
1961         xfs_destroy_workqueues();
1962         xfs_destroy_zones();
1963         xfs_uuid_table_free();
1964 }
1965
1966 module_init(init_xfs_fs);
1967 module_exit(exit_xfs_fs);
1968
1969 MODULE_AUTHOR("Silicon Graphics, Inc.");
1970 MODULE_DESCRIPTION(XFS_VERSION_STRING " with " XFS_BUILD_OPTIONS " enabled");
1971 MODULE_LICENSE("GPL");