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