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