blob: 15fb262ef8686fdeedcc5924e6981c0faac9ed7f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scotta805bad2006-06-19 08:40:27 +10002 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
Nathan Scott7b718762005-11-02 14:58:39 +11003 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110019#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "xfs_log.h"
21#include "xfs_clnt.h"
Nathan Scotta844f452005-11-02 14:38:42 +110022#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "xfs_trans.h"
24#include "xfs_sb.h"
Nathan Scotta844f452005-11-02 14:38:42 +110025#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_dir2.h"
27#include "xfs_alloc.h"
28#include "xfs_dmapi.h"
29#include "xfs_quota.h"
30#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_bmap_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110032#include "xfs_alloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "xfs_ialloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_dir2_sf.h"
Nathan Scotta844f452005-11-02 14:38:42 +110035#include "xfs_attr_sf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "xfs_dinode.h"
37#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110038#include "xfs_btree.h"
Christoph Hellwig8c4ed632008-10-30 16:55:13 +110039#include "xfs_btree_trace.h"
Nathan Scotta844f452005-11-02 14:38:42 +110040#include "xfs_ialloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include "xfs_bmap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include "xfs_rtalloc.h"
43#include "xfs_error.h"
44#include "xfs_itable.h"
Christoph Hellwig9909c4a2007-10-11 18:11:14 +100045#include "xfs_fsops.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include "xfs_rw.h"
47#include "xfs_acl.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include "xfs_attr.h"
49#include "xfs_buf_item.h"
50#include "xfs_utils.h"
Christoph Hellwig739bfb22007-08-29 10:58:01 +100051#include "xfs_vnodeops.h"
Christoph Hellwig745f6912007-08-30 17:20:39 +100052#include "xfs_vfsops.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include "xfs_version.h"
David Chinnera67d7c52007-11-23 16:29:32 +110054#include "xfs_log_priv.h"
David Chinner249a8c12008-02-05 12:13:32 +110055#include "xfs_trans_priv.h"
Christoph Hellwig48b62a12008-05-20 11:30:39 +100056#include "xfs_filestream.h"
Christoph Hellwig9f8868f2008-07-18 17:11:46 +100057#include "xfs_da_btree.h"
58#include "xfs_dir2_trace.h"
59#include "xfs_extfree_item.h"
60#include "xfs_mru_cache.h"
61#include "xfs_inode_item.h"
David Chinnerfe4fa4b2008-10-30 17:06:08 +110062#include "xfs_sync.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64#include <linux/namei.h>
65#include <linux/init.h>
66#include <linux/mount.h>
Christoph Hellwig0829c362005-09-02 16:58:49 +100067#include <linux/mempool.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#include <linux/writeback.h>
Christoph Hellwig4df08c52005-09-05 08:34:18 +100069#include <linux/kthread.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080070#include <linux/freezer.h>
Christoph Hellwig62a877e2008-07-18 17:12:36 +100071#include <linux/parser.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
David Chinner7989cb82007-02-10 18:34:56 +110073static struct quotactl_ops xfs_quotactl_operations;
74static struct super_operations xfs_super_operations;
75static kmem_zone_t *xfs_vnode_zone;
76static kmem_zone_t *xfs_ioend_zone;
Christoph Hellwig0829c362005-09-02 16:58:49 +100077mempool_t *xfs_ioend_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79STATIC struct xfs_mount_args *
80xfs_args_allocate(
Nathan Scott764d1f82006-03-31 13:04:17 +100081 struct super_block *sb,
82 int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083{
84 struct xfs_mount_args *args;
85
Christoph Hellwigbdd907b2008-05-20 15:10:44 +100086 args = kzalloc(sizeof(struct xfs_mount_args), GFP_KERNEL);
87 if (!args)
88 return NULL;
89
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 args->logbufs = args->logbufsize = -1;
91 strncpy(args->fsname, sb->s_id, MAXNAMELEN);
92
93 /* Copy the already-parsed mount(2) flags we're interested in */
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 if (sb->s_flags & MS_DIRSYNC)
95 args->flags |= XFSMNT_DIRSYNC;
96 if (sb->s_flags & MS_SYNCHRONOUS)
97 args->flags |= XFSMNT_WSYNC;
Nathan Scott764d1f82006-03-31 13:04:17 +100098 if (silent)
99 args->flags |= XFSMNT_QUIET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 args->flags |= XFSMNT_32BITINODES;
101
102 return args;
103}
104
David Chinnera67d7c52007-11-23 16:29:32 +1100105#define MNTOPT_LOGBUFS "logbufs" /* number of XFS log buffers */
106#define MNTOPT_LOGBSIZE "logbsize" /* size of XFS log buffers */
107#define MNTOPT_LOGDEV "logdev" /* log device */
108#define MNTOPT_RTDEV "rtdev" /* realtime I/O device */
109#define MNTOPT_BIOSIZE "biosize" /* log2 of preferred buffered io size */
110#define MNTOPT_WSYNC "wsync" /* safe-mode nfs compatible mount */
111#define MNTOPT_INO64 "ino64" /* force inodes into 64-bit range */
112#define MNTOPT_NOALIGN "noalign" /* turn off stripe alignment */
113#define MNTOPT_SWALLOC "swalloc" /* turn on stripe width allocation */
114#define MNTOPT_SUNIT "sunit" /* data volume stripe unit */
115#define MNTOPT_SWIDTH "swidth" /* data volume stripe width */
116#define MNTOPT_NOUUID "nouuid" /* ignore filesystem UUID */
117#define MNTOPT_MTPT "mtpt" /* filesystem mount point */
118#define MNTOPT_GRPID "grpid" /* group-ID from parent directory */
119#define MNTOPT_NOGRPID "nogrpid" /* group-ID from current process */
120#define MNTOPT_BSDGROUPS "bsdgroups" /* group-ID from parent directory */
121#define MNTOPT_SYSVGROUPS "sysvgroups" /* group-ID from current process */
122#define MNTOPT_ALLOCSIZE "allocsize" /* preferred allocation size */
123#define MNTOPT_NORECOVERY "norecovery" /* don't run XFS recovery */
124#define MNTOPT_BARRIER "barrier" /* use writer barriers for log write and
125 * unwritten extent conversion */
126#define MNTOPT_NOBARRIER "nobarrier" /* .. disable */
127#define MNTOPT_OSYNCISOSYNC "osyncisosync" /* o_sync is REALLY o_sync */
128#define MNTOPT_64BITINODE "inode64" /* inodes can be allocated anywhere */
129#define MNTOPT_IKEEP "ikeep" /* do not free empty inode clusters */
130#define MNTOPT_NOIKEEP "noikeep" /* free empty inode clusters */
131#define MNTOPT_LARGEIO "largeio" /* report large I/O sizes in stat() */
132#define MNTOPT_NOLARGEIO "nolargeio" /* do not report large I/O sizes
133 * in stat(). */
134#define MNTOPT_ATTR2 "attr2" /* do use attr2 attribute format */
135#define MNTOPT_NOATTR2 "noattr2" /* do not use attr2 attribute format */
136#define MNTOPT_FILESTREAM "filestreams" /* use filestreams allocator */
137#define MNTOPT_QUOTA "quota" /* disk quotas (user) */
138#define MNTOPT_NOQUOTA "noquota" /* no quotas */
139#define MNTOPT_USRQUOTA "usrquota" /* user quota enabled */
140#define MNTOPT_GRPQUOTA "grpquota" /* group quota enabled */
141#define MNTOPT_PRJQUOTA "prjquota" /* project quota enabled */
142#define MNTOPT_UQUOTA "uquota" /* user quota (IRIX variant) */
143#define MNTOPT_GQUOTA "gquota" /* group quota (IRIX variant) */
144#define MNTOPT_PQUOTA "pquota" /* project quota (IRIX variant) */
145#define MNTOPT_UQUOTANOENF "uqnoenforce"/* user quota limit enforcement */
146#define MNTOPT_GQUOTANOENF "gqnoenforce"/* group quota limit enforcement */
147#define MNTOPT_PQUOTANOENF "pqnoenforce"/* project quota limit enforcement */
148#define MNTOPT_QUOTANOENF "qnoenforce" /* same as uqnoenforce */
149#define MNTOPT_DMAPI "dmapi" /* DMI enabled (DMAPI / XDSM) */
150#define MNTOPT_XDSM "xdsm" /* DMI enabled (DMAPI / XDSM) */
151#define MNTOPT_DMI "dmi" /* DMI enabled (DMAPI / XDSM) */
152
Christoph Hellwig62a877e2008-07-18 17:12:36 +1000153/*
154 * Table driven mount option parser.
155 *
156 * Currently only used for remount, but it will be used for mount
157 * in the future, too.
158 */
159enum {
160 Opt_barrier, Opt_nobarrier, Opt_err
161};
162
Steven Whitehousea447c092008-10-13 10:46:57 +0100163static const match_table_t tokens = {
Christoph Hellwig62a877e2008-07-18 17:12:36 +1000164 {Opt_barrier, "barrier"},
165 {Opt_nobarrier, "nobarrier"},
166 {Opt_err, NULL}
167};
168
169
David Chinnera67d7c52007-11-23 16:29:32 +1100170STATIC unsigned long
171suffix_strtoul(char *s, char **endp, unsigned int base)
172{
173 int last, shift_left_factor = 0;
174 char *value = s;
175
176 last = strlen(value) - 1;
177 if (value[last] == 'K' || value[last] == 'k') {
178 shift_left_factor = 10;
179 value[last] = '\0';
180 }
181 if (value[last] == 'M' || value[last] == 'm') {
182 shift_left_factor = 20;
183 value[last] = '\0';
184 }
185 if (value[last] == 'G' || value[last] == 'g') {
186 shift_left_factor = 30;
187 value[last] = '\0';
188 }
189
190 return simple_strtoul((const char *)s, endp, base) << shift_left_factor;
191}
192
193STATIC int
194xfs_parseargs(
195 struct xfs_mount *mp,
196 char *options,
197 struct xfs_mount_args *args,
198 int update)
199{
200 char *this_char, *value, *eov;
201 int dsunit, dswidth, vol_dsunit, vol_dswidth;
202 int iosize;
Josef Jeff Sipek1bd960e2008-02-29 13:58:40 +1100203 int dmapi_implies_ikeep = 1;
David Chinnera67d7c52007-11-23 16:29:32 +1100204
205 args->flags |= XFSMNT_BARRIER;
206 args->flags2 |= XFSMNT2_COMPAT_IOSIZE;
207
208 if (!options)
209 goto done;
210
211 iosize = dsunit = dswidth = vol_dsunit = vol_dswidth = 0;
212
213 while ((this_char = strsep(&options, ",")) != NULL) {
214 if (!*this_char)
215 continue;
216 if ((value = strchr(this_char, '=')) != NULL)
217 *value++ = 0;
218
219 if (!strcmp(this_char, MNTOPT_LOGBUFS)) {
220 if (!value || !*value) {
221 cmn_err(CE_WARN,
222 "XFS: %s option requires an argument",
223 this_char);
224 return EINVAL;
225 }
226 args->logbufs = simple_strtoul(value, &eov, 10);
227 } else if (!strcmp(this_char, MNTOPT_LOGBSIZE)) {
228 if (!value || !*value) {
229 cmn_err(CE_WARN,
230 "XFS: %s option requires an argument",
231 this_char);
232 return EINVAL;
233 }
234 args->logbufsize = suffix_strtoul(value, &eov, 10);
235 } else if (!strcmp(this_char, MNTOPT_LOGDEV)) {
236 if (!value || !*value) {
237 cmn_err(CE_WARN,
238 "XFS: %s option requires an argument",
239 this_char);
240 return EINVAL;
241 }
242 strncpy(args->logname, value, MAXNAMELEN);
243 } else if (!strcmp(this_char, MNTOPT_MTPT)) {
244 if (!value || !*value) {
245 cmn_err(CE_WARN,
246 "XFS: %s option requires an argument",
247 this_char);
248 return EINVAL;
249 }
250 strncpy(args->mtpt, value, MAXNAMELEN);
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 }
258 strncpy(args->rtname, value, MAXNAMELEN);
259 } else if (!strcmp(this_char, MNTOPT_BIOSIZE)) {
260 if (!value || !*value) {
261 cmn_err(CE_WARN,
262 "XFS: %s option requires an argument",
263 this_char);
264 return EINVAL;
265 }
266 iosize = simple_strtoul(value, &eov, 10);
267 args->flags |= XFSMNT_IOSIZE;
268 args->iosizelog = (uint8_t) iosize;
269 } else if (!strcmp(this_char, MNTOPT_ALLOCSIZE)) {
270 if (!value || !*value) {
271 cmn_err(CE_WARN,
272 "XFS: %s option requires an argument",
273 this_char);
274 return EINVAL;
275 }
276 iosize = suffix_strtoul(value, &eov, 10);
277 args->flags |= XFSMNT_IOSIZE;
278 args->iosizelog = ffs(iosize) - 1;
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)) {
286 args->flags |= XFSMNT_WSYNC;
287 } else if (!strcmp(this_char, MNTOPT_OSYNCISOSYNC)) {
288 args->flags |= XFSMNT_OSYNCISOSYNC;
289 } else if (!strcmp(this_char, MNTOPT_NORECOVERY)) {
290 args->flags |= XFSMNT_NORECOVERY;
291 } else if (!strcmp(this_char, MNTOPT_INO64)) {
292 args->flags |= XFSMNT_INO64;
293#if !XFS_BIG_INUMS
294 cmn_err(CE_WARN,
295 "XFS: %s option not allowed on this system",
296 this_char);
297 return EINVAL;
298#endif
299 } else if (!strcmp(this_char, MNTOPT_NOALIGN)) {
300 args->flags |= XFSMNT_NOALIGN;
301 } else if (!strcmp(this_char, MNTOPT_SWALLOC)) {
302 args->flags |= XFSMNT_SWALLOC;
303 } else if (!strcmp(this_char, MNTOPT_SUNIT)) {
304 if (!value || !*value) {
305 cmn_err(CE_WARN,
306 "XFS: %s option requires an argument",
307 this_char);
308 return EINVAL;
309 }
310 dsunit = simple_strtoul(value, &eov, 10);
311 } else if (!strcmp(this_char, MNTOPT_SWIDTH)) {
312 if (!value || !*value) {
313 cmn_err(CE_WARN,
314 "XFS: %s option requires an argument",
315 this_char);
316 return EINVAL;
317 }
318 dswidth = simple_strtoul(value, &eov, 10);
319 } else if (!strcmp(this_char, MNTOPT_64BITINODE)) {
320 args->flags &= ~XFSMNT_32BITINODES;
321#if !XFS_BIG_INUMS
322 cmn_err(CE_WARN,
323 "XFS: %s option not allowed on this system",
324 this_char);
325 return EINVAL;
326#endif
327 } else if (!strcmp(this_char, MNTOPT_NOUUID)) {
328 args->flags |= XFSMNT_NOUUID;
329 } else if (!strcmp(this_char, MNTOPT_BARRIER)) {
330 args->flags |= XFSMNT_BARRIER;
331 } else if (!strcmp(this_char, MNTOPT_NOBARRIER)) {
332 args->flags &= ~XFSMNT_BARRIER;
333 } else if (!strcmp(this_char, MNTOPT_IKEEP)) {
Josef Jeff Sipek1bd960e2008-02-29 13:58:40 +1100334 args->flags |= XFSMNT_IKEEP;
David Chinnera67d7c52007-11-23 16:29:32 +1100335 } else if (!strcmp(this_char, MNTOPT_NOIKEEP)) {
Josef Jeff Sipek1bd960e2008-02-29 13:58:40 +1100336 dmapi_implies_ikeep = 0;
337 args->flags &= ~XFSMNT_IKEEP;
David Chinnera67d7c52007-11-23 16:29:32 +1100338 } else if (!strcmp(this_char, MNTOPT_LARGEIO)) {
339 args->flags2 &= ~XFSMNT2_COMPAT_IOSIZE;
340 } else if (!strcmp(this_char, MNTOPT_NOLARGEIO)) {
341 args->flags2 |= XFSMNT2_COMPAT_IOSIZE;
342 } else if (!strcmp(this_char, MNTOPT_ATTR2)) {
343 args->flags |= XFSMNT_ATTR2;
344 } else if (!strcmp(this_char, MNTOPT_NOATTR2)) {
345 args->flags &= ~XFSMNT_ATTR2;
Tim Shimmin7c12f292008-04-30 18:15:28 +1000346 args->flags |= XFSMNT_NOATTR2;
David Chinnera67d7c52007-11-23 16:29:32 +1100347 } else if (!strcmp(this_char, MNTOPT_FILESTREAM)) {
348 args->flags2 |= XFSMNT2_FILESTREAMS;
349 } else if (!strcmp(this_char, MNTOPT_NOQUOTA)) {
350 args->flags &= ~(XFSMNT_UQUOTAENF|XFSMNT_UQUOTA);
351 args->flags &= ~(XFSMNT_GQUOTAENF|XFSMNT_GQUOTA);
352 } else if (!strcmp(this_char, MNTOPT_QUOTA) ||
353 !strcmp(this_char, MNTOPT_UQUOTA) ||
354 !strcmp(this_char, MNTOPT_USRQUOTA)) {
355 args->flags |= XFSMNT_UQUOTA | XFSMNT_UQUOTAENF;
356 } else if (!strcmp(this_char, MNTOPT_QUOTANOENF) ||
357 !strcmp(this_char, MNTOPT_UQUOTANOENF)) {
358 args->flags |= XFSMNT_UQUOTA;
359 args->flags &= ~XFSMNT_UQUOTAENF;
360 } else if (!strcmp(this_char, MNTOPT_PQUOTA) ||
361 !strcmp(this_char, MNTOPT_PRJQUOTA)) {
362 args->flags |= XFSMNT_PQUOTA | XFSMNT_PQUOTAENF;
363 } else if (!strcmp(this_char, MNTOPT_PQUOTANOENF)) {
364 args->flags |= XFSMNT_PQUOTA;
365 args->flags &= ~XFSMNT_PQUOTAENF;
366 } else if (!strcmp(this_char, MNTOPT_GQUOTA) ||
367 !strcmp(this_char, MNTOPT_GRPQUOTA)) {
368 args->flags |= XFSMNT_GQUOTA | XFSMNT_GQUOTAENF;
369 } else if (!strcmp(this_char, MNTOPT_GQUOTANOENF)) {
370 args->flags |= XFSMNT_GQUOTA;
371 args->flags &= ~XFSMNT_GQUOTAENF;
372 } else if (!strcmp(this_char, MNTOPT_DMAPI)) {
373 args->flags |= XFSMNT_DMAPI;
374 } else if (!strcmp(this_char, MNTOPT_XDSM)) {
375 args->flags |= XFSMNT_DMAPI;
376 } else if (!strcmp(this_char, MNTOPT_DMI)) {
377 args->flags |= XFSMNT_DMAPI;
378 } else if (!strcmp(this_char, "ihashsize")) {
379 cmn_err(CE_WARN,
380 "XFS: ihashsize no longer used, option is deprecated.");
381 } else if (!strcmp(this_char, "osyncisdsync")) {
382 /* no-op, this is now the default */
383 cmn_err(CE_WARN,
384 "XFS: osyncisdsync is now the default, option is deprecated.");
385 } else if (!strcmp(this_char, "irixsgid")) {
386 cmn_err(CE_WARN,
387 "XFS: irixsgid is now a sysctl(2) variable, option is deprecated.");
388 } else {
389 cmn_err(CE_WARN,
390 "XFS: unknown mount option [%s].", this_char);
391 return EINVAL;
392 }
393 }
394
395 if (args->flags & XFSMNT_NORECOVERY) {
396 if ((mp->m_flags & XFS_MOUNT_RDONLY) == 0) {
397 cmn_err(CE_WARN,
398 "XFS: no-recovery mounts must be read-only.");
399 return EINVAL;
400 }
401 }
402
403 if ((args->flags & XFSMNT_NOALIGN) && (dsunit || dswidth)) {
404 cmn_err(CE_WARN,
405 "XFS: sunit and swidth options incompatible with the noalign option");
406 return EINVAL;
407 }
408
409 if ((args->flags & XFSMNT_GQUOTA) && (args->flags & XFSMNT_PQUOTA)) {
410 cmn_err(CE_WARN,
411 "XFS: cannot mount with both project and group quota");
412 return EINVAL;
413 }
414
415 if ((args->flags & XFSMNT_DMAPI) && *args->mtpt == '\0') {
416 printk("XFS: %s option needs the mount point option as well\n",
417 MNTOPT_DMAPI);
418 return EINVAL;
419 }
420
421 if ((dsunit && !dswidth) || (!dsunit && dswidth)) {
422 cmn_err(CE_WARN,
423 "XFS: sunit and swidth must be specified together");
424 return EINVAL;
425 }
426
427 if (dsunit && (dswidth % dsunit != 0)) {
428 cmn_err(CE_WARN,
429 "XFS: stripe width (%d) must be a multiple of the stripe unit (%d)",
430 dswidth, dsunit);
431 return EINVAL;
432 }
433
434 /*
435 * Applications using DMI filesystems often expect the
436 * inode generation number to be monotonically increasing.
437 * If we delete inode chunks we break this assumption, so
438 * keep unused inode chunks on disk for DMI filesystems
439 * until we come up with a better solution.
440 * Note that if "ikeep" or "noikeep" mount options are
441 * supplied, then they are honored.
442 */
Josef Jeff Sipek1bd960e2008-02-29 13:58:40 +1100443 if ((args->flags & XFSMNT_DMAPI) && dmapi_implies_ikeep)
444 args->flags |= XFSMNT_IKEEP;
David Chinnera67d7c52007-11-23 16:29:32 +1100445
446 if ((args->flags & XFSMNT_NOALIGN) != XFSMNT_NOALIGN) {
447 if (dsunit) {
448 args->sunit = dsunit;
449 args->flags |= XFSMNT_RETERR;
450 } else {
451 args->sunit = vol_dsunit;
452 }
453 dswidth ? (args->swidth = dswidth) :
454 (args->swidth = vol_dswidth);
455 } else {
456 args->sunit = args->swidth = 0;
457 }
458
459done:
460 if (args->flags & XFSMNT_32BITINODES)
461 mp->m_flags |= XFS_MOUNT_SMALL_INUMS;
462 if (args->flags2)
463 args->flags |= XFSMNT_FLAGS2;
464 return 0;
465}
466
467struct proc_xfs_info {
468 int flag;
469 char *str;
470};
471
472STATIC int
473xfs_showargs(
474 struct xfs_mount *mp,
475 struct seq_file *m)
476{
477 static struct proc_xfs_info xfs_info_set[] = {
478 /* the few simple ones we can get from the mount struct */
Josef Jeff Sipek1bd960e2008-02-29 13:58:40 +1100479 { XFS_MOUNT_IKEEP, "," MNTOPT_IKEEP },
David Chinnera67d7c52007-11-23 16:29:32 +1100480 { XFS_MOUNT_WSYNC, "," MNTOPT_WSYNC },
481 { XFS_MOUNT_INO64, "," MNTOPT_INO64 },
482 { XFS_MOUNT_NOALIGN, "," MNTOPT_NOALIGN },
483 { XFS_MOUNT_SWALLOC, "," MNTOPT_SWALLOC },
484 { XFS_MOUNT_NOUUID, "," MNTOPT_NOUUID },
485 { XFS_MOUNT_NORECOVERY, "," MNTOPT_NORECOVERY },
486 { XFS_MOUNT_OSYNCISOSYNC, "," MNTOPT_OSYNCISOSYNC },
487 { XFS_MOUNT_ATTR2, "," MNTOPT_ATTR2 },
488 { XFS_MOUNT_FILESTREAMS, "," MNTOPT_FILESTREAM },
489 { XFS_MOUNT_DMAPI, "," MNTOPT_DMAPI },
490 { XFS_MOUNT_GRPID, "," MNTOPT_GRPID },
491 { 0, NULL }
492 };
493 static struct proc_xfs_info xfs_info_unset[] = {
494 /* the few simple ones we can get from the mount struct */
David Chinnera67d7c52007-11-23 16:29:32 +1100495 { XFS_MOUNT_COMPAT_IOSIZE, "," MNTOPT_LARGEIO },
496 { XFS_MOUNT_BARRIER, "," MNTOPT_NOBARRIER },
497 { XFS_MOUNT_SMALL_INUMS, "," MNTOPT_64BITINODE },
498 { 0, NULL }
499 };
500 struct proc_xfs_info *xfs_infop;
501
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);
505 }
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);
509 }
510
511 if (mp->m_flags & XFS_MOUNT_DFLT_IOSIZE)
512 seq_printf(m, "," MNTOPT_ALLOCSIZE "=%dk",
513 (int)(1 << mp->m_writeio_log) >> 10);
514
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);
519
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);
524
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));
531
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);
536
537 if (mp->m_qflags & (XFS_PQUOTA_ACCT|XFS_OQUOTA_ENFD))
538 seq_puts(m, "," MNTOPT_PRJQUOTA);
539 else if (mp->m_qflags & XFS_PQUOTA_ACCT)
540 seq_puts(m, "," MNTOPT_PQUOTANOENF);
541
542 if (mp->m_qflags & (XFS_GQUOTA_ACCT|XFS_OQUOTA_ENFD))
543 seq_puts(m, "," MNTOPT_GRPQUOTA);
544 else if (mp->m_qflags & XFS_GQUOTA_ACCT)
545 seq_puts(m, "," MNTOPT_GQUOTANOENF);
546
547 if (!(mp->m_qflags & XFS_ALL_QUOTA_ACCT))
548 seq_puts(m, "," MNTOPT_NOQUOTA);
549
550 return 0;
551}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552__uint64_t
553xfs_max_file_offset(
554 unsigned int blockshift)
555{
556 unsigned int pagefactor = 1;
557 unsigned int bitshift = BITS_PER_LONG - 1;
558
559 /* Figure out maximum filesize, on Linux this can depend on
560 * the filesystem blocksize (on 32 bit platforms).
561 * __block_prepare_write does this in an [unsigned] long...
562 * page->index << (PAGE_CACHE_SHIFT - bbits)
563 * So, for page sized blocks (4K on 32 bit platforms),
564 * this wraps at around 8Tb (hence MAX_LFS_FILESIZE which is
565 * (((u64)PAGE_CACHE_SIZE << (BITS_PER_LONG-1))-1)
566 * but for smaller blocksizes it is less (bbits = log2 bsize).
567 * Note1: get_block_t takes a long (implicit cast from above)
568 * Note2: The Large Block Device (LBD and HAVE_SECTOR_T) patch
569 * can optionally convert the [unsigned] long from above into
570 * an [unsigned] long long.
571 */
572
573#if BITS_PER_LONG == 32
574# if defined(CONFIG_LBD)
575 ASSERT(sizeof(sector_t) == 8);
576 pagefactor = PAGE_CACHE_SIZE;
577 bitshift = BITS_PER_LONG;
578# else
579 pagefactor = PAGE_CACHE_SIZE >> (PAGE_CACHE_SHIFT - blockshift);
580# endif
581#endif
582
583 return (((__uint64_t)pagefactor) << bitshift) - 1;
584}
585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586int
587xfs_blkdev_get(
588 xfs_mount_t *mp,
589 const char *name,
590 struct block_device **bdevp)
591{
592 int error = 0;
593
Al Viro30c40d22008-02-22 19:50:45 -0500594 *bdevp = open_bdev_exclusive(name, FMODE_READ|FMODE_WRITE, mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 if (IS_ERR(*bdevp)) {
596 error = PTR_ERR(*bdevp);
597 printk("XFS: Invalid device [%s], error=%d\n", name, error);
598 }
599
600 return -error;
601}
602
603void
604xfs_blkdev_put(
605 struct block_device *bdev)
606{
607 if (bdev)
Al Viro30c40d22008-02-22 19:50:45 -0500608 close_bdev_exclusive(bdev, FMODE_READ|FMODE_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609}
610
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100611/*
612 * Try to write out the superblock using barriers.
613 */
614STATIC int
615xfs_barrier_test(
616 xfs_mount_t *mp)
617{
618 xfs_buf_t *sbp = xfs_getsb(mp, 0);
619 int error;
620
621 XFS_BUF_UNDONE(sbp);
622 XFS_BUF_UNREAD(sbp);
623 XFS_BUF_UNDELAYWRITE(sbp);
624 XFS_BUF_WRITE(sbp);
625 XFS_BUF_UNASYNC(sbp);
626 XFS_BUF_ORDERED(sbp);
627
628 xfsbdstrat(mp, sbp);
629 error = xfs_iowait(sbp);
630
631 /*
632 * Clear all the flags we set and possible error state in the
633 * buffer. We only did the write to try out whether barriers
634 * worked and shouldn't leave any traces in the superblock
635 * buffer.
636 */
637 XFS_BUF_DONE(sbp);
638 XFS_BUF_ERROR(sbp, 0);
639 XFS_BUF_UNORDERED(sbp);
640
641 xfs_buf_relse(sbp);
642 return error;
643}
644
645void
646xfs_mountfs_check_barriers(xfs_mount_t *mp)
647{
648 int error;
649
650 if (mp->m_logdev_targp != mp->m_ddev_targp) {
651 xfs_fs_cmn_err(CE_NOTE, mp,
652 "Disabling barriers, not supported with external log device");
653 mp->m_flags &= ~XFS_MOUNT_BARRIER;
Christoph Hellwig4ef19dd2006-01-11 15:27:18 +1100654 return;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100655 }
656
Nathan Scottb2ea4012006-07-28 17:05:13 +1000657 if (xfs_readonly_buftarg(mp->m_ddev_targp)) {
658 xfs_fs_cmn_err(CE_NOTE, mp,
659 "Disabling barriers, underlying device is readonly");
660 mp->m_flags &= ~XFS_MOUNT_BARRIER;
661 return;
662 }
663
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100664 error = xfs_barrier_test(mp);
665 if (error) {
666 xfs_fs_cmn_err(CE_NOTE, mp,
667 "Disabling barriers, trial barrier write failed");
668 mp->m_flags &= ~XFS_MOUNT_BARRIER;
Christoph Hellwig4ef19dd2006-01-11 15:27:18 +1100669 return;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100670 }
671}
672
673void
674xfs_blkdev_issue_flush(
675 xfs_buftarg_t *buftarg)
676{
Nathan Scottce8e9222006-01-11 15:39:08 +1100677 blkdev_issue_flush(buftarg->bt_bdev, NULL);
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100678}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000680STATIC void
681xfs_close_devices(
682 struct xfs_mount *mp)
683{
684 if (mp->m_logdev_targp && mp->m_logdev_targp != mp->m_ddev_targp) {
Lachlan McIlroyc032bfc2008-07-18 17:13:12 +1000685 struct block_device *logdev = mp->m_logdev_targp->bt_bdev;
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000686 xfs_free_buftarg(mp->m_logdev_targp);
Lachlan McIlroyc032bfc2008-07-18 17:13:12 +1000687 xfs_blkdev_put(logdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000688 }
689 if (mp->m_rtdev_targp) {
Lachlan McIlroyc032bfc2008-07-18 17:13:12 +1000690 struct block_device *rtdev = mp->m_rtdev_targp->bt_bdev;
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000691 xfs_free_buftarg(mp->m_rtdev_targp);
Lachlan McIlroyc032bfc2008-07-18 17:13:12 +1000692 xfs_blkdev_put(rtdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000693 }
694 xfs_free_buftarg(mp->m_ddev_targp);
695}
696
697/*
698 * The file system configurations are:
699 * (1) device (partition) with data and internal log
700 * (2) logical volume with data and log subvolumes.
701 * (3) logical volume with data, log, and realtime subvolumes.
702 *
703 * We only have to handle opening the log and realtime volumes here if
704 * they are present. The data subvolume has already been opened by
705 * get_sb_bdev() and is stored in sb->s_bdev.
706 */
707STATIC int
708xfs_open_devices(
709 struct xfs_mount *mp,
710 struct xfs_mount_args *args)
711{
712 struct block_device *ddev = mp->m_super->s_bdev;
713 struct block_device *logdev = NULL, *rtdev = NULL;
714 int error;
715
716 /*
717 * Open real time and log devices - order is important.
718 */
719 if (args->logname[0]) {
720 error = xfs_blkdev_get(mp, args->logname, &logdev);
721 if (error)
722 goto out;
723 }
724
725 if (args->rtname[0]) {
726 error = xfs_blkdev_get(mp, args->rtname, &rtdev);
727 if (error)
728 goto out_close_logdev;
729
730 if (rtdev == ddev || rtdev == logdev) {
731 cmn_err(CE_WARN,
732 "XFS: Cannot mount filesystem with identical rtdev and ddev/logdev.");
733 error = EINVAL;
734 goto out_close_rtdev;
735 }
736 }
737
738 /*
739 * Setup xfs_mount buffer target pointers
740 */
741 error = ENOMEM;
742 mp->m_ddev_targp = xfs_alloc_buftarg(ddev, 0);
743 if (!mp->m_ddev_targp)
744 goto out_close_rtdev;
745
746 if (rtdev) {
747 mp->m_rtdev_targp = xfs_alloc_buftarg(rtdev, 1);
748 if (!mp->m_rtdev_targp)
749 goto out_free_ddev_targ;
750 }
751
752 if (logdev && logdev != ddev) {
753 mp->m_logdev_targp = xfs_alloc_buftarg(logdev, 1);
754 if (!mp->m_logdev_targp)
755 goto out_free_rtdev_targ;
756 } else {
757 mp->m_logdev_targp = mp->m_ddev_targp;
758 }
759
760 return 0;
761
762 out_free_rtdev_targ:
763 if (mp->m_rtdev_targp)
764 xfs_free_buftarg(mp->m_rtdev_targp);
765 out_free_ddev_targ:
766 xfs_free_buftarg(mp->m_ddev_targp);
767 out_close_rtdev:
768 if (rtdev)
769 xfs_blkdev_put(rtdev);
770 out_close_logdev:
771 if (logdev && logdev != ddev)
772 xfs_blkdev_put(logdev);
773 out:
774 return error;
775}
776
Christoph Hellwige34b5622008-05-20 15:10:36 +1000777/*
778 * Setup xfs_mount buffer target pointers based on superblock
779 */
780STATIC int
781xfs_setup_devices(
782 struct xfs_mount *mp)
783{
784 int error;
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000785
Christoph Hellwige34b5622008-05-20 15:10:36 +1000786 error = xfs_setsize_buftarg(mp->m_ddev_targp, mp->m_sb.sb_blocksize,
787 mp->m_sb.sb_sectsize);
788 if (error)
789 return error;
790
791 if (mp->m_logdev_targp && mp->m_logdev_targp != mp->m_ddev_targp) {
792 unsigned int log_sector_size = BBSIZE;
793
794 if (xfs_sb_version_hassector(&mp->m_sb))
795 log_sector_size = mp->m_sb.sb_logsectsize;
796 error = xfs_setsize_buftarg(mp->m_logdev_targp,
797 mp->m_sb.sb_blocksize,
798 log_sector_size);
799 if (error)
800 return error;
801 }
802 if (mp->m_rtdev_targp) {
803 error = xfs_setsize_buftarg(mp->m_rtdev_targp,
804 mp->m_sb.sb_blocksize,
805 mp->m_sb.sb_sectsize);
806 if (error)
807 return error;
808 }
809
810 return 0;
811}
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000812
David Chinner249a8c12008-02-05 12:13:32 +1100813/*
814 * XFS AIL push thread support
815 */
816void
817xfsaild_wakeup(
818 xfs_mount_t *mp,
819 xfs_lsn_t threshold_lsn)
820{
821 mp->m_ail.xa_target = threshold_lsn;
822 wake_up_process(mp->m_ail.xa_task);
823}
824
825int
826xfsaild(
827 void *data)
828{
829 xfs_mount_t *mp = (xfs_mount_t *)data;
830 xfs_lsn_t last_pushed_lsn = 0;
831 long tout = 0;
832
833 while (!kthread_should_stop()) {
834 if (tout)
835 schedule_timeout_interruptible(msecs_to_jiffies(tout));
836 tout = 1000;
837
838 /* swsusp */
839 try_to_freeze();
840
841 ASSERT(mp->m_log);
842 if (XFS_FORCED_SHUTDOWN(mp))
843 continue;
844
845 tout = xfsaild_push(mp, &last_pushed_lsn);
846 }
847
848 return 0;
849} /* xfsaild */
850
851int
852xfsaild_start(
853 xfs_mount_t *mp)
854{
855 mp->m_ail.xa_target = 0;
856 mp->m_ail.xa_task = kthread_run(xfsaild, mp, "xfsaild");
857 if (IS_ERR(mp->m_ail.xa_task))
858 return -PTR_ERR(mp->m_ail.xa_task);
859 return 0;
860}
861
862void
863xfsaild_stop(
864 xfs_mount_t *mp)
865{
866 kthread_stop(mp->m_ail.xa_task);
867}
868
869
870
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871STATIC struct inode *
Nathan Scotta50cd262006-03-14 14:06:18 +1100872xfs_fs_alloc_inode(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 struct super_block *sb)
874{
Christoph Hellwigdf80c932008-08-13 16:22:09 +1000875 return kmem_zone_alloc(xfs_vnode_zone, KM_SLEEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876}
877
878STATIC void
Nathan Scotta50cd262006-03-14 14:06:18 +1100879xfs_fs_destroy_inode(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 struct inode *inode)
881{
Christoph Hellwiga19d0332008-08-13 16:11:26 +1000882 kmem_zone_free(xfs_vnode_zone, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883}
884
885STATIC void
Nathan Scotta50cd262006-03-14 14:06:18 +1100886xfs_fs_inode_init_once(
Christoph Lameter4ba9b9d2007-10-16 23:25:51 -0700887 void *vnode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888{
Christoph Hellwig863890c2008-08-13 16:12:05 +1000889 inode_init_once((struct inode *)vnode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890}
891
David Chinner07c8f672008-10-30 16:11:59 +1100892
893/*
894 * Slab object creation initialisation for the XFS inode.
895 * This covers only the idempotent fields in the XFS inode;
896 * all other fields need to be initialised on allocation
897 * from the slab. This avoids the need to repeatedly intialise
898 * fields in the xfs inode that left in the initialise state
899 * when freeing the inode.
900 */
901void
902xfs_inode_init_once(
David Chinner07c8f672008-10-30 16:11:59 +1100903 void *inode)
904{
905 struct xfs_inode *ip = inode;
906
907 memset(ip, 0, sizeof(struct xfs_inode));
908 atomic_set(&ip->i_iocount, 0);
909 atomic_set(&ip->i_pincount, 0);
910 spin_lock_init(&ip->i_flags_lock);
911 INIT_LIST_HEAD(&ip->i_reclaim);
912 init_waitqueue_head(&ip->i_ipin_wait);
913 /*
914 * Because we want to use a counting completion, complete
915 * the flush completion once to allow a single access to
916 * the flush completion without blocking.
917 */
918 init_completion(&ip->i_flush);
919 complete(&ip->i_flush);
920
921 mrlock_init(&ip->i_lock, MRLOCK_ALLOW_EQUAL_PRI|MRLOCK_BARRIER,
922 "xfsino", ip->i_ino);
923 mrlock_init(&ip->i_iolock, MRLOCK_BARRIER, "xfsio", ip->i_ino);
924}
925
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926/*
927 * Attempt to flush the inode, this will actually fail
928 * if the inode is pinned, but we dirty the inode again
929 * at the point when it is unpinned after a log write,
Nathan Scott87582802006-03-14 13:18:19 +1100930 * since this is when the inode itself becomes flushable.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 */
932STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +1100933xfs_fs_write_inode(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 struct inode *inode,
935 int sync)
936{
David Chinnera3f74ff2008-03-06 13:43:42 +1100937 int error = 0;
938 int flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
Lachlan McIlroycf441ee2008-02-07 16:42:19 +1100940 xfs_itrace_entry(XFS_I(inode));
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000941 if (sync) {
942 filemap_fdatawait(inode->i_mapping);
943 flags |= FLUSH_SYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 }
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000945 error = xfs_inode_flush(XFS_I(inode), flags);
Lachlan McIlroye893bff2007-10-12 11:13:35 +1000946 /*
947 * if we failed to write out the inode then mark
948 * it dirty again so we'll try again later.
949 */
950 if (error)
951 mark_inode_dirty_sync(inode);
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000952
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 return -error;
954}
955
956STATIC void
Nathan Scotta50cd262006-03-14 14:06:18 +1100957xfs_fs_clear_inode(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 struct inode *inode)
959{
Christoph Hellwig1543d792007-08-29 11:46:47 +1000960 xfs_inode_t *ip = XFS_I(inode);
Christoph Hellwig56d433e2005-09-05 08:23:54 +1000961
Christoph Hellwig02ba71d2005-09-05 08:28:02 +1000962 /*
Christoph Hellwig1543d792007-08-29 11:46:47 +1000963 * ip can be null when xfs_iget_core calls xfs_idestroy if we
Christoph Hellwig02ba71d2005-09-05 08:28:02 +1000964 * find an inode with di_mode == 0 but without IGET_CREATE set.
965 */
Christoph Hellwig1543d792007-08-29 11:46:47 +1000966 if (ip) {
Lachlan McIlroycf441ee2008-02-07 16:42:19 +1100967 xfs_itrace_entry(ip);
Christoph Hellwig1543d792007-08-29 11:46:47 +1000968 XFS_STATS_INC(vn_rele);
969 XFS_STATS_INC(vn_remove);
970 XFS_STATS_INC(vn_reclaim);
971 XFS_STATS_DEC(vn_active);
Christoph Hellwig56d433e2005-09-05 08:23:54 +1000972
Christoph Hellwig1543d792007-08-29 11:46:47 +1000973 xfs_inactive(ip);
974 xfs_iflags_clear(ip, XFS_IMODIFIED);
975 if (xfs_reclaim(ip))
Harvey Harrison34a622b2008-04-10 12:19:21 +1000976 panic("%s: cannot reclaim 0x%p\n", __func__, inode);
Christoph Hellwigb3aea4e2007-08-29 11:44:37 +1000977 }
Christoph Hellwig56d433e2005-09-05 08:23:54 +1000978
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000979 ASSERT(XFS_I(inode) == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980}
981
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982STATIC void
Christoph Hellwiga7381592008-08-13 16:04:05 +1000983xfs_free_fsname(
984 struct xfs_mount *mp)
985{
986 kfree(mp->m_fsname);
987 kfree(mp->m_rtname);
988 kfree(mp->m_logname);
989}
990
991STATIC void
Nathan Scotta50cd262006-03-14 14:06:18 +1100992xfs_fs_put_super(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 struct super_block *sb)
994{
Christoph Hellwig745f6912007-08-30 17:20:39 +1000995 struct xfs_mount *mp = XFS_M(sb);
Christoph Hellwige48ad312008-05-20 11:30:52 +1000996 struct xfs_inode *rip = mp->m_rootip;
997 int unmount_event_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 int error;
999
David Chinnera167b172008-10-30 17:06:18 +11001000 xfs_syncd_stop(mp);
David Chinnerbe97d9d2008-10-30 17:15:38 +11001001 xfs_sync_inodes(mp, SYNC_ATTR|SYNC_DELWRI);
Christoph Hellwige48ad312008-05-20 11:30:52 +10001002
1003#ifdef HAVE_DMAPI
1004 if (mp->m_flags & XFS_MOUNT_DMAPI) {
1005 unmount_event_flags =
1006 (mp->m_dmevmask & (1 << DM_EVENT_UNMOUNT)) ?
1007 0 : DM_FLAGS_UNWANTED;
1008 /*
1009 * Ignore error from dmapi here, first unmount is not allowed
1010 * to fail anyway, and second we wouldn't want to fail a
1011 * unmount because of dmapi.
1012 */
1013 XFS_SEND_PREUNMOUNT(mp, rip, DM_RIGHT_NULL, rip, DM_RIGHT_NULL,
1014 NULL, NULL, 0, 0, unmount_event_flags);
1015 }
1016#endif
1017
1018 /*
1019 * Blow away any referenced inode in the filestreams cache.
1020 * This can and will cause log traffic as inodes go inactive
1021 * here.
1022 */
1023 xfs_filestream_unmount(mp);
1024
1025 XFS_bflush(mp->m_ddev_targp);
1026 error = xfs_unmount_flush(mp, 0);
1027 WARN_ON(error);
1028
Christoph Hellwige48ad312008-05-20 11:30:52 +10001029 if (mp->m_flags & XFS_MOUNT_DMAPI) {
1030 XFS_SEND_UNMOUNT(mp, rip, DM_RIGHT_NULL, 0, 0,
1031 unmount_event_flags);
1032 }
1033
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001034 xfs_unmountfs(mp);
Christoph Hellwig62033002008-08-13 16:50:21 +10001035 xfs_freesb(mp);
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001036 xfs_icsb_destroy_counters(mp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001037 xfs_close_devices(mp);
Christoph Hellwige48ad312008-05-20 11:30:52 +10001038 xfs_qmops_put(mp);
1039 xfs_dmops_put(mp);
Christoph Hellwiga7381592008-08-13 16:04:05 +10001040 xfs_free_fsname(mp);
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001041 kfree(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042}
1043
1044STATIC void
Nathan Scotta50cd262006-03-14 14:06:18 +11001045xfs_fs_write_super(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 struct super_block *sb)
1047{
Nathan Scottb83bd132006-06-09 16:48:30 +10001048 if (!(sb->s_flags & MS_RDONLY))
David Chinnere9f1c6e2008-10-30 17:15:50 +11001049 xfs_sync_fsdata(XFS_M(sb), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 sb->s_dirt = 0;
1051}
1052
1053STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001054xfs_fs_sync_super(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 struct super_block *sb,
1056 int wait)
1057{
Christoph Hellwig745f6912007-08-30 17:20:39 +10001058 struct xfs_mount *mp = XFS_M(sb);
Nathan Scottb83bd132006-06-09 16:48:30 +10001059 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
Lachlan McIlroye893bff2007-10-12 11:13:35 +10001061 /*
1062 * Treat a sync operation like a freeze. This is to work
1063 * around a race in sync_inodes() which works in two phases
1064 * - an asynchronous flush, which can write out an inode
1065 * without waiting for file size updates to complete, and a
1066 * synchronous flush, which wont do anything because the
1067 * async flush removed the inode's dirty flag. Also
1068 * sync_inodes() will not see any files that just have
1069 * outstanding transactions to be flushed because we don't
1070 * dirty the Linux inode until after the transaction I/O
1071 * completes.
1072 */
David Chinnere9f1c6e2008-10-30 17:15:50 +11001073 if (wait || unlikely(sb->s_frozen == SB_FREEZE_WRITE))
1074 error = xfs_quiesce_data(mp);
1075 else
1076 error = xfs_sync_fsdata(mp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 sb->s_dirt = 0;
1078
1079 if (unlikely(laptop_mode)) {
Christoph Hellwig74394492007-08-30 17:21:22 +10001080 int prev_sync_seq = mp->m_sync_seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081
1082 /*
1083 * The disk must be active because we're syncing.
1084 * We schedule xfssyncd now (now that the disk is
1085 * active) instead of later (when it might not be).
1086 */
Christoph Hellwig74394492007-08-30 17:21:22 +10001087 wake_up_process(mp->m_sync_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 /*
1089 * We have to wait for the sync iteration to complete.
1090 * If we don't, the disk activity caused by the sync
1091 * will come after the sync is completed, and that
1092 * triggers another sync from laptop mode.
1093 */
Christoph Hellwig74394492007-08-30 17:21:22 +10001094 wait_event(mp->m_wait_single_sync_task,
1095 mp->m_sync_seq != prev_sync_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 }
1097
1098 return -error;
1099}
1100
1101STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001102xfs_fs_statfs(
David Howells726c3342006-06-23 02:02:58 -07001103 struct dentry *dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 struct kstatfs *statp)
1105{
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001106 struct xfs_mount *mp = XFS_M(dentry->d_sb);
1107 xfs_sb_t *sbp = &mp->m_sb;
1108 __uint64_t fakeinos, id;
1109 xfs_extlen_t lsize;
1110
1111 statp->f_type = XFS_SB_MAGIC;
1112 statp->f_namelen = MAXNAMELEN - 1;
1113
1114 id = huge_encode_dev(mp->m_ddev_targp->bt_dev);
1115 statp->f_fsid.val[0] = (u32)id;
1116 statp->f_fsid.val[1] = (u32)(id >> 32);
1117
Christoph Hellwigd4d90b52008-04-22 17:34:37 +10001118 xfs_icsb_sync_counters(mp, XFS_ICSB_LAZY_COUNT);
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001119
1120 spin_lock(&mp->m_sb_lock);
1121 statp->f_bsize = sbp->sb_blocksize;
1122 lsize = sbp->sb_logstart ? sbp->sb_logblocks : 0;
1123 statp->f_blocks = sbp->sb_dblocks - lsize;
1124 statp->f_bfree = statp->f_bavail =
1125 sbp->sb_fdblocks - XFS_ALLOC_SET_ASIDE(mp);
1126 fakeinos = statp->f_bfree << sbp->sb_inopblog;
1127#if XFS_BIG_INUMS
1128 fakeinos += mp->m_inoadd;
1129#endif
1130 statp->f_files =
1131 MIN(sbp->sb_icount + fakeinos, (__uint64_t)XFS_MAXINUMBER);
1132 if (mp->m_maxicount)
1133#if XFS_BIG_INUMS
1134 if (!mp->m_inoadd)
1135#endif
1136 statp->f_files = min_t(typeof(statp->f_files),
1137 statp->f_files,
1138 mp->m_maxicount);
1139 statp->f_ffree = statp->f_files - (sbp->sb_icount - sbp->sb_ifree);
1140 spin_unlock(&mp->m_sb_lock);
1141
1142 XFS_QM_DQSTATVFS(XFS_I(dentry->d_inode), statp);
1143 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144}
1145
1146STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001147xfs_fs_remount(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 struct super_block *sb,
1149 int *flags,
1150 char *options)
1151{
Christoph Hellwig745f6912007-08-30 17:20:39 +10001152 struct xfs_mount *mp = XFS_M(sb);
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001153 substring_t args[MAX_OPT_ARGS];
1154 char *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001156 while ((p = strsep(&options, ",")) != NULL) {
1157 int token;
Christoph Hellwigbdd907b2008-05-20 15:10:44 +10001158
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001159 if (!*p)
1160 continue;
Christoph Hellwig48b62a12008-05-20 11:30:39 +10001161
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001162 token = match_token(p, tokens, args);
1163 switch (token) {
1164 case Opt_barrier:
Christoph Hellwig48b62a12008-05-20 11:30:39 +10001165 mp->m_flags |= XFS_MOUNT_BARRIER;
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001166
1167 /*
1168 * Test if barriers are actually working if we can,
1169 * else delay this check until the filesystem is
1170 * marked writeable.
1171 */
1172 if (!(mp->m_flags & XFS_MOUNT_RDONLY))
1173 xfs_mountfs_check_barriers(mp);
1174 break;
1175 case Opt_nobarrier:
Christoph Hellwig48b62a12008-05-20 11:30:39 +10001176 mp->m_flags &= ~XFS_MOUNT_BARRIER;
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001177 break;
1178 default:
Christoph Hellwig6efdf282008-09-17 16:49:33 +10001179 /*
1180 * Logically we would return an error here to prevent
1181 * users from believing they might have changed
1182 * mount options using remount which can't be changed.
1183 *
1184 * But unfortunately mount(8) adds all options from
1185 * mtab and fstab to the mount arguments in some cases
1186 * so we can't blindly reject options, but have to
1187 * check for each specified option if it actually
1188 * differs from the currently set option and only
1189 * reject it if that's the case.
1190 *
1191 * Until that is implemented we return success for
1192 * every remount request, and silently ignore all
1193 * options that we can't actually change.
1194 */
1195#if 0
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001196 printk(KERN_INFO
1197 "XFS: mount option \"%s\" not supported for remount\n", p);
1198 return -EINVAL;
Christoph Hellwig6efdf282008-09-17 16:49:33 +10001199#else
Christoph Hellwig6c5e51d2008-10-12 14:30:44 +02001200 break;
Christoph Hellwig6efdf282008-09-17 16:49:33 +10001201#endif
Christoph Hellwig48b62a12008-05-20 11:30:39 +10001202 }
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001203 }
1204
1205 /* rw/ro -> rw */
1206 if ((mp->m_flags & XFS_MOUNT_RDONLY) && !(*flags & MS_RDONLY)) {
1207 mp->m_flags &= ~XFS_MOUNT_RDONLY;
1208 if (mp->m_flags & XFS_MOUNT_BARRIER)
1209 xfs_mountfs_check_barriers(mp);
1210 }
1211
1212 /* rw -> ro */
1213 if (!(mp->m_flags & XFS_MOUNT_RDONLY) && (*flags & MS_RDONLY)) {
David Chinnere9f1c6e2008-10-30 17:15:50 +11001214 xfs_quiesce_data(mp);
David Chinner76bf1052008-10-30 17:16:21 +11001215 xfs_quiesce_attr(mp);
Christoph Hellwig48b62a12008-05-20 11:30:39 +10001216 mp->m_flags |= XFS_MOUNT_RDONLY;
1217 }
1218
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001219 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220}
1221
Christoph Hellwig9909c4a2007-10-11 18:11:14 +10001222/*
1223 * Second stage of a freeze. The data is already frozen so we only
David Chinner76bf1052008-10-30 17:16:21 +11001224 * need to take care of the metadata. Once that's done write a dummy
Christoph Hellwig9909c4a2007-10-11 18:11:14 +10001225 * record to dirty the log in case of a crash while frozen.
1226 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227STATIC void
Nathan Scotta50cd262006-03-14 14:06:18 +11001228xfs_fs_lockfs(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 struct super_block *sb)
1230{
Christoph Hellwig9909c4a2007-10-11 18:11:14 +10001231 struct xfs_mount *mp = XFS_M(sb);
1232
David Chinner76bf1052008-10-30 17:16:21 +11001233 xfs_quiesce_attr(mp);
Christoph Hellwig9909c4a2007-10-11 18:11:14 +10001234 xfs_fs_log_dummy(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235}
1236
1237STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001238xfs_fs_show_options(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 struct seq_file *m,
1240 struct vfsmount *mnt)
1241{
Christoph Hellwig745f6912007-08-30 17:20:39 +10001242 return -xfs_showargs(XFS_M(mnt->mnt_sb), m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243}
1244
1245STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001246xfs_fs_quotasync(
Nathan Scottee348072005-11-02 10:32:38 +11001247 struct super_block *sb,
1248 int type)
1249{
Christoph Hellwigb09cc772007-08-30 17:19:57 +10001250 return -XFS_QM_QUOTACTL(XFS_M(sb), Q_XQUOTASYNC, 0, NULL);
Nathan Scottee348072005-11-02 10:32:38 +11001251}
1252
1253STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001254xfs_fs_getxstate(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 struct super_block *sb,
1256 struct fs_quota_stat *fqs)
1257{
Christoph Hellwigb09cc772007-08-30 17:19:57 +10001258 return -XFS_QM_QUOTACTL(XFS_M(sb), Q_XGETQSTAT, 0, (caddr_t)fqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259}
1260
1261STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001262xfs_fs_setxstate(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 struct super_block *sb,
1264 unsigned int flags,
1265 int op)
1266{
Christoph Hellwigb09cc772007-08-30 17:19:57 +10001267 return -XFS_QM_QUOTACTL(XFS_M(sb), op, 0, (caddr_t)&flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268}
1269
1270STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001271xfs_fs_getxquota(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 struct super_block *sb,
1273 int type,
1274 qid_t id,
1275 struct fs_disk_quota *fdq)
1276{
Christoph Hellwigb09cc772007-08-30 17:19:57 +10001277 return -XFS_QM_QUOTACTL(XFS_M(sb),
Nathan Scottb83bd132006-06-09 16:48:30 +10001278 (type == USRQUOTA) ? Q_XGETQUOTA :
1279 ((type == GRPQUOTA) ? Q_XGETGQUOTA :
1280 Q_XGETPQUOTA), id, (caddr_t)fdq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281}
1282
1283STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001284xfs_fs_setxquota(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 struct super_block *sb,
1286 int type,
1287 qid_t id,
1288 struct fs_disk_quota *fdq)
1289{
Christoph Hellwigb09cc772007-08-30 17:19:57 +10001290 return -XFS_QM_QUOTACTL(XFS_M(sb),
Nathan Scottb83bd132006-06-09 16:48:30 +10001291 (type == USRQUOTA) ? Q_XSETQLIM :
1292 ((type == GRPQUOTA) ? Q_XSETGQLIM :
1293 Q_XSETPQLIM), id, (caddr_t)fdq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294}
1295
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001296/*
1297 * This function fills in xfs_mount_t fields based on mount args.
1298 * Note: the superblock has _not_ yet been read in.
1299 */
1300STATIC int
1301xfs_start_flags(
1302 struct xfs_mount_args *ap,
1303 struct xfs_mount *mp)
1304{
Christoph Hellwiga7381592008-08-13 16:04:05 +10001305 int error;
1306
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001307 /* Values are in BBs */
1308 if ((ap->flags & XFSMNT_NOALIGN) != XFSMNT_NOALIGN) {
1309 /*
1310 * At this point the superblock has not been read
1311 * in, therefore we do not know the block size.
1312 * Before the mount call ends we will convert
1313 * these to FSBs.
1314 */
1315 mp->m_dalign = ap->sunit;
1316 mp->m_swidth = ap->swidth;
1317 }
1318
1319 if (ap->logbufs != -1 &&
1320 ap->logbufs != 0 &&
1321 (ap->logbufs < XLOG_MIN_ICLOGS ||
1322 ap->logbufs > XLOG_MAX_ICLOGS)) {
1323 cmn_err(CE_WARN,
1324 "XFS: invalid logbufs value: %d [not %d-%d]",
1325 ap->logbufs, XLOG_MIN_ICLOGS, XLOG_MAX_ICLOGS);
1326 return XFS_ERROR(EINVAL);
1327 }
1328 mp->m_logbufs = ap->logbufs;
1329 if (ap->logbufsize != -1 &&
1330 ap->logbufsize != 0 &&
1331 (ap->logbufsize < XLOG_MIN_RECORD_BSIZE ||
1332 ap->logbufsize > XLOG_MAX_RECORD_BSIZE ||
1333 !is_power_of_2(ap->logbufsize))) {
1334 cmn_err(CE_WARN,
1335 "XFS: invalid logbufsize: %d [not 16k,32k,64k,128k or 256k]",
1336 ap->logbufsize);
1337 return XFS_ERROR(EINVAL);
1338 }
Christoph Hellwiga7381592008-08-13 16:04:05 +10001339
1340 error = ENOMEM;
1341
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001342 mp->m_logbsize = ap->logbufsize;
1343 mp->m_fsname_len = strlen(ap->fsname) + 1;
Christoph Hellwiga7381592008-08-13 16:04:05 +10001344
1345 mp->m_fsname = kstrdup(ap->fsname, GFP_KERNEL);
1346 if (!mp->m_fsname)
1347 goto out;
1348
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001349 if (ap->rtname[0]) {
Christoph Hellwiga7381592008-08-13 16:04:05 +10001350 mp->m_rtname = kstrdup(ap->rtname, GFP_KERNEL);
1351 if (!mp->m_rtname)
1352 goto out_free_fsname;
1353
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001354 }
Christoph Hellwiga7381592008-08-13 16:04:05 +10001355
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001356 if (ap->logname[0]) {
Christoph Hellwiga7381592008-08-13 16:04:05 +10001357 mp->m_logname = kstrdup(ap->logname, GFP_KERNEL);
1358 if (!mp->m_logname)
1359 goto out_free_rtname;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001360 }
1361
1362 if (ap->flags & XFSMNT_WSYNC)
1363 mp->m_flags |= XFS_MOUNT_WSYNC;
1364#if XFS_BIG_INUMS
1365 if (ap->flags & XFSMNT_INO64) {
1366 mp->m_flags |= XFS_MOUNT_INO64;
1367 mp->m_inoadd = XFS_INO64_OFFSET;
1368 }
1369#endif
1370 if (ap->flags & XFSMNT_RETERR)
1371 mp->m_flags |= XFS_MOUNT_RETERR;
1372 if (ap->flags & XFSMNT_NOALIGN)
1373 mp->m_flags |= XFS_MOUNT_NOALIGN;
1374 if (ap->flags & XFSMNT_SWALLOC)
1375 mp->m_flags |= XFS_MOUNT_SWALLOC;
1376 if (ap->flags & XFSMNT_OSYNCISOSYNC)
1377 mp->m_flags |= XFS_MOUNT_OSYNCISOSYNC;
1378 if (ap->flags & XFSMNT_32BITINODES)
1379 mp->m_flags |= XFS_MOUNT_32BITINODES;
1380
1381 if (ap->flags & XFSMNT_IOSIZE) {
1382 if (ap->iosizelog > XFS_MAX_IO_LOG ||
1383 ap->iosizelog < XFS_MIN_IO_LOG) {
1384 cmn_err(CE_WARN,
1385 "XFS: invalid log iosize: %d [not %d-%d]",
1386 ap->iosizelog, XFS_MIN_IO_LOG,
1387 XFS_MAX_IO_LOG);
1388 return XFS_ERROR(EINVAL);
1389 }
1390
1391 mp->m_flags |= XFS_MOUNT_DFLT_IOSIZE;
1392 mp->m_readio_log = mp->m_writeio_log = ap->iosizelog;
1393 }
1394
1395 if (ap->flags & XFSMNT_IKEEP)
1396 mp->m_flags |= XFS_MOUNT_IKEEP;
1397 if (ap->flags & XFSMNT_DIRSYNC)
1398 mp->m_flags |= XFS_MOUNT_DIRSYNC;
1399 if (ap->flags & XFSMNT_ATTR2)
1400 mp->m_flags |= XFS_MOUNT_ATTR2;
1401 if (ap->flags & XFSMNT_NOATTR2)
1402 mp->m_flags |= XFS_MOUNT_NOATTR2;
1403
1404 if (ap->flags2 & XFSMNT2_COMPAT_IOSIZE)
1405 mp->m_flags |= XFS_MOUNT_COMPAT_IOSIZE;
1406
1407 /*
1408 * no recovery flag requires a read-only mount
1409 */
1410 if (ap->flags & XFSMNT_NORECOVERY) {
1411 if (!(mp->m_flags & XFS_MOUNT_RDONLY)) {
1412 cmn_err(CE_WARN,
1413 "XFS: tried to mount a FS read-write without recovery!");
1414 return XFS_ERROR(EINVAL);
1415 }
1416 mp->m_flags |= XFS_MOUNT_NORECOVERY;
1417 }
1418
1419 if (ap->flags & XFSMNT_NOUUID)
1420 mp->m_flags |= XFS_MOUNT_NOUUID;
1421 if (ap->flags & XFSMNT_BARRIER)
1422 mp->m_flags |= XFS_MOUNT_BARRIER;
1423 else
1424 mp->m_flags &= ~XFS_MOUNT_BARRIER;
1425
1426 if (ap->flags2 & XFSMNT2_FILESTREAMS)
1427 mp->m_flags |= XFS_MOUNT_FILESTREAMS;
1428
1429 if (ap->flags & XFSMNT_DMAPI)
1430 mp->m_flags |= XFS_MOUNT_DMAPI;
1431 return 0;
Christoph Hellwiga7381592008-08-13 16:04:05 +10001432
1433
1434 out_free_rtname:
1435 kfree(mp->m_rtname);
1436 out_free_fsname:
1437 kfree(mp->m_fsname);
1438 out:
1439 return error;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001440}
1441
1442/*
1443 * This function fills in xfs_mount_t fields based on mount args.
1444 * Note: the superblock _has_ now been read in.
1445 */
1446STATIC int
1447xfs_finish_flags(
1448 struct xfs_mount_args *ap,
1449 struct xfs_mount *mp)
1450{
1451 int ronly = (mp->m_flags & XFS_MOUNT_RDONLY);
1452
1453 /* Fail a mount where the logbuf is smaller then the log stripe */
1454 if (xfs_sb_version_haslogv2(&mp->m_sb)) {
1455 if ((ap->logbufsize <= 0) &&
1456 (mp->m_sb.sb_logsunit > XLOG_BIG_RECORD_BSIZE)) {
1457 mp->m_logbsize = mp->m_sb.sb_logsunit;
1458 } else if (ap->logbufsize > 0 &&
1459 ap->logbufsize < mp->m_sb.sb_logsunit) {
1460 cmn_err(CE_WARN,
1461 "XFS: logbuf size must be greater than or equal to log stripe size");
1462 return XFS_ERROR(EINVAL);
1463 }
1464 } else {
1465 /* Fail a mount if the logbuf is larger than 32K */
1466 if (ap->logbufsize > XLOG_BIG_RECORD_BSIZE) {
1467 cmn_err(CE_WARN,
1468 "XFS: logbuf size for version 1 logs must be 16K or 32K");
1469 return XFS_ERROR(EINVAL);
1470 }
1471 }
1472
1473 /*
1474 * mkfs'ed attr2 will turn on attr2 mount unless explicitly
1475 * told by noattr2 to turn it off
1476 */
1477 if (xfs_sb_version_hasattr2(&mp->m_sb) &&
1478 !(ap->flags & XFSMNT_NOATTR2))
1479 mp->m_flags |= XFS_MOUNT_ATTR2;
1480
1481 /*
1482 * prohibit r/w mounts of read-only filesystems
1483 */
1484 if ((mp->m_sb.sb_flags & XFS_SBF_READONLY) && !ronly) {
1485 cmn_err(CE_WARN,
1486 "XFS: cannot mount a read-only filesystem as read-write");
1487 return XFS_ERROR(EROFS);
1488 }
1489
1490 /*
1491 * check for shared mount.
1492 */
1493 if (ap->flags & XFSMNT_SHARED) {
1494 if (!xfs_sb_version_hasshared(&mp->m_sb))
1495 return XFS_ERROR(EINVAL);
1496
1497 /*
1498 * For IRIX 6.5, shared mounts must have the shared
1499 * version bit set, have the persistent readonly
1500 * field set, must be version 0 and can only be mounted
1501 * read-only.
1502 */
1503 if (!ronly || !(mp->m_sb.sb_flags & XFS_SBF_READONLY) ||
1504 (mp->m_sb.sb_shared_vn != 0))
1505 return XFS_ERROR(EINVAL);
1506
1507 mp->m_flags |= XFS_MOUNT_SHARED;
1508
1509 /*
1510 * Shared XFS V0 can't deal with DMI. Return EINVAL.
1511 */
1512 if (mp->m_sb.sb_shared_vn == 0 && (ap->flags & XFSMNT_DMAPI))
1513 return XFS_ERROR(EINVAL);
1514 }
1515
1516 if (ap->flags & XFSMNT_UQUOTA) {
1517 mp->m_qflags |= (XFS_UQUOTA_ACCT | XFS_UQUOTA_ACTIVE);
1518 if (ap->flags & XFSMNT_UQUOTAENF)
1519 mp->m_qflags |= XFS_UQUOTA_ENFD;
1520 }
1521
1522 if (ap->flags & XFSMNT_GQUOTA) {
1523 mp->m_qflags |= (XFS_GQUOTA_ACCT | XFS_GQUOTA_ACTIVE);
1524 if (ap->flags & XFSMNT_GQUOTAENF)
1525 mp->m_qflags |= XFS_OQUOTA_ENFD;
1526 } else if (ap->flags & XFSMNT_PQUOTA) {
1527 mp->m_qflags |= (XFS_PQUOTA_ACCT | XFS_PQUOTA_ACTIVE);
1528 if (ap->flags & XFSMNT_PQUOTAENF)
1529 mp->m_qflags |= XFS_OQUOTA_ENFD;
1530 }
1531
1532 return 0;
1533}
1534
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001536xfs_fs_fill_super(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 struct super_block *sb,
1538 void *data,
1539 int silent)
1540{
Christoph Hellwigf3dcc132008-03-27 18:00:54 +11001541 struct inode *root;
Christoph Hellwig745f6912007-08-30 17:20:39 +10001542 struct xfs_mount *mp = NULL;
Christoph Hellwigbdd907b2008-05-20 15:10:44 +10001543 struct xfs_mount_args *args;
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001544 int flags = 0, error = ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
Christoph Hellwigbdd907b2008-05-20 15:10:44 +10001546 args = xfs_args_allocate(sb, silent);
1547 if (!args)
1548 return -ENOMEM;
1549
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001550 mp = kzalloc(sizeof(struct xfs_mount), GFP_KERNEL);
1551 if (!mp)
1552 goto out_free_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001554 spin_lock_init(&mp->m_sb_lock);
1555 mutex_init(&mp->m_ilock);
1556 mutex_init(&mp->m_growlock);
1557 atomic_set(&mp->m_active_trans, 0);
Christoph Hellwig74394492007-08-30 17:21:22 +10001558 INIT_LIST_HEAD(&mp->m_sync_list);
1559 spin_lock_init(&mp->m_sync_lock);
1560 init_waitqueue_head(&mp->m_wait_single_sync_task);
1561
Christoph Hellwigb267ce92007-08-30 17:21:30 +10001562 mp->m_super = sb;
1563 sb->s_fs_info = mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
Christoph Hellwigbd186aa2007-08-30 17:21:12 +10001565 if (sb->s_flags & MS_RDONLY)
1566 mp->m_flags |= XFS_MOUNT_RDONLY;
1567
Christoph Hellwig745f6912007-08-30 17:20:39 +10001568 error = xfs_parseargs(mp, (char *)data, args, 0);
1569 if (error)
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001570 goto out_free_mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
1572 sb_min_blocksize(sb, BBSIZE);
Lachlan McIlroy0ec58512008-06-23 13:23:01 +10001573 sb->s_xattr = xfs_xattr_handlers;
Nathan Scotta50cd262006-03-14 14:06:18 +11001574 sb->s_export_op = &xfs_export_operations;
Nathan Scotta50cd262006-03-14 14:06:18 +11001575 sb->s_qcop = &xfs_quotactl_operations;
1576 sb->s_op = &xfs_super_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001578 error = xfs_dmops_get(mp, args);
Christoph Hellwig745f6912007-08-30 17:20:39 +10001579 if (error)
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001580 goto out_free_mp;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001581 error = xfs_qmops_get(mp, args);
1582 if (error)
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001583 goto out_put_dmops;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001584
1585 if (args->flags & XFSMNT_QUIET)
1586 flags |= XFS_MFSI_QUIET;
1587
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001588 error = xfs_open_devices(mp, args);
1589 if (error)
1590 goto out_put_qmops;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001591
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001592 if (xfs_icsb_init_counters(mp))
1593 mp->m_flags |= XFS_MOUNT_NO_PERCPU_SB;
1594
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001595 /*
1596 * Setup flags based on mount(2) options and then the superblock
1597 */
1598 error = xfs_start_flags(args, mp);
1599 if (error)
Christoph Hellwiga7381592008-08-13 16:04:05 +10001600 goto out_free_fsname;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001601 error = xfs_readsb(mp, flags);
1602 if (error)
Christoph Hellwiga7381592008-08-13 16:04:05 +10001603 goto out_free_fsname;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001604 error = xfs_finish_flags(args, mp);
1605 if (error)
Christoph Hellwigeffa2ed2008-05-20 15:11:05 +10001606 goto out_free_sb;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001607
Christoph Hellwige34b5622008-05-20 15:10:36 +10001608 error = xfs_setup_devices(mp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001609 if (error)
Christoph Hellwigeffa2ed2008-05-20 15:11:05 +10001610 goto out_free_sb;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001611
1612 if (mp->m_flags & XFS_MOUNT_BARRIER)
1613 xfs_mountfs_check_barriers(mp);
1614
1615 error = xfs_filestream_mount(mp);
1616 if (error)
Christoph Hellwigeffa2ed2008-05-20 15:11:05 +10001617 goto out_free_sb;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001618
Christoph Hellwig42490232008-08-13 16:49:32 +10001619 error = xfs_mountfs(mp);
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001620 if (error)
Christoph Hellwig120226c2008-05-20 15:11:11 +10001621 goto out_filestream_unmount;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001622
1623 XFS_SEND_MOUNT(mp, DM_RIGHT_NULL, args->mtpt, args->fsname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 sb->s_dirt = 1;
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001626 sb->s_magic = XFS_SB_MAGIC;
1627 sb->s_blocksize = mp->m_sb.sb_blocksize;
1628 sb->s_blocksize_bits = ffs(sb->s_blocksize) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 sb->s_maxbytes = xfs_max_file_offset(sb->s_blocksize_bits);
1630 sb->s_time_gran = 1;
1631 set_posix_acl_flag(sb);
1632
David Chinner01651642008-08-13 15:45:15 +10001633 root = igrab(VFS_I(mp->m_rootip));
Christoph Hellwigf3dcc132008-03-27 18:00:54 +11001634 if (!root) {
Christoph Hellwigcbc89dc2008-02-05 12:14:01 +11001635 error = ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 goto fail_unmount;
Christoph Hellwigcbc89dc2008-02-05 12:14:01 +11001637 }
Christoph Hellwigf3dcc132008-03-27 18:00:54 +11001638 if (is_bad_inode(root)) {
1639 error = EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 goto fail_vnrele;
1641 }
Christoph Hellwigf3dcc132008-03-27 18:00:54 +11001642 sb->s_root = d_alloc_root(root);
1643 if (!sb->s_root) {
1644 error = ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 goto fail_vnrele;
1646 }
Christoph Hellwig74394492007-08-30 17:21:22 +10001647
David Chinnera167b172008-10-30 17:06:18 +11001648 error = xfs_syncd_init(mp);
1649 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 goto fail_vnrele;
Christoph Hellwig74394492007-08-30 17:21:22 +10001651
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11001652 xfs_itrace_exit(XFS_I(sb->s_root->d_inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
Christoph Hellwigbdd907b2008-05-20 15:10:44 +10001654 kfree(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 return 0;
1656
Christoph Hellwig120226c2008-05-20 15:11:11 +10001657 out_filestream_unmount:
1658 xfs_filestream_unmount(mp);
Christoph Hellwigeffa2ed2008-05-20 15:11:05 +10001659 out_free_sb:
1660 xfs_freesb(mp);
Christoph Hellwiga7381592008-08-13 16:04:05 +10001661 out_free_fsname:
1662 xfs_free_fsname(mp);
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001663 xfs_icsb_destroy_counters(mp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001664 xfs_close_devices(mp);
1665 out_put_qmops:
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001666 xfs_qmops_put(mp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001667 out_put_dmops:
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001668 xfs_dmops_put(mp);
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001669 out_free_mp:
1670 kfree(mp);
1671 out_free_args:
1672 kfree(args);
1673 return -error;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001674
1675 fail_vnrele:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 if (sb->s_root) {
1677 dput(sb->s_root);
1678 sb->s_root = NULL;
1679 } else {
Christoph Hellwigf3dcc132008-03-27 18:00:54 +11001680 iput(root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 }
1682
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001683 fail_unmount:
Christoph Hellwige48ad312008-05-20 11:30:52 +10001684 /*
1685 * Blow away any referenced inode in the filestreams cache.
1686 * This can and will cause log traffic as inodes go inactive
1687 * here.
1688 */
1689 xfs_filestream_unmount(mp);
1690
1691 XFS_bflush(mp->m_ddev_targp);
1692 error = xfs_unmount_flush(mp, 0);
1693 WARN_ON(error);
1694
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001695 xfs_unmountfs(mp);
Christoph Hellwig62033002008-08-13 16:50:21 +10001696 goto out_free_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697}
1698
David Howells454e2392006-06-23 02:02:57 -07001699STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001700xfs_fs_get_sb(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 struct file_system_type *fs_type,
1702 int flags,
1703 const char *dev_name,
David Howells454e2392006-06-23 02:02:57 -07001704 void *data,
1705 struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706{
David Howells454e2392006-06-23 02:02:57 -07001707 return get_sb_bdev(fs_type, flags, dev_name, data, xfs_fs_fill_super,
1708 mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709}
1710
David Chinner7989cb82007-02-10 18:34:56 +11001711static struct super_operations xfs_super_operations = {
Nathan Scotta50cd262006-03-14 14:06:18 +11001712 .alloc_inode = xfs_fs_alloc_inode,
1713 .destroy_inode = xfs_fs_destroy_inode,
1714 .write_inode = xfs_fs_write_inode,
1715 .clear_inode = xfs_fs_clear_inode,
1716 .put_super = xfs_fs_put_super,
1717 .write_super = xfs_fs_write_super,
1718 .sync_fs = xfs_fs_sync_super,
1719 .write_super_lockfs = xfs_fs_lockfs,
1720 .statfs = xfs_fs_statfs,
1721 .remount_fs = xfs_fs_remount,
1722 .show_options = xfs_fs_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723};
1724
David Chinner7989cb82007-02-10 18:34:56 +11001725static struct quotactl_ops xfs_quotactl_operations = {
Nathan Scotta50cd262006-03-14 14:06:18 +11001726 .quota_sync = xfs_fs_quotasync,
1727 .get_xstate = xfs_fs_getxstate,
1728 .set_xstate = xfs_fs_setxstate,
1729 .get_xquota = xfs_fs_getxquota,
1730 .set_xquota = xfs_fs_setxquota,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731};
1732
Andrew Morton5085b602007-02-20 13:57:47 -08001733static struct file_system_type xfs_fs_type = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 .owner = THIS_MODULE,
1735 .name = "xfs",
Nathan Scotta50cd262006-03-14 14:06:18 +11001736 .get_sb = xfs_fs_get_sb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 .kill_sb = kill_block_super,
1738 .fs_flags = FS_REQUIRES_DEV,
1739};
1740
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001741STATIC int __init
1742xfs_alloc_trace_bufs(void)
1743{
1744#ifdef XFS_ALLOC_TRACE
1745 xfs_alloc_trace_buf = ktrace_alloc(XFS_ALLOC_TRACE_SIZE, KM_MAYFAIL);
1746 if (!xfs_alloc_trace_buf)
1747 goto out;
1748#endif
1749#ifdef XFS_BMAP_TRACE
1750 xfs_bmap_trace_buf = ktrace_alloc(XFS_BMAP_TRACE_SIZE, KM_MAYFAIL);
1751 if (!xfs_bmap_trace_buf)
1752 goto out_free_alloc_trace;
1753#endif
Christoph Hellwig8c4ed632008-10-30 16:55:13 +11001754#ifdef XFS_BTREE_TRACE
1755 xfs_allocbt_trace_buf = ktrace_alloc(XFS_ALLOCBT_TRACE_SIZE,
1756 KM_MAYFAIL);
1757 if (!xfs_allocbt_trace_buf)
1758 goto out_free_bmap_trace;
1759
1760 xfs_inobt_trace_buf = ktrace_alloc(XFS_INOBT_TRACE_SIZE, KM_MAYFAIL);
1761 if (!xfs_inobt_trace_buf)
1762 goto out_free_allocbt_trace;
1763
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001764 xfs_bmbt_trace_buf = ktrace_alloc(XFS_BMBT_TRACE_SIZE, KM_MAYFAIL);
1765 if (!xfs_bmbt_trace_buf)
Christoph Hellwig8c4ed632008-10-30 16:55:13 +11001766 goto out_free_inobt_trace;
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001767#endif
1768#ifdef XFS_ATTR_TRACE
1769 xfs_attr_trace_buf = ktrace_alloc(XFS_ATTR_TRACE_SIZE, KM_MAYFAIL);
1770 if (!xfs_attr_trace_buf)
1771 goto out_free_bmbt_trace;
1772#endif
1773#ifdef XFS_DIR2_TRACE
1774 xfs_dir2_trace_buf = ktrace_alloc(XFS_DIR2_GTRACE_SIZE, KM_MAYFAIL);
1775 if (!xfs_dir2_trace_buf)
1776 goto out_free_attr_trace;
1777#endif
1778
1779 return 0;
1780
1781#ifdef XFS_DIR2_TRACE
1782 out_free_attr_trace:
1783#endif
1784#ifdef XFS_ATTR_TRACE
1785 ktrace_free(xfs_attr_trace_buf);
1786 out_free_bmbt_trace:
1787#endif
Christoph Hellwig8c4ed632008-10-30 16:55:13 +11001788#ifdef XFS_BTREE_TRACE
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001789 ktrace_free(xfs_bmbt_trace_buf);
Christoph Hellwig8c4ed632008-10-30 16:55:13 +11001790 out_free_inobt_trace:
1791 ktrace_free(xfs_inobt_trace_buf);
1792 out_free_allocbt_trace:
1793 ktrace_free(xfs_allocbt_trace_buf);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001794 out_free_bmap_trace:
1795#endif
1796#ifdef XFS_BMAP_TRACE
1797 ktrace_free(xfs_bmap_trace_buf);
1798 out_free_alloc_trace:
1799#endif
1800#ifdef XFS_ALLOC_TRACE
1801 ktrace_free(xfs_alloc_trace_buf);
1802 out:
1803#endif
1804 return -ENOMEM;
1805}
1806
1807STATIC void
1808xfs_free_trace_bufs(void)
1809{
1810#ifdef XFS_DIR2_TRACE
1811 ktrace_free(xfs_dir2_trace_buf);
1812#endif
1813#ifdef XFS_ATTR_TRACE
1814 ktrace_free(xfs_attr_trace_buf);
1815#endif
Christoph Hellwig8c4ed632008-10-30 16:55:13 +11001816#ifdef XFS_BTREE_TRACE
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001817 ktrace_free(xfs_bmbt_trace_buf);
Christoph Hellwig8c4ed632008-10-30 16:55:13 +11001818 ktrace_free(xfs_inobt_trace_buf);
1819 ktrace_free(xfs_allocbt_trace_buf);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001820#endif
1821#ifdef XFS_BMAP_TRACE
1822 ktrace_free(xfs_bmap_trace_buf);
1823#endif
1824#ifdef XFS_ALLOC_TRACE
1825 ktrace_free(xfs_alloc_trace_buf);
1826#endif
1827}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828
1829STATIC int __init
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001830xfs_init_zones(void)
1831{
Christoph Hellwig5ec7f8c2008-08-13 16:22:40 +10001832 xfs_vnode_zone = kmem_zone_init_flags(sizeof(struct inode), "xfs_vnode",
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001833 KM_ZONE_HWALIGN | KM_ZONE_RECLAIM |
1834 KM_ZONE_SPREAD,
1835 xfs_fs_inode_init_once);
1836 if (!xfs_vnode_zone)
1837 goto out;
1838
1839 xfs_ioend_zone = kmem_zone_init(sizeof(xfs_ioend_t), "xfs_ioend");
1840 if (!xfs_ioend_zone)
1841 goto out_destroy_vnode_zone;
1842
1843 xfs_ioend_pool = mempool_create_slab_pool(4 * MAX_BUF_PER_PAGE,
1844 xfs_ioend_zone);
1845 if (!xfs_ioend_pool)
1846 goto out_destroy_ioend_zone;
1847
1848 xfs_log_ticket_zone = kmem_zone_init(sizeof(xlog_ticket_t),
1849 "xfs_log_ticket");
1850 if (!xfs_log_ticket_zone)
1851 goto out_destroy_ioend_pool;
1852
1853 xfs_bmap_free_item_zone = kmem_zone_init(sizeof(xfs_bmap_free_item_t),
1854 "xfs_bmap_free_item");
1855 if (!xfs_bmap_free_item_zone)
1856 goto out_destroy_log_ticket_zone;
1857 xfs_btree_cur_zone = kmem_zone_init(sizeof(xfs_btree_cur_t),
1858 "xfs_btree_cur");
1859 if (!xfs_btree_cur_zone)
1860 goto out_destroy_bmap_free_item_zone;
1861
1862 xfs_da_state_zone = kmem_zone_init(sizeof(xfs_da_state_t),
1863 "xfs_da_state");
1864 if (!xfs_da_state_zone)
1865 goto out_destroy_btree_cur_zone;
1866
1867 xfs_dabuf_zone = kmem_zone_init(sizeof(xfs_dabuf_t), "xfs_dabuf");
1868 if (!xfs_dabuf_zone)
1869 goto out_destroy_da_state_zone;
1870
1871 xfs_ifork_zone = kmem_zone_init(sizeof(xfs_ifork_t), "xfs_ifork");
1872 if (!xfs_ifork_zone)
1873 goto out_destroy_dabuf_zone;
1874
1875 xfs_trans_zone = kmem_zone_init(sizeof(xfs_trans_t), "xfs_trans");
1876 if (!xfs_trans_zone)
1877 goto out_destroy_ifork_zone;
1878
1879 /*
1880 * The size of the zone allocated buf log item is the maximum
1881 * size possible under XFS. This wastes a little bit of memory,
1882 * but it is much faster.
1883 */
1884 xfs_buf_item_zone = kmem_zone_init((sizeof(xfs_buf_log_item_t) +
1885 (((XFS_MAX_BLOCKSIZE / XFS_BLI_CHUNK) /
1886 NBWORD) * sizeof(int))), "xfs_buf_item");
1887 if (!xfs_buf_item_zone)
1888 goto out_destroy_trans_zone;
1889
1890 xfs_efd_zone = kmem_zone_init((sizeof(xfs_efd_log_item_t) +
1891 ((XFS_EFD_MAX_FAST_EXTENTS - 1) *
1892 sizeof(xfs_extent_t))), "xfs_efd_item");
1893 if (!xfs_efd_zone)
1894 goto out_destroy_buf_item_zone;
1895
1896 xfs_efi_zone = kmem_zone_init((sizeof(xfs_efi_log_item_t) +
1897 ((XFS_EFI_MAX_FAST_EXTENTS - 1) *
1898 sizeof(xfs_extent_t))), "xfs_efi_item");
1899 if (!xfs_efi_zone)
1900 goto out_destroy_efd_zone;
1901
1902 xfs_inode_zone =
1903 kmem_zone_init_flags(sizeof(xfs_inode_t), "xfs_inode",
1904 KM_ZONE_HWALIGN | KM_ZONE_RECLAIM |
David Chinner07c8f672008-10-30 16:11:59 +11001905 KM_ZONE_SPREAD, xfs_inode_init_once);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001906 if (!xfs_inode_zone)
1907 goto out_destroy_efi_zone;
1908
1909 xfs_ili_zone =
1910 kmem_zone_init_flags(sizeof(xfs_inode_log_item_t), "xfs_ili",
1911 KM_ZONE_SPREAD, NULL);
1912 if (!xfs_ili_zone)
1913 goto out_destroy_inode_zone;
1914
1915#ifdef CONFIG_XFS_POSIX_ACL
1916 xfs_acl_zone = kmem_zone_init(sizeof(xfs_acl_t), "xfs_acl");
1917 if (!xfs_acl_zone)
1918 goto out_destroy_ili_zone;
1919#endif
1920
1921 return 0;
1922
1923#ifdef CONFIG_XFS_POSIX_ACL
1924 out_destroy_ili_zone:
1925#endif
1926 kmem_zone_destroy(xfs_ili_zone);
1927 out_destroy_inode_zone:
1928 kmem_zone_destroy(xfs_inode_zone);
1929 out_destroy_efi_zone:
1930 kmem_zone_destroy(xfs_efi_zone);
1931 out_destroy_efd_zone:
1932 kmem_zone_destroy(xfs_efd_zone);
1933 out_destroy_buf_item_zone:
1934 kmem_zone_destroy(xfs_buf_item_zone);
1935 out_destroy_trans_zone:
1936 kmem_zone_destroy(xfs_trans_zone);
1937 out_destroy_ifork_zone:
1938 kmem_zone_destroy(xfs_ifork_zone);
1939 out_destroy_dabuf_zone:
1940 kmem_zone_destroy(xfs_dabuf_zone);
1941 out_destroy_da_state_zone:
1942 kmem_zone_destroy(xfs_da_state_zone);
1943 out_destroy_btree_cur_zone:
1944 kmem_zone_destroy(xfs_btree_cur_zone);
1945 out_destroy_bmap_free_item_zone:
1946 kmem_zone_destroy(xfs_bmap_free_item_zone);
1947 out_destroy_log_ticket_zone:
1948 kmem_zone_destroy(xfs_log_ticket_zone);
1949 out_destroy_ioend_pool:
1950 mempool_destroy(xfs_ioend_pool);
1951 out_destroy_ioend_zone:
1952 kmem_zone_destroy(xfs_ioend_zone);
1953 out_destroy_vnode_zone:
1954 kmem_zone_destroy(xfs_vnode_zone);
1955 out:
1956 return -ENOMEM;
1957}
1958
1959STATIC void
1960xfs_destroy_zones(void)
1961{
1962#ifdef CONFIG_XFS_POSIX_ACL
1963 kmem_zone_destroy(xfs_acl_zone);
1964#endif
1965 kmem_zone_destroy(xfs_ili_zone);
1966 kmem_zone_destroy(xfs_inode_zone);
1967 kmem_zone_destroy(xfs_efi_zone);
1968 kmem_zone_destroy(xfs_efd_zone);
1969 kmem_zone_destroy(xfs_buf_item_zone);
1970 kmem_zone_destroy(xfs_trans_zone);
1971 kmem_zone_destroy(xfs_ifork_zone);
1972 kmem_zone_destroy(xfs_dabuf_zone);
1973 kmem_zone_destroy(xfs_da_state_zone);
1974 kmem_zone_destroy(xfs_btree_cur_zone);
1975 kmem_zone_destroy(xfs_bmap_free_item_zone);
1976 kmem_zone_destroy(xfs_log_ticket_zone);
1977 mempool_destroy(xfs_ioend_pool);
1978 kmem_zone_destroy(xfs_ioend_zone);
1979 kmem_zone_destroy(xfs_vnode_zone);
1980
1981}
1982
1983STATIC int __init
1984init_xfs_fs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985{
1986 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 static char message[] __initdata = KERN_INFO \
1988 XFS_VERSION_STRING " with " XFS_BUILD_OPTIONS " enabled\n";
1989
1990 printk(message);
1991
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 ktrace_init(64);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001993 vn_init();
1994 xfs_dir_startup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995
Nathan Scott87582802006-03-14 13:18:19 +11001996 error = xfs_init_zones();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001997 if (error)
1998 goto out;
1999
2000 error = xfs_alloc_trace_bufs();
2001 if (error)
2002 goto out_destroy_zones;
2003
2004 error = xfs_mru_cache_init();
2005 if (error)
2006 goto out_free_trace_buffers;
2007
2008 error = xfs_filestream_init();
2009 if (error)
2010 goto out_mru_cache_uninit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011
Nathan Scottce8e9222006-01-11 15:39:08 +11002012 error = xfs_buf_init();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002013 if (error)
2014 goto out_filestream_uninit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002016 error = xfs_init_procfs();
2017 if (error)
2018 goto out_buf_terminate;
2019
2020 error = xfs_sysctl_register();
2021 if (error)
2022 goto out_cleanup_procfs;
2023
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 vfs_initquota();
2025
2026 error = register_filesystem(&xfs_fs_type);
2027 if (error)
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002028 goto out_sysctl_unregister;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 return 0;
2030
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002031 out_sysctl_unregister:
2032 xfs_sysctl_unregister();
2033 out_cleanup_procfs:
2034 xfs_cleanup_procfs();
2035 out_buf_terminate:
Nathan Scottce8e9222006-01-11 15:39:08 +11002036 xfs_buf_terminate();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002037 out_filestream_uninit:
2038 xfs_filestream_uninit();
2039 out_mru_cache_uninit:
2040 xfs_mru_cache_uninit();
2041 out_free_trace_buffers:
2042 xfs_free_trace_bufs();
2043 out_destroy_zones:
Nathan Scott87582802006-03-14 13:18:19 +11002044 xfs_destroy_zones();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002045 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 return error;
2047}
2048
2049STATIC void __exit
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002050exit_xfs_fs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051{
2052 vfs_exitquota();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 unregister_filesystem(&xfs_fs_type);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002054 xfs_sysctl_unregister();
2055 xfs_cleanup_procfs();
Nathan Scottce8e9222006-01-11 15:39:08 +11002056 xfs_buf_terminate();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002057 xfs_filestream_uninit();
2058 xfs_mru_cache_uninit();
2059 xfs_free_trace_bufs();
Nathan Scott87582802006-03-14 13:18:19 +11002060 xfs_destroy_zones();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 ktrace_uninit();
2062}
2063
2064module_init(init_xfs_fs);
2065module_exit(exit_xfs_fs);
2066
2067MODULE_AUTHOR("Silicon Graphics, Inc.");
2068MODULE_DESCRIPTION(XFS_VERSION_STRING " with " XFS_BUILD_OPTIONS " enabled");
2069MODULE_LICENSE("GPL");