xfs: introduce a xfssyncd workqueue
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / fs / xfs / linux-2.6 / xfs_super.c
blobc71b6ed45e41dec0e0814ddd36f302df06dfa840
1 /*
2 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
3 * All Rights Reserved.
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation.
9 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 #include "xfs.h"
20 #include "xfs_bit.h"
21 #include "xfs_log.h"
22 #include "xfs_inum.h"
23 #include "xfs_trans.h"
24 #include "xfs_sb.h"
25 #include "xfs_ag.h"
26 #include "xfs_dir2.h"
27 #include "xfs_alloc.h"
28 #include "xfs_quota.h"
29 #include "xfs_mount.h"
30 #include "xfs_bmap_btree.h"
31 #include "xfs_alloc_btree.h"
32 #include "xfs_ialloc_btree.h"
33 #include "xfs_dinode.h"
34 #include "xfs_inode.h"
35 #include "xfs_btree.h"
36 #include "xfs_btree_trace.h"
37 #include "xfs_ialloc.h"
38 #include "xfs_bmap.h"
39 #include "xfs_rtalloc.h"
40 #include "xfs_error.h"
41 #include "xfs_itable.h"
42 #include "xfs_fsops.h"
43 #include "xfs_attr.h"
44 #include "xfs_buf_item.h"
45 #include "xfs_utils.h"
46 #include "xfs_vnodeops.h"
47 #include "xfs_log_priv.h"
48 #include "xfs_trans_priv.h"
49 #include "xfs_filestream.h"
50 #include "xfs_da_btree.h"
51 #include "xfs_extfree_item.h"
52 #include "xfs_mru_cache.h"
53 #include "xfs_inode_item.h"
54 #include "xfs_sync.h"
55 #include "xfs_trace.h"
57 #include <linux/namei.h>
58 #include <linux/init.h>
59 #include <linux/slab.h>
60 #include <linux/mount.h>
61 #include <linux/mempool.h>
62 #include <linux/writeback.h>
63 #include <linux/kthread.h>
64 #include <linux/freezer.h>
65 #include <linux/parser.h>
67 static const struct super_operations xfs_super_operations;
68 static kmem_zone_t *xfs_ioend_zone;
69 mempool_t *xfs_ioend_pool;
71 #define MNTOPT_LOGBUFS "logbufs" /* number of XFS log buffers */
72 #define MNTOPT_LOGBSIZE "logbsize" /* size of XFS log buffers */
73 #define MNTOPT_LOGDEV "logdev" /* log device */
74 #define MNTOPT_RTDEV "rtdev" /* realtime I/O device */
75 #define MNTOPT_BIOSIZE "biosize" /* log2 of preferred buffered io size */
76 #define MNTOPT_WSYNC "wsync" /* safe-mode nfs compatible mount */
77 #define MNTOPT_NOALIGN "noalign" /* turn off stripe alignment */
78 #define MNTOPT_SWALLOC "swalloc" /* turn on stripe width allocation */
79 #define MNTOPT_SUNIT "sunit" /* data volume stripe unit */
80 #define MNTOPT_SWIDTH "swidth" /* data volume stripe width */
81 #define MNTOPT_NOUUID "nouuid" /* ignore filesystem UUID */
82 #define MNTOPT_MTPT "mtpt" /* filesystem mount point */
83 #define MNTOPT_GRPID "grpid" /* group-ID from parent directory */
84 #define MNTOPT_NOGRPID "nogrpid" /* group-ID from current process */
85 #define MNTOPT_BSDGROUPS "bsdgroups" /* group-ID from parent directory */
86 #define MNTOPT_SYSVGROUPS "sysvgroups" /* group-ID from current process */
87 #define MNTOPT_ALLOCSIZE "allocsize" /* preferred allocation size */
88 #define MNTOPT_NORECOVERY "norecovery" /* don't run XFS recovery */
89 #define MNTOPT_BARRIER "barrier" /* use writer barriers for log write and
90 * unwritten extent conversion */
91 #define MNTOPT_NOBARRIER "nobarrier" /* .. disable */
92 #define MNTOPT_64BITINODE "inode64" /* inodes can be allocated anywhere */
93 #define MNTOPT_IKEEP "ikeep" /* do not free empty inode clusters */
94 #define MNTOPT_NOIKEEP "noikeep" /* free empty inode clusters */
95 #define MNTOPT_LARGEIO "largeio" /* report large I/O sizes in stat() */
96 #define MNTOPT_NOLARGEIO "nolargeio" /* do not report large I/O sizes
97 * in stat(). */
98 #define MNTOPT_ATTR2 "attr2" /* do use attr2 attribute format */
99 #define MNTOPT_NOATTR2 "noattr2" /* do not use attr2 attribute format */
100 #define MNTOPT_FILESTREAM "filestreams" /* use filestreams allocator */
101 #define MNTOPT_QUOTA "quota" /* disk quotas (user) */
102 #define MNTOPT_NOQUOTA "noquota" /* no quotas */
103 #define MNTOPT_USRQUOTA "usrquota" /* user quota enabled */
104 #define MNTOPT_GRPQUOTA "grpquota" /* group quota enabled */
105 #define MNTOPT_PRJQUOTA "prjquota" /* project quota enabled */
106 #define MNTOPT_UQUOTA "uquota" /* user quota (IRIX variant) */
107 #define MNTOPT_GQUOTA "gquota" /* group quota (IRIX variant) */
108 #define MNTOPT_PQUOTA "pquota" /* project quota (IRIX variant) */
109 #define MNTOPT_UQUOTANOENF "uqnoenforce"/* user quota limit enforcement */
110 #define MNTOPT_GQUOTANOENF "gqnoenforce"/* group quota limit enforcement */
111 #define MNTOPT_PQUOTANOENF "pqnoenforce"/* project quota limit enforcement */
112 #define MNTOPT_QUOTANOENF "qnoenforce" /* same as uqnoenforce */
113 #define MNTOPT_DELAYLOG "delaylog" /* Delayed loging enabled */
114 #define MNTOPT_NODELAYLOG "nodelaylog" /* Delayed loging disabled */
117 * Table driven mount option parser.
119 * Currently only used for remount, but it will be used for mount
120 * in the future, too.
122 enum {
123 Opt_barrier, Opt_nobarrier, Opt_err
126 static const match_table_t tokens = {
127 {Opt_barrier, "barrier"},
128 {Opt_nobarrier, "nobarrier"},
129 {Opt_err, NULL}
133 STATIC unsigned long
134 suffix_strtoul(char *s, char **endp, unsigned int base)
136 int last, shift_left_factor = 0;
137 char *value = s;
139 last = strlen(value) - 1;
140 if (value[last] == 'K' || value[last] == 'k') {
141 shift_left_factor = 10;
142 value[last] = '\0';
144 if (value[last] == 'M' || value[last] == 'm') {
145 shift_left_factor = 20;
146 value[last] = '\0';
148 if (value[last] == 'G' || value[last] == 'g') {
149 shift_left_factor = 30;
150 value[last] = '\0';
153 return simple_strtoul((const char *)s, endp, base) << shift_left_factor;
157 * This function fills in xfs_mount_t fields based on mount args.
158 * Note: the superblock has _not_ yet been read in.
160 * Note that this function leaks the various device name allocations on
161 * failure. The caller takes care of them.
163 STATIC int
164 xfs_parseargs(
165 struct xfs_mount *mp,
166 char *options)
168 struct super_block *sb = mp->m_super;
169 char *this_char, *value, *eov;
170 int dsunit = 0;
171 int dswidth = 0;
172 int iosize = 0;
173 __uint8_t iosizelog = 0;
176 * set up the mount name first so all the errors will refer to the
177 * correct device.
179 mp->m_fsname = kstrndup(sb->s_id, MAXNAMELEN, GFP_KERNEL);
180 if (!mp->m_fsname)
181 return ENOMEM;
182 mp->m_fsname_len = strlen(mp->m_fsname) + 1;
185 * Copy binary VFS mount flags we are interested in.
187 if (sb->s_flags & MS_RDONLY)
188 mp->m_flags |= XFS_MOUNT_RDONLY;
189 if (sb->s_flags & MS_DIRSYNC)
190 mp->m_flags |= XFS_MOUNT_DIRSYNC;
191 if (sb->s_flags & MS_SYNCHRONOUS)
192 mp->m_flags |= XFS_MOUNT_WSYNC;
195 * Set some default flags that could be cleared by the mount option
196 * parsing.
198 mp->m_flags |= XFS_MOUNT_BARRIER;
199 mp->m_flags |= XFS_MOUNT_COMPAT_IOSIZE;
200 mp->m_flags |= XFS_MOUNT_SMALL_INUMS;
201 mp->m_flags |= XFS_MOUNT_DELAYLOG;
204 * These can be overridden by the mount option parsing.
206 mp->m_logbufs = -1;
207 mp->m_logbsize = -1;
209 if (!options)
210 goto done;
212 while ((this_char = strsep(&options, ",")) != NULL) {
213 if (!*this_char)
214 continue;
215 if ((value = strchr(this_char, '=')) != NULL)
216 *value++ = 0;
218 if (!strcmp(this_char, MNTOPT_LOGBUFS)) {
219 if (!value || !*value) {
220 xfs_warn(mp, "%s option requires an argument",
221 this_char);
222 return EINVAL;
224 mp->m_logbufs = simple_strtoul(value, &eov, 10);
225 } else if (!strcmp(this_char, MNTOPT_LOGBSIZE)) {
226 if (!value || !*value) {
227 xfs_warn(mp, "%s option requires an argument",
228 this_char);
229 return EINVAL;
231 mp->m_logbsize = suffix_strtoul(value, &eov, 10);
232 } else if (!strcmp(this_char, MNTOPT_LOGDEV)) {
233 if (!value || !*value) {
234 xfs_warn(mp, "%s option requires an argument",
235 this_char);
236 return EINVAL;
238 mp->m_logname = kstrndup(value, MAXNAMELEN, GFP_KERNEL);
239 if (!mp->m_logname)
240 return ENOMEM;
241 } else if (!strcmp(this_char, MNTOPT_MTPT)) {
242 xfs_warn(mp, "%s option not allowed on this system",
243 this_char);
244 return EINVAL;
245 } else if (!strcmp(this_char, MNTOPT_RTDEV)) {
246 if (!value || !*value) {
247 xfs_warn(mp, "%s option requires an argument",
248 this_char);
249 return EINVAL;
251 mp->m_rtname = kstrndup(value, MAXNAMELEN, GFP_KERNEL);
252 if (!mp->m_rtname)
253 return ENOMEM;
254 } else if (!strcmp(this_char, MNTOPT_BIOSIZE)) {
255 if (!value || !*value) {
256 xfs_warn(mp, "%s option requires an argument",
257 this_char);
258 return EINVAL;
260 iosize = simple_strtoul(value, &eov, 10);
261 iosizelog = ffs(iosize) - 1;
262 } else if (!strcmp(this_char, MNTOPT_ALLOCSIZE)) {
263 if (!value || !*value) {
264 xfs_warn(mp, "%s option requires an argument",
265 this_char);
266 return EINVAL;
268 iosize = suffix_strtoul(value, &eov, 10);
269 iosizelog = ffs(iosize) - 1;
270 } else if (!strcmp(this_char, MNTOPT_GRPID) ||
271 !strcmp(this_char, MNTOPT_BSDGROUPS)) {
272 mp->m_flags |= XFS_MOUNT_GRPID;
273 } else if (!strcmp(this_char, MNTOPT_NOGRPID) ||
274 !strcmp(this_char, MNTOPT_SYSVGROUPS)) {
275 mp->m_flags &= ~XFS_MOUNT_GRPID;
276 } else if (!strcmp(this_char, MNTOPT_WSYNC)) {
277 mp->m_flags |= XFS_MOUNT_WSYNC;
278 } else if (!strcmp(this_char, MNTOPT_NORECOVERY)) {
279 mp->m_flags |= XFS_MOUNT_NORECOVERY;
280 } else if (!strcmp(this_char, MNTOPT_NOALIGN)) {
281 mp->m_flags |= XFS_MOUNT_NOALIGN;
282 } else if (!strcmp(this_char, MNTOPT_SWALLOC)) {
283 mp->m_flags |= XFS_MOUNT_SWALLOC;
284 } else if (!strcmp(this_char, MNTOPT_SUNIT)) {
285 if (!value || !*value) {
286 xfs_warn(mp, "%s option requires an argument",
287 this_char);
288 return EINVAL;
290 dsunit = simple_strtoul(value, &eov, 10);
291 } else if (!strcmp(this_char, MNTOPT_SWIDTH)) {
292 if (!value || !*value) {
293 xfs_warn(mp, "%s option requires an argument",
294 this_char);
295 return EINVAL;
297 dswidth = simple_strtoul(value, &eov, 10);
298 } else if (!strcmp(this_char, MNTOPT_64BITINODE)) {
299 mp->m_flags &= ~XFS_MOUNT_SMALL_INUMS;
300 #if !XFS_BIG_INUMS
301 xfs_warn(mp, "%s option not allowed on this system",
302 this_char);
303 return EINVAL;
304 #endif
305 } else if (!strcmp(this_char, MNTOPT_NOUUID)) {
306 mp->m_flags |= XFS_MOUNT_NOUUID;
307 } else if (!strcmp(this_char, MNTOPT_BARRIER)) {
308 mp->m_flags |= XFS_MOUNT_BARRIER;
309 } else if (!strcmp(this_char, MNTOPT_NOBARRIER)) {
310 mp->m_flags &= ~XFS_MOUNT_BARRIER;
311 } else if (!strcmp(this_char, MNTOPT_IKEEP)) {
312 mp->m_flags |= XFS_MOUNT_IKEEP;
313 } else if (!strcmp(this_char, MNTOPT_NOIKEEP)) {
314 mp->m_flags &= ~XFS_MOUNT_IKEEP;
315 } else if (!strcmp(this_char, MNTOPT_LARGEIO)) {
316 mp->m_flags &= ~XFS_MOUNT_COMPAT_IOSIZE;
317 } else if (!strcmp(this_char, MNTOPT_NOLARGEIO)) {
318 mp->m_flags |= XFS_MOUNT_COMPAT_IOSIZE;
319 } else if (!strcmp(this_char, MNTOPT_ATTR2)) {
320 mp->m_flags |= XFS_MOUNT_ATTR2;
321 } else if (!strcmp(this_char, MNTOPT_NOATTR2)) {
322 mp->m_flags &= ~XFS_MOUNT_ATTR2;
323 mp->m_flags |= XFS_MOUNT_NOATTR2;
324 } else if (!strcmp(this_char, MNTOPT_FILESTREAM)) {
325 mp->m_flags |= XFS_MOUNT_FILESTREAMS;
326 } else if (!strcmp(this_char, MNTOPT_NOQUOTA)) {
327 mp->m_qflags &= ~(XFS_UQUOTA_ACCT | XFS_UQUOTA_ACTIVE |
328 XFS_GQUOTA_ACCT | XFS_GQUOTA_ACTIVE |
329 XFS_PQUOTA_ACCT | XFS_PQUOTA_ACTIVE |
330 XFS_UQUOTA_ENFD | XFS_OQUOTA_ENFD);
331 } else if (!strcmp(this_char, MNTOPT_QUOTA) ||
332 !strcmp(this_char, MNTOPT_UQUOTA) ||
333 !strcmp(this_char, MNTOPT_USRQUOTA)) {
334 mp->m_qflags |= (XFS_UQUOTA_ACCT | XFS_UQUOTA_ACTIVE |
335 XFS_UQUOTA_ENFD);
336 } else if (!strcmp(this_char, MNTOPT_QUOTANOENF) ||
337 !strcmp(this_char, MNTOPT_UQUOTANOENF)) {
338 mp->m_qflags |= (XFS_UQUOTA_ACCT | XFS_UQUOTA_ACTIVE);
339 mp->m_qflags &= ~XFS_UQUOTA_ENFD;
340 } else if (!strcmp(this_char, MNTOPT_PQUOTA) ||
341 !strcmp(this_char, MNTOPT_PRJQUOTA)) {
342 mp->m_qflags |= (XFS_PQUOTA_ACCT | XFS_PQUOTA_ACTIVE |
343 XFS_OQUOTA_ENFD);
344 } else if (!strcmp(this_char, MNTOPT_PQUOTANOENF)) {
345 mp->m_qflags |= (XFS_PQUOTA_ACCT | XFS_PQUOTA_ACTIVE);
346 mp->m_qflags &= ~XFS_OQUOTA_ENFD;
347 } else if (!strcmp(this_char, MNTOPT_GQUOTA) ||
348 !strcmp(this_char, MNTOPT_GRPQUOTA)) {
349 mp->m_qflags |= (XFS_GQUOTA_ACCT | XFS_GQUOTA_ACTIVE |
350 XFS_OQUOTA_ENFD);
351 } else if (!strcmp(this_char, MNTOPT_GQUOTANOENF)) {
352 mp->m_qflags |= (XFS_GQUOTA_ACCT | XFS_GQUOTA_ACTIVE);
353 mp->m_qflags &= ~XFS_OQUOTA_ENFD;
354 } else if (!strcmp(this_char, MNTOPT_DELAYLOG)) {
355 mp->m_flags |= XFS_MOUNT_DELAYLOG;
356 } else if (!strcmp(this_char, MNTOPT_NODELAYLOG)) {
357 mp->m_flags &= ~XFS_MOUNT_DELAYLOG;
358 } else if (!strcmp(this_char, "ihashsize")) {
359 xfs_warn(mp,
360 "ihashsize no longer used, option is deprecated.");
361 } else if (!strcmp(this_char, "osyncisdsync")) {
362 xfs_warn(mp,
363 "osyncisdsync has no effect, option is deprecated.");
364 } else if (!strcmp(this_char, "osyncisosync")) {
365 xfs_warn(mp,
366 "osyncisosync has no effect, option is deprecated.");
367 } else if (!strcmp(this_char, "irixsgid")) {
368 xfs_warn(mp,
369 "irixsgid is now a sysctl(2) variable, option is deprecated.");
370 } else {
371 xfs_warn(mp, "unknown mount option [%s].", this_char);
372 return EINVAL;
377 * no recovery flag requires a read-only mount
379 if ((mp->m_flags & XFS_MOUNT_NORECOVERY) &&
380 !(mp->m_flags & XFS_MOUNT_RDONLY)) {
381 xfs_warn(mp, "no-recovery mounts must be read-only.");
382 return EINVAL;
385 if ((mp->m_flags & XFS_MOUNT_NOALIGN) && (dsunit || dswidth)) {
386 xfs_warn(mp,
387 "sunit and swidth options incompatible with the noalign option");
388 return EINVAL;
391 #ifndef CONFIG_XFS_QUOTA
392 if (XFS_IS_QUOTA_RUNNING(mp)) {
393 xfs_warn(mp, "quota support not available in this kernel.");
394 return EINVAL;
396 #endif
398 if ((mp->m_qflags & (XFS_GQUOTA_ACCT | XFS_GQUOTA_ACTIVE)) &&
399 (mp->m_qflags & (XFS_PQUOTA_ACCT | XFS_PQUOTA_ACTIVE))) {
400 xfs_warn(mp, "cannot mount with both project and group quota");
401 return EINVAL;
404 if ((dsunit && !dswidth) || (!dsunit && dswidth)) {
405 xfs_warn(mp, "sunit and swidth must be specified together");
406 return EINVAL;
409 if (dsunit && (dswidth % dsunit != 0)) {
410 xfs_warn(mp,
411 "stripe width (%d) must be a multiple of the stripe unit (%d)",
412 dswidth, dsunit);
413 return EINVAL;
416 done:
417 if (!(mp->m_flags & XFS_MOUNT_NOALIGN)) {
419 * At this point the superblock has not been read
420 * in, therefore we do not know the block size.
421 * Before the mount call ends we will convert
422 * these to FSBs.
424 if (dsunit) {
425 mp->m_dalign = dsunit;
426 mp->m_flags |= XFS_MOUNT_RETERR;
429 if (dswidth)
430 mp->m_swidth = dswidth;
433 if (mp->m_logbufs != -1 &&
434 mp->m_logbufs != 0 &&
435 (mp->m_logbufs < XLOG_MIN_ICLOGS ||
436 mp->m_logbufs > XLOG_MAX_ICLOGS)) {
437 xfs_warn(mp, "invalid logbufs value: %d [not %d-%d]",
438 mp->m_logbufs, XLOG_MIN_ICLOGS, XLOG_MAX_ICLOGS);
439 return XFS_ERROR(EINVAL);
441 if (mp->m_logbsize != -1 &&
442 mp->m_logbsize != 0 &&
443 (mp->m_logbsize < XLOG_MIN_RECORD_BSIZE ||
444 mp->m_logbsize > XLOG_MAX_RECORD_BSIZE ||
445 !is_power_of_2(mp->m_logbsize))) {
446 xfs_warn(mp,
447 "invalid logbufsize: %d [not 16k,32k,64k,128k or 256k]",
448 mp->m_logbsize);
449 return XFS_ERROR(EINVAL);
452 if (iosizelog) {
453 if (iosizelog > XFS_MAX_IO_LOG ||
454 iosizelog < XFS_MIN_IO_LOG) {
455 xfs_warn(mp, "invalid log iosize: %d [not %d-%d]",
456 iosizelog, XFS_MIN_IO_LOG,
457 XFS_MAX_IO_LOG);
458 return XFS_ERROR(EINVAL);
461 mp->m_flags |= XFS_MOUNT_DFLT_IOSIZE;
462 mp->m_readio_log = iosizelog;
463 mp->m_writeio_log = iosizelog;
466 return 0;
469 struct proc_xfs_info {
470 int flag;
471 char *str;
474 STATIC int
475 xfs_showargs(
476 struct xfs_mount *mp,
477 struct seq_file *m)
479 static struct proc_xfs_info xfs_info_set[] = {
480 /* the few simple ones we can get from the mount struct */
481 { XFS_MOUNT_IKEEP, "," MNTOPT_IKEEP },
482 { XFS_MOUNT_WSYNC, "," MNTOPT_WSYNC },
483 { XFS_MOUNT_NOALIGN, "," MNTOPT_NOALIGN },
484 { XFS_MOUNT_SWALLOC, "," MNTOPT_SWALLOC },
485 { XFS_MOUNT_NOUUID, "," MNTOPT_NOUUID },
486 { XFS_MOUNT_NORECOVERY, "," MNTOPT_NORECOVERY },
487 { XFS_MOUNT_ATTR2, "," MNTOPT_ATTR2 },
488 { XFS_MOUNT_FILESTREAMS, "," MNTOPT_FILESTREAM },
489 { XFS_MOUNT_GRPID, "," MNTOPT_GRPID },
490 { XFS_MOUNT_DELAYLOG, "," MNTOPT_DELAYLOG },
491 { 0, NULL }
493 static struct proc_xfs_info xfs_info_unset[] = {
494 /* the few simple ones we can get from the mount struct */
495 { XFS_MOUNT_COMPAT_IOSIZE, "," MNTOPT_LARGEIO },
496 { XFS_MOUNT_BARRIER, "," MNTOPT_NOBARRIER },
497 { XFS_MOUNT_SMALL_INUMS, "," MNTOPT_64BITINODE },
498 { 0, NULL }
500 struct proc_xfs_info *xfs_infop;
502 for (xfs_infop = xfs_info_set; xfs_infop->flag; xfs_infop++) {
503 if (mp->m_flags & xfs_infop->flag)
504 seq_puts(m, xfs_infop->str);
506 for (xfs_infop = xfs_info_unset; xfs_infop->flag; xfs_infop++) {
507 if (!(mp->m_flags & xfs_infop->flag))
508 seq_puts(m, xfs_infop->str);
511 if (mp->m_flags & XFS_MOUNT_DFLT_IOSIZE)
512 seq_printf(m, "," MNTOPT_ALLOCSIZE "=%dk",
513 (int)(1 << mp->m_writeio_log) >> 10);
515 if (mp->m_logbufs > 0)
516 seq_printf(m, "," MNTOPT_LOGBUFS "=%d", mp->m_logbufs);
517 if (mp->m_logbsize > 0)
518 seq_printf(m, "," MNTOPT_LOGBSIZE "=%dk", mp->m_logbsize >> 10);
520 if (mp->m_logname)
521 seq_printf(m, "," MNTOPT_LOGDEV "=%s", mp->m_logname);
522 if (mp->m_rtname)
523 seq_printf(m, "," MNTOPT_RTDEV "=%s", mp->m_rtname);
525 if (mp->m_dalign > 0)
526 seq_printf(m, "," MNTOPT_SUNIT "=%d",
527 (int)XFS_FSB_TO_BB(mp, mp->m_dalign));
528 if (mp->m_swidth > 0)
529 seq_printf(m, "," MNTOPT_SWIDTH "=%d",
530 (int)XFS_FSB_TO_BB(mp, mp->m_swidth));
532 if (mp->m_qflags & (XFS_UQUOTA_ACCT|XFS_UQUOTA_ENFD))
533 seq_puts(m, "," MNTOPT_USRQUOTA);
534 else if (mp->m_qflags & XFS_UQUOTA_ACCT)
535 seq_puts(m, "," MNTOPT_UQUOTANOENF);
537 /* Either project or group quotas can be active, not both */
539 if (mp->m_qflags & XFS_PQUOTA_ACCT) {
540 if (mp->m_qflags & XFS_OQUOTA_ENFD)
541 seq_puts(m, "," MNTOPT_PRJQUOTA);
542 else
543 seq_puts(m, "," MNTOPT_PQUOTANOENF);
544 } else if (mp->m_qflags & XFS_GQUOTA_ACCT) {
545 if (mp->m_qflags & XFS_OQUOTA_ENFD)
546 seq_puts(m, "," MNTOPT_GRPQUOTA);
547 else
548 seq_puts(m, "," MNTOPT_GQUOTANOENF);
551 if (!(mp->m_qflags & XFS_ALL_QUOTA_ACCT))
552 seq_puts(m, "," MNTOPT_NOQUOTA);
554 return 0;
556 __uint64_t
557 xfs_max_file_offset(
558 unsigned int blockshift)
560 unsigned int pagefactor = 1;
561 unsigned int bitshift = BITS_PER_LONG - 1;
563 /* Figure out maximum filesize, on Linux this can depend on
564 * the filesystem blocksize (on 32 bit platforms).
565 * __block_write_begin does this in an [unsigned] long...
566 * page->index << (PAGE_CACHE_SHIFT - bbits)
567 * So, for page sized blocks (4K on 32 bit platforms),
568 * this wraps at around 8Tb (hence MAX_LFS_FILESIZE which is
569 * (((u64)PAGE_CACHE_SIZE << (BITS_PER_LONG-1))-1)
570 * but for smaller blocksizes it is less (bbits = log2 bsize).
571 * Note1: get_block_t takes a long (implicit cast from above)
572 * Note2: The Large Block Device (LBD and HAVE_SECTOR_T) patch
573 * can optionally convert the [unsigned] long from above into
574 * an [unsigned] long long.
577 #if BITS_PER_LONG == 32
578 # if defined(CONFIG_LBDAF)
579 ASSERT(sizeof(sector_t) == 8);
580 pagefactor = PAGE_CACHE_SIZE;
581 bitshift = BITS_PER_LONG;
582 # else
583 pagefactor = PAGE_CACHE_SIZE >> (PAGE_CACHE_SHIFT - blockshift);
584 # endif
585 #endif
587 return (((__uint64_t)pagefactor) << bitshift) - 1;
590 STATIC int
591 xfs_blkdev_get(
592 xfs_mount_t *mp,
593 const char *name,
594 struct block_device **bdevp)
596 int error = 0;
598 *bdevp = blkdev_get_by_path(name, FMODE_READ|FMODE_WRITE|FMODE_EXCL,
599 mp);
600 if (IS_ERR(*bdevp)) {
601 error = PTR_ERR(*bdevp);
602 xfs_warn(mp, "Invalid device [%s], error=%d\n", name, error);
605 return -error;
608 STATIC void
609 xfs_blkdev_put(
610 struct block_device *bdev)
612 if (bdev)
613 blkdev_put(bdev, FMODE_READ|FMODE_WRITE|FMODE_EXCL);
617 * Try to write out the superblock using barriers.
619 STATIC int
620 xfs_barrier_test(
621 xfs_mount_t *mp)
623 xfs_buf_t *sbp = xfs_getsb(mp, 0);
624 int error;
626 XFS_BUF_UNDONE(sbp);
627 XFS_BUF_UNREAD(sbp);
628 XFS_BUF_UNDELAYWRITE(sbp);
629 XFS_BUF_WRITE(sbp);
630 XFS_BUF_UNASYNC(sbp);
631 XFS_BUF_ORDERED(sbp);
633 xfsbdstrat(mp, sbp);
634 error = xfs_buf_iowait(sbp);
637 * Clear all the flags we set and possible error state in the
638 * buffer. We only did the write to try out whether barriers
639 * worked and shouldn't leave any traces in the superblock
640 * buffer.
642 XFS_BUF_DONE(sbp);
643 XFS_BUF_ERROR(sbp, 0);
644 XFS_BUF_UNORDERED(sbp);
646 xfs_buf_relse(sbp);
647 return error;
650 STATIC void
651 xfs_mountfs_check_barriers(xfs_mount_t *mp)
653 int error;
655 if (mp->m_logdev_targp != mp->m_ddev_targp) {
656 xfs_notice(mp,
657 "Disabling barriers, not supported with external log device");
658 mp->m_flags &= ~XFS_MOUNT_BARRIER;
659 return;
662 if (xfs_readonly_buftarg(mp->m_ddev_targp)) {
663 xfs_notice(mp,
664 "Disabling barriers, underlying device is readonly");
665 mp->m_flags &= ~XFS_MOUNT_BARRIER;
666 return;
669 error = xfs_barrier_test(mp);
670 if (error) {
671 xfs_notice(mp,
672 "Disabling barriers, trial barrier write failed");
673 mp->m_flags &= ~XFS_MOUNT_BARRIER;
674 return;
678 void
679 xfs_blkdev_issue_flush(
680 xfs_buftarg_t *buftarg)
682 blkdev_issue_flush(buftarg->bt_bdev, GFP_KERNEL, NULL);
685 STATIC void
686 xfs_close_devices(
687 struct xfs_mount *mp)
689 if (mp->m_logdev_targp && mp->m_logdev_targp != mp->m_ddev_targp) {
690 struct block_device *logdev = mp->m_logdev_targp->bt_bdev;
691 xfs_free_buftarg(mp, mp->m_logdev_targp);
692 xfs_blkdev_put(logdev);
694 if (mp->m_rtdev_targp) {
695 struct block_device *rtdev = mp->m_rtdev_targp->bt_bdev;
696 xfs_free_buftarg(mp, mp->m_rtdev_targp);
697 xfs_blkdev_put(rtdev);
699 xfs_free_buftarg(mp, mp->m_ddev_targp);
703 * The file system configurations are:
704 * (1) device (partition) with data and internal log
705 * (2) logical volume with data and log subvolumes.
706 * (3) logical volume with data, log, and realtime subvolumes.
708 * We only have to handle opening the log and realtime volumes here if
709 * they are present. The data subvolume has already been opened by
710 * get_sb_bdev() and is stored in sb->s_bdev.
712 STATIC int
713 xfs_open_devices(
714 struct xfs_mount *mp)
716 struct block_device *ddev = mp->m_super->s_bdev;
717 struct block_device *logdev = NULL, *rtdev = NULL;
718 int error;
721 * Open real time and log devices - order is important.
723 if (mp->m_logname) {
724 error = xfs_blkdev_get(mp, mp->m_logname, &logdev);
725 if (error)
726 goto out;
729 if (mp->m_rtname) {
730 error = xfs_blkdev_get(mp, mp->m_rtname, &rtdev);
731 if (error)
732 goto out_close_logdev;
734 if (rtdev == ddev || rtdev == logdev) {
735 xfs_warn(mp,
736 "Cannot mount filesystem with identical rtdev and ddev/logdev.");
737 error = EINVAL;
738 goto out_close_rtdev;
743 * Setup xfs_mount buffer target pointers
745 error = ENOMEM;
746 mp->m_ddev_targp = xfs_alloc_buftarg(mp, ddev, 0, mp->m_fsname);
747 if (!mp->m_ddev_targp)
748 goto out_close_rtdev;
750 if (rtdev) {
751 mp->m_rtdev_targp = xfs_alloc_buftarg(mp, rtdev, 1,
752 mp->m_fsname);
753 if (!mp->m_rtdev_targp)
754 goto out_free_ddev_targ;
757 if (logdev && logdev != ddev) {
758 mp->m_logdev_targp = xfs_alloc_buftarg(mp, logdev, 1,
759 mp->m_fsname);
760 if (!mp->m_logdev_targp)
761 goto out_free_rtdev_targ;
762 } else {
763 mp->m_logdev_targp = mp->m_ddev_targp;
766 return 0;
768 out_free_rtdev_targ:
769 if (mp->m_rtdev_targp)
770 xfs_free_buftarg(mp, mp->m_rtdev_targp);
771 out_free_ddev_targ:
772 xfs_free_buftarg(mp, mp->m_ddev_targp);
773 out_close_rtdev:
774 if (rtdev)
775 xfs_blkdev_put(rtdev);
776 out_close_logdev:
777 if (logdev && logdev != ddev)
778 xfs_blkdev_put(logdev);
779 out:
780 return error;
784 * Setup xfs_mount buffer target pointers based on superblock
786 STATIC int
787 xfs_setup_devices(
788 struct xfs_mount *mp)
790 int error;
792 error = xfs_setsize_buftarg(mp->m_ddev_targp, mp->m_sb.sb_blocksize,
793 mp->m_sb.sb_sectsize);
794 if (error)
795 return error;
797 if (mp->m_logdev_targp && mp->m_logdev_targp != mp->m_ddev_targp) {
798 unsigned int log_sector_size = BBSIZE;
800 if (xfs_sb_version_hassector(&mp->m_sb))
801 log_sector_size = mp->m_sb.sb_logsectsize;
802 error = xfs_setsize_buftarg(mp->m_logdev_targp,
803 mp->m_sb.sb_blocksize,
804 log_sector_size);
805 if (error)
806 return error;
808 if (mp->m_rtdev_targp) {
809 error = xfs_setsize_buftarg(mp->m_rtdev_targp,
810 mp->m_sb.sb_blocksize,
811 mp->m_sb.sb_sectsize);
812 if (error)
813 return error;
816 return 0;
820 * XFS AIL push thread support
822 void
823 xfsaild_wakeup(
824 struct xfs_ail *ailp,
825 xfs_lsn_t threshold_lsn)
827 /* only ever move the target forwards */
828 if (XFS_LSN_CMP(threshold_lsn, ailp->xa_target) > 0) {
829 ailp->xa_target = threshold_lsn;
830 wake_up_process(ailp->xa_task);
834 STATIC int
835 xfsaild(
836 void *data)
838 struct xfs_ail *ailp = data;
839 xfs_lsn_t last_pushed_lsn = 0;
840 long tout = 0; /* milliseconds */
842 while (!kthread_should_stop()) {
844 * for short sleeps indicating congestion, don't allow us to
845 * get woken early. Otherwise all we do is bang on the AIL lock
846 * without making progress.
848 if (tout && tout <= 20)
849 __set_current_state(TASK_KILLABLE);
850 else
851 __set_current_state(TASK_INTERRUPTIBLE);
852 schedule_timeout(tout ?
853 msecs_to_jiffies(tout) : MAX_SCHEDULE_TIMEOUT);
855 /* swsusp */
856 try_to_freeze();
858 ASSERT(ailp->xa_mount->m_log);
859 if (XFS_FORCED_SHUTDOWN(ailp->xa_mount))
860 continue;
862 tout = xfsaild_push(ailp, &last_pushed_lsn);
865 return 0;
866 } /* xfsaild */
869 xfsaild_start(
870 struct xfs_ail *ailp)
872 ailp->xa_target = 0;
873 ailp->xa_task = kthread_run(xfsaild, ailp, "xfsaild/%s",
874 ailp->xa_mount->m_fsname);
875 if (IS_ERR(ailp->xa_task))
876 return -PTR_ERR(ailp->xa_task);
877 return 0;
880 void
881 xfsaild_stop(
882 struct xfs_ail *ailp)
884 kthread_stop(ailp->xa_task);
888 /* Catch misguided souls that try to use this interface on XFS */
889 STATIC struct inode *
890 xfs_fs_alloc_inode(
891 struct super_block *sb)
893 BUG();
894 return NULL;
898 * Now that the generic code is guaranteed not to be accessing
899 * the linux inode, we can reclaim the inode.
901 STATIC void
902 xfs_fs_destroy_inode(
903 struct inode *inode)
905 struct xfs_inode *ip = XFS_I(inode);
907 trace_xfs_destroy_inode(ip);
909 XFS_STATS_INC(vn_reclaim);
911 /* bad inode, get out here ASAP */
912 if (is_bad_inode(inode))
913 goto out_reclaim;
915 xfs_ioend_wait(ip);
917 ASSERT(XFS_FORCED_SHUTDOWN(ip->i_mount) || ip->i_delayed_blks == 0);
920 * We should never get here with one of the reclaim flags already set.
922 ASSERT_ALWAYS(!xfs_iflags_test(ip, XFS_IRECLAIMABLE));
923 ASSERT_ALWAYS(!xfs_iflags_test(ip, XFS_IRECLAIM));
926 * We always use background reclaim here because even if the
927 * inode is clean, it still may be under IO and hence we have
928 * to take the flush lock. The background reclaim path handles
929 * this more efficiently than we can here, so simply let background
930 * reclaim tear down all inodes.
932 out_reclaim:
933 xfs_inode_set_reclaim_tag(ip);
937 * Slab object creation initialisation for the XFS inode.
938 * This covers only the idempotent fields in the XFS inode;
939 * all other fields need to be initialised on allocation
940 * from the slab. This avoids the need to repeatedly initialise
941 * fields in the xfs inode that left in the initialise state
942 * when freeing the inode.
944 STATIC void
945 xfs_fs_inode_init_once(
946 void *inode)
948 struct xfs_inode *ip = inode;
950 memset(ip, 0, sizeof(struct xfs_inode));
952 /* vfs inode */
953 inode_init_once(VFS_I(ip));
955 /* xfs inode */
956 atomic_set(&ip->i_iocount, 0);
957 atomic_set(&ip->i_pincount, 0);
958 spin_lock_init(&ip->i_flags_lock);
959 init_waitqueue_head(&ip->i_ipin_wait);
961 * Because we want to use a counting completion, complete
962 * the flush completion once to allow a single access to
963 * the flush completion without blocking.
965 init_completion(&ip->i_flush);
966 complete(&ip->i_flush);
968 mrlock_init(&ip->i_lock, MRLOCK_ALLOW_EQUAL_PRI|MRLOCK_BARRIER,
969 "xfsino", ip->i_ino);
973 * Dirty the XFS inode when mark_inode_dirty_sync() is called so that
974 * we catch unlogged VFS level updates to the inode.
976 * We need the barrier() to maintain correct ordering between unlogged
977 * updates and the transaction commit code that clears the i_update_core
978 * field. This requires all updates to be completed before marking the
979 * inode dirty.
981 STATIC void
982 xfs_fs_dirty_inode(
983 struct inode *inode)
985 barrier();
986 XFS_I(inode)->i_update_core = 1;
989 STATIC int
990 xfs_log_inode(
991 struct xfs_inode *ip)
993 struct xfs_mount *mp = ip->i_mount;
994 struct xfs_trans *tp;
995 int error;
997 xfs_iunlock(ip, XFS_ILOCK_SHARED);
998 tp = xfs_trans_alloc(mp, XFS_TRANS_FSYNC_TS);
999 error = xfs_trans_reserve(tp, 0, XFS_FSYNC_TS_LOG_RES(mp), 0, 0, 0);
1001 if (error) {
1002 xfs_trans_cancel(tp, 0);
1003 /* we need to return with the lock hold shared */
1004 xfs_ilock(ip, XFS_ILOCK_SHARED);
1005 return error;
1008 xfs_ilock(ip, XFS_ILOCK_EXCL);
1011 * Note - it's possible that we might have pushed ourselves out of the
1012 * way during trans_reserve which would flush the inode. But there's
1013 * no guarantee that the inode buffer has actually gone out yet (it's
1014 * delwri). Plus the buffer could be pinned anyway if it's part of
1015 * an inode in another recent transaction. So we play it safe and
1016 * fire off the transaction anyway.
1018 xfs_trans_ijoin(tp, ip);
1019 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1020 error = xfs_trans_commit(tp, 0);
1021 xfs_ilock_demote(ip, XFS_ILOCK_EXCL);
1023 return error;
1026 STATIC int
1027 xfs_fs_write_inode(
1028 struct inode *inode,
1029 struct writeback_control *wbc)
1031 struct xfs_inode *ip = XFS_I(inode);
1032 struct xfs_mount *mp = ip->i_mount;
1033 int error = EAGAIN;
1035 trace_xfs_write_inode(ip);
1037 if (XFS_FORCED_SHUTDOWN(mp))
1038 return XFS_ERROR(EIO);
1040 if (wbc->sync_mode == WB_SYNC_ALL) {
1042 * Make sure the inode has made it it into the log. Instead
1043 * of forcing it all the way to stable storage using a
1044 * synchronous transaction we let the log force inside the
1045 * ->sync_fs call do that for thus, which reduces the number
1046 * of synchronous log foces dramatically.
1048 xfs_ioend_wait(ip);
1049 xfs_ilock(ip, XFS_ILOCK_SHARED);
1050 if (ip->i_update_core) {
1051 error = xfs_log_inode(ip);
1052 if (error)
1053 goto out_unlock;
1055 } else {
1057 * We make this non-blocking if the inode is contended, return
1058 * EAGAIN to indicate to the caller that they did not succeed.
1059 * This prevents the flush path from blocking on inodes inside
1060 * another operation right now, they get caught later by
1061 * xfs_sync.
1063 if (!xfs_ilock_nowait(ip, XFS_ILOCK_SHARED))
1064 goto out;
1066 if (xfs_ipincount(ip) || !xfs_iflock_nowait(ip))
1067 goto out_unlock;
1070 * Now we have the flush lock and the inode is not pinned, we
1071 * can check if the inode is really clean as we know that
1072 * there are no pending transaction completions, it is not
1073 * waiting on the delayed write queue and there is no IO in
1074 * progress.
1076 if (xfs_inode_clean(ip)) {
1077 xfs_ifunlock(ip);
1078 error = 0;
1079 goto out_unlock;
1081 error = xfs_iflush(ip, SYNC_TRYLOCK);
1084 out_unlock:
1085 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1086 out:
1088 * if we failed to write out the inode then mark
1089 * it dirty again so we'll try again later.
1091 if (error)
1092 xfs_mark_inode_dirty_sync(ip);
1093 return -error;
1096 STATIC void
1097 xfs_fs_evict_inode(
1098 struct inode *inode)
1100 xfs_inode_t *ip = XFS_I(inode);
1102 trace_xfs_evict_inode(ip);
1104 truncate_inode_pages(&inode->i_data, 0);
1105 end_writeback(inode);
1106 XFS_STATS_INC(vn_rele);
1107 XFS_STATS_INC(vn_remove);
1108 XFS_STATS_DEC(vn_active);
1111 * The iolock is used by the file system to coordinate reads,
1112 * writes, and block truncates. Up to this point the lock
1113 * protected concurrent accesses by users of the inode. But
1114 * from here forward we're doing some final processing of the
1115 * inode because we're done with it, and although we reuse the
1116 * iolock for protection it is really a distinct lock class
1117 * (in the lockdep sense) from before. To keep lockdep happy
1118 * (and basically indicate what we are doing), we explicitly
1119 * re-init the iolock here.
1121 ASSERT(!rwsem_is_locked(&ip->i_iolock.mr_lock));
1122 mrlock_init(&ip->i_iolock, MRLOCK_BARRIER, "xfsio", ip->i_ino);
1123 lockdep_set_class_and_name(&ip->i_iolock.mr_lock,
1124 &xfs_iolock_reclaimable, "xfs_iolock_reclaimable");
1126 xfs_inactive(ip);
1129 STATIC void
1130 xfs_free_fsname(
1131 struct xfs_mount *mp)
1133 kfree(mp->m_fsname);
1134 kfree(mp->m_rtname);
1135 kfree(mp->m_logname);
1138 STATIC void
1139 xfs_fs_put_super(
1140 struct super_block *sb)
1142 struct xfs_mount *mp = XFS_M(sb);
1145 * Unregister the memory shrinker before we tear down the mount
1146 * structure so we don't have memory reclaim racing with us here.
1148 xfs_inode_shrinker_unregister(mp);
1149 xfs_syncd_stop(mp);
1152 * Blow away any referenced inode in the filestreams cache.
1153 * This can and will cause log traffic as inodes go inactive
1154 * here.
1156 xfs_filestream_unmount(mp);
1158 XFS_bflush(mp->m_ddev_targp);
1160 xfs_unmountfs(mp);
1161 xfs_freesb(mp);
1162 xfs_icsb_destroy_counters(mp);
1163 xfs_close_devices(mp);
1164 xfs_free_fsname(mp);
1165 kfree(mp);
1168 STATIC int
1169 xfs_fs_sync_fs(
1170 struct super_block *sb,
1171 int wait)
1173 struct xfs_mount *mp = XFS_M(sb);
1174 int error;
1177 * Not much we can do for the first async pass. Writing out the
1178 * superblock would be counter-productive as we are going to redirty
1179 * when writing out other data and metadata (and writing out a single
1180 * block is quite fast anyway).
1182 * Try to asynchronously kick off quota syncing at least.
1184 if (!wait) {
1185 xfs_qm_sync(mp, SYNC_TRYLOCK);
1186 return 0;
1189 error = xfs_quiesce_data(mp);
1190 if (error)
1191 return -error;
1193 if (laptop_mode) {
1195 * The disk must be active because we're syncing.
1196 * We schedule xfssyncd now (now that the disk is
1197 * active) instead of later (when it might not be).
1199 flush_delayed_work_sync(&mp->m_sync_work);
1202 return 0;
1205 STATIC int
1206 xfs_fs_statfs(
1207 struct dentry *dentry,
1208 struct kstatfs *statp)
1210 struct xfs_mount *mp = XFS_M(dentry->d_sb);
1211 xfs_sb_t *sbp = &mp->m_sb;
1212 struct xfs_inode *ip = XFS_I(dentry->d_inode);
1213 __uint64_t fakeinos, id;
1214 xfs_extlen_t lsize;
1215 __int64_t ffree;
1217 statp->f_type = XFS_SB_MAGIC;
1218 statp->f_namelen = MAXNAMELEN - 1;
1220 id = huge_encode_dev(mp->m_ddev_targp->bt_dev);
1221 statp->f_fsid.val[0] = (u32)id;
1222 statp->f_fsid.val[1] = (u32)(id >> 32);
1224 xfs_icsb_sync_counters(mp, XFS_ICSB_LAZY_COUNT);
1226 spin_lock(&mp->m_sb_lock);
1227 statp->f_bsize = sbp->sb_blocksize;
1228 lsize = sbp->sb_logstart ? sbp->sb_logblocks : 0;
1229 statp->f_blocks = sbp->sb_dblocks - lsize;
1230 statp->f_bfree = statp->f_bavail =
1231 sbp->sb_fdblocks - XFS_ALLOC_SET_ASIDE(mp);
1232 fakeinos = statp->f_bfree << sbp->sb_inopblog;
1233 statp->f_files =
1234 MIN(sbp->sb_icount + fakeinos, (__uint64_t)XFS_MAXINUMBER);
1235 if (mp->m_maxicount)
1236 statp->f_files = min_t(typeof(statp->f_files),
1237 statp->f_files,
1238 mp->m_maxicount);
1240 /* make sure statp->f_ffree does not underflow */
1241 ffree = statp->f_files - (sbp->sb_icount - sbp->sb_ifree);
1242 statp->f_ffree = max_t(__int64_t, ffree, 0);
1244 spin_unlock(&mp->m_sb_lock);
1246 if ((ip->i_d.di_flags & XFS_DIFLAG_PROJINHERIT) ||
1247 ((mp->m_qflags & (XFS_PQUOTA_ACCT|XFS_OQUOTA_ENFD))) ==
1248 (XFS_PQUOTA_ACCT|XFS_OQUOTA_ENFD))
1249 xfs_qm_statvfs(ip, statp);
1250 return 0;
1253 STATIC void
1254 xfs_save_resvblks(struct xfs_mount *mp)
1256 __uint64_t resblks = 0;
1258 mp->m_resblks_save = mp->m_resblks;
1259 xfs_reserve_blocks(mp, &resblks, NULL);
1262 STATIC void
1263 xfs_restore_resvblks(struct xfs_mount *mp)
1265 __uint64_t resblks;
1267 if (mp->m_resblks_save) {
1268 resblks = mp->m_resblks_save;
1269 mp->m_resblks_save = 0;
1270 } else
1271 resblks = xfs_default_resblks(mp);
1273 xfs_reserve_blocks(mp, &resblks, NULL);
1276 STATIC int
1277 xfs_fs_remount(
1278 struct super_block *sb,
1279 int *flags,
1280 char *options)
1282 struct xfs_mount *mp = XFS_M(sb);
1283 substring_t args[MAX_OPT_ARGS];
1284 char *p;
1285 int error;
1287 while ((p = strsep(&options, ",")) != NULL) {
1288 int token;
1290 if (!*p)
1291 continue;
1293 token = match_token(p, tokens, args);
1294 switch (token) {
1295 case Opt_barrier:
1296 mp->m_flags |= XFS_MOUNT_BARRIER;
1299 * Test if barriers are actually working if we can,
1300 * else delay this check until the filesystem is
1301 * marked writeable.
1303 if (!(mp->m_flags & XFS_MOUNT_RDONLY))
1304 xfs_mountfs_check_barriers(mp);
1305 break;
1306 case Opt_nobarrier:
1307 mp->m_flags &= ~XFS_MOUNT_BARRIER;
1308 break;
1309 default:
1311 * Logically we would return an error here to prevent
1312 * users from believing they might have changed
1313 * mount options using remount which can't be changed.
1315 * But unfortunately mount(8) adds all options from
1316 * mtab and fstab to the mount arguments in some cases
1317 * so we can't blindly reject options, but have to
1318 * check for each specified option if it actually
1319 * differs from the currently set option and only
1320 * reject it if that's the case.
1322 * Until that is implemented we return success for
1323 * every remount request, and silently ignore all
1324 * options that we can't actually change.
1326 #if 0
1327 xfs_info(mp,
1328 "mount option \"%s\" not supported for remount\n", p);
1329 return -EINVAL;
1330 #else
1331 break;
1332 #endif
1336 /* ro -> rw */
1337 if ((mp->m_flags & XFS_MOUNT_RDONLY) && !(*flags & MS_RDONLY)) {
1338 mp->m_flags &= ~XFS_MOUNT_RDONLY;
1339 if (mp->m_flags & XFS_MOUNT_BARRIER)
1340 xfs_mountfs_check_barriers(mp);
1343 * If this is the first remount to writeable state we
1344 * might have some superblock changes to update.
1346 if (mp->m_update_flags) {
1347 error = xfs_mount_log_sb(mp, mp->m_update_flags);
1348 if (error) {
1349 xfs_warn(mp, "failed to write sb changes");
1350 return error;
1352 mp->m_update_flags = 0;
1356 * Fill out the reserve pool if it is empty. Use the stashed
1357 * value if it is non-zero, otherwise go with the default.
1359 xfs_restore_resvblks(mp);
1362 /* rw -> ro */
1363 if (!(mp->m_flags & XFS_MOUNT_RDONLY) && (*flags & MS_RDONLY)) {
1365 * After we have synced the data but before we sync the
1366 * metadata, we need to free up the reserve block pool so that
1367 * the used block count in the superblock on disk is correct at
1368 * the end of the remount. Stash the current reserve pool size
1369 * so that if we get remounted rw, we can return it to the same
1370 * size.
1373 xfs_quiesce_data(mp);
1374 xfs_save_resvblks(mp);
1375 xfs_quiesce_attr(mp);
1376 mp->m_flags |= XFS_MOUNT_RDONLY;
1379 return 0;
1383 * Second stage of a freeze. The data is already frozen so we only
1384 * need to take care of the metadata. Once that's done write a dummy
1385 * record to dirty the log in case of a crash while frozen.
1387 STATIC int
1388 xfs_fs_freeze(
1389 struct super_block *sb)
1391 struct xfs_mount *mp = XFS_M(sb);
1393 xfs_save_resvblks(mp);
1394 xfs_quiesce_attr(mp);
1395 return -xfs_fs_log_dummy(mp);
1398 STATIC int
1399 xfs_fs_unfreeze(
1400 struct super_block *sb)
1402 struct xfs_mount *mp = XFS_M(sb);
1404 xfs_restore_resvblks(mp);
1405 return 0;
1408 STATIC int
1409 xfs_fs_show_options(
1410 struct seq_file *m,
1411 struct vfsmount *mnt)
1413 return -xfs_showargs(XFS_M(mnt->mnt_sb), m);
1417 * This function fills in xfs_mount_t fields based on mount args.
1418 * Note: the superblock _has_ now been read in.
1420 STATIC int
1421 xfs_finish_flags(
1422 struct xfs_mount *mp)
1424 int ronly = (mp->m_flags & XFS_MOUNT_RDONLY);
1426 /* Fail a mount where the logbuf is smaller than the log stripe */
1427 if (xfs_sb_version_haslogv2(&mp->m_sb)) {
1428 if (mp->m_logbsize <= 0 &&
1429 mp->m_sb.sb_logsunit > XLOG_BIG_RECORD_BSIZE) {
1430 mp->m_logbsize = mp->m_sb.sb_logsunit;
1431 } else if (mp->m_logbsize > 0 &&
1432 mp->m_logbsize < mp->m_sb.sb_logsunit) {
1433 xfs_warn(mp,
1434 "logbuf size must be greater than or equal to log stripe size");
1435 return XFS_ERROR(EINVAL);
1437 } else {
1438 /* Fail a mount if the logbuf is larger than 32K */
1439 if (mp->m_logbsize > XLOG_BIG_RECORD_BSIZE) {
1440 xfs_warn(mp,
1441 "logbuf size for version 1 logs must be 16K or 32K");
1442 return XFS_ERROR(EINVAL);
1447 * mkfs'ed attr2 will turn on attr2 mount unless explicitly
1448 * told by noattr2 to turn it off
1450 if (xfs_sb_version_hasattr2(&mp->m_sb) &&
1451 !(mp->m_flags & XFS_MOUNT_NOATTR2))
1452 mp->m_flags |= XFS_MOUNT_ATTR2;
1455 * prohibit r/w mounts of read-only filesystems
1457 if ((mp->m_sb.sb_flags & XFS_SBF_READONLY) && !ronly) {
1458 xfs_warn(mp,
1459 "cannot mount a read-only filesystem as read-write");
1460 return XFS_ERROR(EROFS);
1463 return 0;
1466 STATIC int
1467 xfs_fs_fill_super(
1468 struct super_block *sb,
1469 void *data,
1470 int silent)
1472 struct inode *root;
1473 struct xfs_mount *mp = NULL;
1474 int flags = 0, error = ENOMEM;
1476 mp = kzalloc(sizeof(struct xfs_mount), GFP_KERNEL);
1477 if (!mp)
1478 goto out;
1480 spin_lock_init(&mp->m_sb_lock);
1481 mutex_init(&mp->m_growlock);
1482 atomic_set(&mp->m_active_trans, 0);
1483 INIT_LIST_HEAD(&mp->m_sync_list);
1484 spin_lock_init(&mp->m_sync_lock);
1486 mp->m_super = sb;
1487 sb->s_fs_info = mp;
1489 error = xfs_parseargs(mp, (char *)data);
1490 if (error)
1491 goto out_free_fsname;
1493 sb_min_blocksize(sb, BBSIZE);
1494 sb->s_xattr = xfs_xattr_handlers;
1495 sb->s_export_op = &xfs_export_operations;
1496 #ifdef CONFIG_XFS_QUOTA
1497 sb->s_qcop = &xfs_quotactl_operations;
1498 #endif
1499 sb->s_op = &xfs_super_operations;
1501 if (silent)
1502 flags |= XFS_MFSI_QUIET;
1504 error = xfs_open_devices(mp);
1505 if (error)
1506 goto out_free_fsname;
1508 error = xfs_icsb_init_counters(mp);
1509 if (error)
1510 goto out_close_devices;
1512 error = xfs_readsb(mp, flags);
1513 if (error)
1514 goto out_destroy_counters;
1516 error = xfs_finish_flags(mp);
1517 if (error)
1518 goto out_free_sb;
1520 error = xfs_setup_devices(mp);
1521 if (error)
1522 goto out_free_sb;
1524 if (mp->m_flags & XFS_MOUNT_BARRIER)
1525 xfs_mountfs_check_barriers(mp);
1527 error = xfs_filestream_mount(mp);
1528 if (error)
1529 goto out_free_sb;
1532 * we must configure the block size in the superblock before we run the
1533 * full mount process as the mount process can lookup and cache inodes.
1534 * For the same reason we must also initialise the syncd and register
1535 * the inode cache shrinker so that inodes can be reclaimed during
1536 * operations like a quotacheck that iterate all inodes in the
1537 * filesystem.
1539 sb->s_magic = XFS_SB_MAGIC;
1540 sb->s_blocksize = mp->m_sb.sb_blocksize;
1541 sb->s_blocksize_bits = ffs(sb->s_blocksize) - 1;
1542 sb->s_maxbytes = xfs_max_file_offset(sb->s_blocksize_bits);
1543 sb->s_time_gran = 1;
1544 set_posix_acl_flag(sb);
1546 error = xfs_syncd_init(mp);
1547 if (error)
1548 goto out_filestream_unmount;
1550 xfs_inode_shrinker_register(mp);
1552 error = xfs_mountfs(mp);
1553 if (error)
1554 goto out_syncd_stop;
1556 root = igrab(VFS_I(mp->m_rootip));
1557 if (!root) {
1558 error = ENOENT;
1559 goto fail_unmount;
1561 if (is_bad_inode(root)) {
1562 error = EINVAL;
1563 goto fail_vnrele;
1565 sb->s_root = d_alloc_root(root);
1566 if (!sb->s_root) {
1567 error = ENOMEM;
1568 goto fail_vnrele;
1571 return 0;
1573 out_syncd_stop:
1574 xfs_inode_shrinker_unregister(mp);
1575 xfs_syncd_stop(mp);
1576 out_filestream_unmount:
1577 xfs_filestream_unmount(mp);
1578 out_free_sb:
1579 xfs_freesb(mp);
1580 out_destroy_counters:
1581 xfs_icsb_destroy_counters(mp);
1582 out_close_devices:
1583 xfs_close_devices(mp);
1584 out_free_fsname:
1585 xfs_free_fsname(mp);
1586 kfree(mp);
1587 out:
1588 return -error;
1590 fail_vnrele:
1591 if (sb->s_root) {
1592 dput(sb->s_root);
1593 sb->s_root = NULL;
1594 } else {
1595 iput(root);
1598 fail_unmount:
1599 xfs_inode_shrinker_unregister(mp);
1600 xfs_syncd_stop(mp);
1603 * Blow away any referenced inode in the filestreams cache.
1604 * This can and will cause log traffic as inodes go inactive
1605 * here.
1607 xfs_filestream_unmount(mp);
1609 XFS_bflush(mp->m_ddev_targp);
1611 xfs_unmountfs(mp);
1612 goto out_free_sb;
1615 STATIC struct dentry *
1616 xfs_fs_mount(
1617 struct file_system_type *fs_type,
1618 int flags,
1619 const char *dev_name,
1620 void *data)
1622 return mount_bdev(fs_type, flags, dev_name, data, xfs_fs_fill_super);
1625 static const struct super_operations xfs_super_operations = {
1626 .alloc_inode = xfs_fs_alloc_inode,
1627 .destroy_inode = xfs_fs_destroy_inode,
1628 .dirty_inode = xfs_fs_dirty_inode,
1629 .write_inode = xfs_fs_write_inode,
1630 .evict_inode = xfs_fs_evict_inode,
1631 .put_super = xfs_fs_put_super,
1632 .sync_fs = xfs_fs_sync_fs,
1633 .freeze_fs = xfs_fs_freeze,
1634 .unfreeze_fs = xfs_fs_unfreeze,
1635 .statfs = xfs_fs_statfs,
1636 .remount_fs = xfs_fs_remount,
1637 .show_options = xfs_fs_show_options,
1640 static struct file_system_type xfs_fs_type = {
1641 .owner = THIS_MODULE,
1642 .name = "xfs",
1643 .mount = xfs_fs_mount,
1644 .kill_sb = kill_block_super,
1645 .fs_flags = FS_REQUIRES_DEV,
1648 STATIC int __init
1649 xfs_init_zones(void)
1652 xfs_ioend_zone = kmem_zone_init(sizeof(xfs_ioend_t), "xfs_ioend");
1653 if (!xfs_ioend_zone)
1654 goto out;
1656 xfs_ioend_pool = mempool_create_slab_pool(4 * MAX_BUF_PER_PAGE,
1657 xfs_ioend_zone);
1658 if (!xfs_ioend_pool)
1659 goto out_destroy_ioend_zone;
1661 xfs_log_ticket_zone = kmem_zone_init(sizeof(xlog_ticket_t),
1662 "xfs_log_ticket");
1663 if (!xfs_log_ticket_zone)
1664 goto out_destroy_ioend_pool;
1666 xfs_bmap_free_item_zone = kmem_zone_init(sizeof(xfs_bmap_free_item_t),
1667 "xfs_bmap_free_item");
1668 if (!xfs_bmap_free_item_zone)
1669 goto out_destroy_log_ticket_zone;
1671 xfs_btree_cur_zone = kmem_zone_init(sizeof(xfs_btree_cur_t),
1672 "xfs_btree_cur");
1673 if (!xfs_btree_cur_zone)
1674 goto out_destroy_bmap_free_item_zone;
1676 xfs_da_state_zone = kmem_zone_init(sizeof(xfs_da_state_t),
1677 "xfs_da_state");
1678 if (!xfs_da_state_zone)
1679 goto out_destroy_btree_cur_zone;
1681 xfs_dabuf_zone = kmem_zone_init(sizeof(xfs_dabuf_t), "xfs_dabuf");
1682 if (!xfs_dabuf_zone)
1683 goto out_destroy_da_state_zone;
1685 xfs_ifork_zone = kmem_zone_init(sizeof(xfs_ifork_t), "xfs_ifork");
1686 if (!xfs_ifork_zone)
1687 goto out_destroy_dabuf_zone;
1689 xfs_trans_zone = kmem_zone_init(sizeof(xfs_trans_t), "xfs_trans");
1690 if (!xfs_trans_zone)
1691 goto out_destroy_ifork_zone;
1693 xfs_log_item_desc_zone =
1694 kmem_zone_init(sizeof(struct xfs_log_item_desc),
1695 "xfs_log_item_desc");
1696 if (!xfs_log_item_desc_zone)
1697 goto out_destroy_trans_zone;
1700 * The size of the zone allocated buf log item is the maximum
1701 * size possible under XFS. This wastes a little bit of memory,
1702 * but it is much faster.
1704 xfs_buf_item_zone = kmem_zone_init((sizeof(xfs_buf_log_item_t) +
1705 (((XFS_MAX_BLOCKSIZE / XFS_BLF_CHUNK) /
1706 NBWORD) * sizeof(int))), "xfs_buf_item");
1707 if (!xfs_buf_item_zone)
1708 goto out_destroy_log_item_desc_zone;
1710 xfs_efd_zone = kmem_zone_init((sizeof(xfs_efd_log_item_t) +
1711 ((XFS_EFD_MAX_FAST_EXTENTS - 1) *
1712 sizeof(xfs_extent_t))), "xfs_efd_item");
1713 if (!xfs_efd_zone)
1714 goto out_destroy_buf_item_zone;
1716 xfs_efi_zone = kmem_zone_init((sizeof(xfs_efi_log_item_t) +
1717 ((XFS_EFI_MAX_FAST_EXTENTS - 1) *
1718 sizeof(xfs_extent_t))), "xfs_efi_item");
1719 if (!xfs_efi_zone)
1720 goto out_destroy_efd_zone;
1722 xfs_inode_zone =
1723 kmem_zone_init_flags(sizeof(xfs_inode_t), "xfs_inode",
1724 KM_ZONE_HWALIGN | KM_ZONE_RECLAIM | KM_ZONE_SPREAD,
1725 xfs_fs_inode_init_once);
1726 if (!xfs_inode_zone)
1727 goto out_destroy_efi_zone;
1729 xfs_ili_zone =
1730 kmem_zone_init_flags(sizeof(xfs_inode_log_item_t), "xfs_ili",
1731 KM_ZONE_SPREAD, NULL);
1732 if (!xfs_ili_zone)
1733 goto out_destroy_inode_zone;
1735 return 0;
1737 out_destroy_inode_zone:
1738 kmem_zone_destroy(xfs_inode_zone);
1739 out_destroy_efi_zone:
1740 kmem_zone_destroy(xfs_efi_zone);
1741 out_destroy_efd_zone:
1742 kmem_zone_destroy(xfs_efd_zone);
1743 out_destroy_buf_item_zone:
1744 kmem_zone_destroy(xfs_buf_item_zone);
1745 out_destroy_log_item_desc_zone:
1746 kmem_zone_destroy(xfs_log_item_desc_zone);
1747 out_destroy_trans_zone:
1748 kmem_zone_destroy(xfs_trans_zone);
1749 out_destroy_ifork_zone:
1750 kmem_zone_destroy(xfs_ifork_zone);
1751 out_destroy_dabuf_zone:
1752 kmem_zone_destroy(xfs_dabuf_zone);
1753 out_destroy_da_state_zone:
1754 kmem_zone_destroy(xfs_da_state_zone);
1755 out_destroy_btree_cur_zone:
1756 kmem_zone_destroy(xfs_btree_cur_zone);
1757 out_destroy_bmap_free_item_zone:
1758 kmem_zone_destroy(xfs_bmap_free_item_zone);
1759 out_destroy_log_ticket_zone:
1760 kmem_zone_destroy(xfs_log_ticket_zone);
1761 out_destroy_ioend_pool:
1762 mempool_destroy(xfs_ioend_pool);
1763 out_destroy_ioend_zone:
1764 kmem_zone_destroy(xfs_ioend_zone);
1765 out:
1766 return -ENOMEM;
1769 STATIC void
1770 xfs_destroy_zones(void)
1772 kmem_zone_destroy(xfs_ili_zone);
1773 kmem_zone_destroy(xfs_inode_zone);
1774 kmem_zone_destroy(xfs_efi_zone);
1775 kmem_zone_destroy(xfs_efd_zone);
1776 kmem_zone_destroy(xfs_buf_item_zone);
1777 kmem_zone_destroy(xfs_log_item_desc_zone);
1778 kmem_zone_destroy(xfs_trans_zone);
1779 kmem_zone_destroy(xfs_ifork_zone);
1780 kmem_zone_destroy(xfs_dabuf_zone);
1781 kmem_zone_destroy(xfs_da_state_zone);
1782 kmem_zone_destroy(xfs_btree_cur_zone);
1783 kmem_zone_destroy(xfs_bmap_free_item_zone);
1784 kmem_zone_destroy(xfs_log_ticket_zone);
1785 mempool_destroy(xfs_ioend_pool);
1786 kmem_zone_destroy(xfs_ioend_zone);
1790 STATIC int __init
1791 init_xfs_fs(void)
1793 int error;
1795 printk(KERN_INFO XFS_VERSION_STRING " with "
1796 XFS_BUILD_OPTIONS " enabled\n");
1798 xfs_ioend_init();
1799 xfs_dir_startup();
1801 error = xfs_init_zones();
1802 if (error)
1803 goto out;
1805 error = xfs_mru_cache_init();
1806 if (error)
1807 goto out_destroy_zones;
1809 error = xfs_filestream_init();
1810 if (error)
1811 goto out_mru_cache_uninit;
1813 error = xfs_buf_init();
1814 if (error)
1815 goto out_filestream_uninit;
1817 error = xfs_init_procfs();
1818 if (error)
1819 goto out_buf_terminate;
1821 error = xfs_sysctl_register();
1822 if (error)
1823 goto out_cleanup_procfs;
1826 * max_active is set to 8 to give enough concurency to allow
1827 * multiple work operations on each CPU to run. This allows multiple
1828 * filesystems to be running sync work concurrently, and scales with
1829 * the number of CPUs in the system.
1831 xfs_syncd_wq = alloc_workqueue("xfssyncd", WQ_CPU_INTENSIVE, 8);
1832 if (!xfs_syncd_wq) {
1833 error = -ENOMEM;
1834 goto out_sysctl_unregister;
1837 vfs_initquota();
1839 error = register_filesystem(&xfs_fs_type);
1840 if (error)
1841 goto out_destroy_xfs_syncd;
1842 return 0;
1844 out_destroy_xfs_syncd:
1845 destroy_workqueue(xfs_syncd_wq);
1846 out_sysctl_unregister:
1847 xfs_sysctl_unregister();
1848 out_cleanup_procfs:
1849 xfs_cleanup_procfs();
1850 out_buf_terminate:
1851 xfs_buf_terminate();
1852 out_filestream_uninit:
1853 xfs_filestream_uninit();
1854 out_mru_cache_uninit:
1855 xfs_mru_cache_uninit();
1856 out_destroy_zones:
1857 xfs_destroy_zones();
1858 out:
1859 return error;
1862 STATIC void __exit
1863 exit_xfs_fs(void)
1865 vfs_exitquota();
1866 unregister_filesystem(&xfs_fs_type);
1867 destroy_workqueue(xfs_syncd_wq);
1868 xfs_sysctl_unregister();
1869 xfs_cleanup_procfs();
1870 xfs_buf_terminate();
1871 xfs_filestream_uninit();
1872 xfs_mru_cache_uninit();
1873 xfs_destroy_zones();
1876 module_init(init_xfs_fs);
1877 module_exit(exit_xfs_fs);
1879 MODULE_AUTHOR("Silicon Graphics, Inc.");
1880 MODULE_DESCRIPTION(XFS_VERSION_STRING " with " XFS_BUILD_OPTIONS " enabled");
1881 MODULE_LICENSE("GPL");