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