blob: bb685269f832ede5fa0f97eed990c3a988b26426 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scotta805bad2006-06-19 08:40:27 +10002 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
Nathan Scott7b718762005-11-02 14:58:39 +11003 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110019#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "xfs_log.h"
Nathan Scotta844f452005-11-02 14:38:42 +110021#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "xfs_trans.h"
23#include "xfs_sb.h"
Nathan Scotta844f452005-11-02 14:38:42 +110024#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "xfs_dir2.h"
26#include "xfs_alloc.h"
27#include "xfs_dmapi.h"
28#include "xfs_quota.h"
29#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "xfs_bmap_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110031#include "xfs_alloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_ialloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "xfs_dir2_sf.h"
Nathan Scotta844f452005-11-02 14:38:42 +110034#include "xfs_attr_sf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "xfs_dinode.h"
36#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110037#include "xfs_btree.h"
Christoph Hellwig8c4ed632008-10-30 16:55:13 +110038#include "xfs_btree_trace.h"
Nathan Scotta844f452005-11-02 14:38:42 +110039#include "xfs_ialloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include "xfs_bmap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include "xfs_rtalloc.h"
42#include "xfs_error.h"
43#include "xfs_itable.h"
Christoph Hellwig9909c4a2007-10-11 18:11:14 +100044#include "xfs_fsops.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include "xfs_rw.h"
46#include "xfs_acl.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include "xfs_attr.h"
48#include "xfs_buf_item.h"
49#include "xfs_utils.h"
Christoph Hellwig739bfb22007-08-29 10:58:01 +100050#include "xfs_vnodeops.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include "xfs_version.h"
David Chinnera67d7c52007-11-23 16:29:32 +110052#include "xfs_log_priv.h"
David Chinner249a8c12008-02-05 12:13:32 +110053#include "xfs_trans_priv.h"
Christoph Hellwig48b62a12008-05-20 11:30:39 +100054#include "xfs_filestream.h"
Christoph Hellwig9f8868f2008-07-18 17:11:46 +100055#include "xfs_da_btree.h"
56#include "xfs_dir2_trace.h"
57#include "xfs_extfree_item.h"
58#include "xfs_mru_cache.h"
59#include "xfs_inode_item.h"
David Chinnerfe4fa4b2008-10-30 17:06:08 +110060#include "xfs_sync.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62#include <linux/namei.h>
63#include <linux/init.h>
64#include <linux/mount.h>
Christoph Hellwig0829c362005-09-02 16:58:49 +100065#include <linux/mempool.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#include <linux/writeback.h>
Christoph Hellwig4df08c52005-09-05 08:34:18 +100067#include <linux/kthread.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080068#include <linux/freezer.h>
Christoph Hellwig62a877e2008-07-18 17:12:36 +100069#include <linux/parser.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
David Chinner7989cb82007-02-10 18:34:56 +110071static struct super_operations xfs_super_operations;
David Chinner7989cb82007-02-10 18:34:56 +110072static kmem_zone_t *xfs_ioend_zone;
Christoph Hellwig0829c362005-09-02 16:58:49 +100073mempool_t *xfs_ioend_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
David Chinnera67d7c52007-11-23 16:29:32 +110075#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 */
David Chinnera67d7c52007-11-23 16:29:32 +110081#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
Christoph Hellwig62a877e2008-07-18 17:12:36 +1000122/*
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
Steven Whitehousea447c092008-10-13 10:46:57 +0100132static const match_table_t tokens = {
Christoph Hellwig62a877e2008-07-18 17:12:36 +1000133 {Opt_barrier, "barrier"},
134 {Opt_nobarrier, "nobarrier"},
135 {Opt_err, NULL}
136};
137
138
David Chinnera67d7c52007-11-23 16:29:32 +1100139STATIC 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
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100162/*
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 */
David Chinnera67d7c52007-11-23 16:29:32 +1100169STATIC int
170xfs_parseargs(
171 struct xfs_mount *mp,
172 char *options,
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100173 char **mtpt)
David Chinnera67d7c52007-11-23 16:29:32 +1100174{
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100175 struct super_block *sb = mp->m_super;
David Chinnera67d7c52007-11-23 16:29:32 +1100176 char *this_char, *value, *eov;
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100177 int dsunit = 0;
178 int dswidth = 0;
179 int iosize = 0;
Josef Jeff Sipek1bd960e2008-02-29 13:58:40 +1100180 int dmapi_implies_ikeep = 1;
Christoph Hellwiga5687782009-02-09 08:37:39 +0100181 __uint8_t iosizelog = 0;
David Chinnera67d7c52007-11-23 16:29:32 +1100182
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100183 /*
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;
200
201 /*
202 * These can be overridden by the mount option parsing.
203 */
204 mp->m_logbufs = -1;
205 mp->m_logbsize = -1;
David Chinnera67d7c52007-11-23 16:29:32 +1100206
207 if (!options)
208 goto done;
209
David Chinnera67d7c52007-11-23 16:29:32 +1100210 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 }
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100223 mp->m_logbufs = simple_strtoul(value, &eov, 10);
David Chinnera67d7c52007-11-23 16:29:32 +1100224 } 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 }
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100231 mp->m_logbsize = suffix_strtoul(value, &eov, 10);
David Chinnera67d7c52007-11-23 16:29:32 +1100232 } 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 }
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100239 mp->m_logname = kstrndup(value, MAXNAMELEN, GFP_KERNEL);
240 if (!mp->m_logname)
241 return ENOMEM;
David Chinnera67d7c52007-11-23 16:29:32 +1100242 } 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 }
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100249 *mtpt = kstrndup(value, MAXNAMELEN, GFP_KERNEL);
250 if (!*mtpt)
251 return ENOMEM;
David Chinnera67d7c52007-11-23 16:29:32 +1100252 } 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 }
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100259 mp->m_rtname = kstrndup(value, MAXNAMELEN, GFP_KERNEL);
260 if (!mp->m_rtname)
261 return ENOMEM;
David Chinnera67d7c52007-11-23 16:29:32 +1100262 } 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);
Christoph Hellwig1ec79442008-10-30 17:55:08 +1100270 iosizelog = ffs(iosize) - 1;
David Chinnera67d7c52007-11-23 16:29:32 +1100271 } 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);
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100279 iosizelog = ffs(iosize) - 1;
David Chinnera67d7c52007-11-23 16:29:32 +1100280 } 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)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100287 mp->m_flags |= XFS_MOUNT_WSYNC;
David Chinnera67d7c52007-11-23 16:29:32 +1100288 } else if (!strcmp(this_char, MNTOPT_OSYNCISOSYNC)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100289 mp->m_flags |= XFS_MOUNT_OSYNCISOSYNC;
David Chinnera67d7c52007-11-23 16:29:32 +1100290 } else if (!strcmp(this_char, MNTOPT_NORECOVERY)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100291 mp->m_flags |= XFS_MOUNT_NORECOVERY;
David Chinnera67d7c52007-11-23 16:29:32 +1100292 } else if (!strcmp(this_char, MNTOPT_NOALIGN)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100293 mp->m_flags |= XFS_MOUNT_NOALIGN;
David Chinnera67d7c52007-11-23 16:29:32 +1100294 } else if (!strcmp(this_char, MNTOPT_SWALLOC)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100295 mp->m_flags |= XFS_MOUNT_SWALLOC;
David Chinnera67d7c52007-11-23 16:29:32 +1100296 } 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)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100313 mp->m_flags &= ~XFS_MOUNT_SMALL_INUMS;
David Chinnera67d7c52007-11-23 16:29:32 +1100314#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)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100321 mp->m_flags |= XFS_MOUNT_NOUUID;
David Chinnera67d7c52007-11-23 16:29:32 +1100322 } else if (!strcmp(this_char, MNTOPT_BARRIER)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100323 mp->m_flags |= XFS_MOUNT_BARRIER;
David Chinnera67d7c52007-11-23 16:29:32 +1100324 } else if (!strcmp(this_char, MNTOPT_NOBARRIER)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100325 mp->m_flags &= ~XFS_MOUNT_BARRIER;
David Chinnera67d7c52007-11-23 16:29:32 +1100326 } else if (!strcmp(this_char, MNTOPT_IKEEP)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100327 mp->m_flags |= XFS_MOUNT_IKEEP;
David Chinnera67d7c52007-11-23 16:29:32 +1100328 } else if (!strcmp(this_char, MNTOPT_NOIKEEP)) {
Josef Jeff Sipek1bd960e2008-02-29 13:58:40 +1100329 dmapi_implies_ikeep = 0;
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100330 mp->m_flags &= ~XFS_MOUNT_IKEEP;
David Chinnera67d7c52007-11-23 16:29:32 +1100331 } else if (!strcmp(this_char, MNTOPT_LARGEIO)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100332 mp->m_flags &= ~XFS_MOUNT_COMPAT_IOSIZE;
David Chinnera67d7c52007-11-23 16:29:32 +1100333 } else if (!strcmp(this_char, MNTOPT_NOLARGEIO)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100334 mp->m_flags |= XFS_MOUNT_COMPAT_IOSIZE;
David Chinnera67d7c52007-11-23 16:29:32 +1100335 } else if (!strcmp(this_char, MNTOPT_ATTR2)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100336 mp->m_flags |= XFS_MOUNT_ATTR2;
David Chinnera67d7c52007-11-23 16:29:32 +1100337 } else if (!strcmp(this_char, MNTOPT_NOATTR2)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100338 mp->m_flags &= ~XFS_MOUNT_ATTR2;
339 mp->m_flags |= XFS_MOUNT_NOATTR2;
David Chinnera67d7c52007-11-23 16:29:32 +1100340 } else if (!strcmp(this_char, MNTOPT_FILESTREAM)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100341 mp->m_flags |= XFS_MOUNT_FILESTREAMS;
David Chinnera67d7c52007-11-23 16:29:32 +1100342 } else if (!strcmp(this_char, MNTOPT_NOQUOTA)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100343 mp->m_qflags &= ~(XFS_UQUOTA_ACCT | XFS_UQUOTA_ACTIVE |
344 XFS_GQUOTA_ACCT | XFS_GQUOTA_ACTIVE |
Christoph Hellwig469fc232008-10-30 17:54:57 +1100345 XFS_PQUOTA_ACCT | XFS_PQUOTA_ACTIVE |
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100346 XFS_UQUOTA_ENFD | XFS_OQUOTA_ENFD);
David Chinnera67d7c52007-11-23 16:29:32 +1100347 } else if (!strcmp(this_char, MNTOPT_QUOTA) ||
348 !strcmp(this_char, MNTOPT_UQUOTA) ||
349 !strcmp(this_char, MNTOPT_USRQUOTA)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100350 mp->m_qflags |= (XFS_UQUOTA_ACCT | XFS_UQUOTA_ACTIVE |
351 XFS_UQUOTA_ENFD);
David Chinnera67d7c52007-11-23 16:29:32 +1100352 } else if (!strcmp(this_char, MNTOPT_QUOTANOENF) ||
353 !strcmp(this_char, MNTOPT_UQUOTANOENF)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100354 mp->m_qflags |= (XFS_UQUOTA_ACCT | XFS_UQUOTA_ACTIVE);
355 mp->m_qflags &= ~XFS_UQUOTA_ENFD;
David Chinnera67d7c52007-11-23 16:29:32 +1100356 } else if (!strcmp(this_char, MNTOPT_PQUOTA) ||
357 !strcmp(this_char, MNTOPT_PRJQUOTA)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100358 mp->m_qflags |= (XFS_PQUOTA_ACCT | XFS_PQUOTA_ACTIVE |
359 XFS_OQUOTA_ENFD);
David Chinnera67d7c52007-11-23 16:29:32 +1100360 } else if (!strcmp(this_char, MNTOPT_PQUOTANOENF)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100361 mp->m_qflags |= (XFS_PQUOTA_ACCT | XFS_PQUOTA_ACTIVE);
362 mp->m_qflags &= ~XFS_OQUOTA_ENFD;
David Chinnera67d7c52007-11-23 16:29:32 +1100363 } else if (!strcmp(this_char, MNTOPT_GQUOTA) ||
364 !strcmp(this_char, MNTOPT_GRPQUOTA)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100365 mp->m_qflags |= (XFS_GQUOTA_ACCT | XFS_GQUOTA_ACTIVE |
366 XFS_OQUOTA_ENFD);
David Chinnera67d7c52007-11-23 16:29:32 +1100367 } else if (!strcmp(this_char, MNTOPT_GQUOTANOENF)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100368 mp->m_qflags |= (XFS_GQUOTA_ACCT | XFS_GQUOTA_ACTIVE);
369 mp->m_qflags &= ~XFS_OQUOTA_ENFD;
David Chinnera67d7c52007-11-23 16:29:32 +1100370 } else if (!strcmp(this_char, MNTOPT_DMAPI)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100371 mp->m_flags |= XFS_MOUNT_DMAPI;
David Chinnera67d7c52007-11-23 16:29:32 +1100372 } else if (!strcmp(this_char, MNTOPT_XDSM)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100373 mp->m_flags |= XFS_MOUNT_DMAPI;
David Chinnera67d7c52007-11-23 16:29:32 +1100374 } else if (!strcmp(this_char, MNTOPT_DMI)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100375 mp->m_flags |= XFS_MOUNT_DMAPI;
David Chinnera67d7c52007-11-23 16:29:32 +1100376 } 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
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100393 /*
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;
David Chinnera67d7c52007-11-23 16:29:32 +1100400 }
401
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100402 if ((mp->m_flags & XFS_MOUNT_NOALIGN) && (dsunit || dswidth)) {
David Chinnera67d7c52007-11-23 16:29:32 +1100403 cmn_err(CE_WARN,
404 "XFS: sunit and swidth options incompatible with the noalign option");
405 return EINVAL;
406 }
407
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100408 if ((mp->m_qflags & (XFS_GQUOTA_ACCT | XFS_GQUOTA_ACTIVE)) &&
409 (mp->m_qflags & (XFS_PQUOTA_ACCT | XFS_PQUOTA_ACTIVE))) {
David Chinnera67d7c52007-11-23 16:29:32 +1100410 cmn_err(CE_WARN,
411 "XFS: cannot mount with both project and group quota");
412 return EINVAL;
413 }
414
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100415 if ((mp->m_flags & XFS_MOUNT_DMAPI) && (!*mtpt || *mtpt[0] == '\0')) {
David Chinnera67d7c52007-11-23 16:29:32 +1100416 printk("XFS: %s option needs the mount point option as well\n",
417 MNTOPT_DMAPI);
418 return EINVAL;
419 }
420
421 if ((dsunit && !dswidth) || (!dsunit && dswidth)) {
422 cmn_err(CE_WARN,
423 "XFS: sunit and swidth must be specified together");
424 return EINVAL;
425 }
426
427 if (dsunit && (dswidth % dsunit != 0)) {
428 cmn_err(CE_WARN,
429 "XFS: stripe width (%d) must be a multiple of the stripe unit (%d)",
430 dswidth, dsunit);
431 return EINVAL;
432 }
433
434 /*
435 * Applications using DMI filesystems often expect the
436 * inode generation number to be monotonically increasing.
437 * If we delete inode chunks we break this assumption, so
438 * keep unused inode chunks on disk for DMI filesystems
439 * until we come up with a better solution.
440 * Note that if "ikeep" or "noikeep" mount options are
441 * supplied, then they are honored.
442 */
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100443 if ((mp->m_flags & XFS_MOUNT_DMAPI) && dmapi_implies_ikeep)
444 mp->m_flags |= XFS_MOUNT_IKEEP;
David Chinnera67d7c52007-11-23 16:29:32 +1100445
446done:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100447 if (!(mp->m_flags & XFS_MOUNT_NOALIGN)) {
448 /*
449 * At this point the superblock has not been read
450 * in, therefore we do not know the block size.
451 * Before the mount call ends we will convert
452 * these to FSBs.
453 */
454 if (dsunit) {
455 mp->m_dalign = dsunit;
456 mp->m_flags |= XFS_MOUNT_RETERR;
457 }
458
459 if (dswidth)
460 mp->m_swidth = dswidth;
461 }
462
463 if (mp->m_logbufs != -1 &&
464 mp->m_logbufs != 0 &&
465 (mp->m_logbufs < XLOG_MIN_ICLOGS ||
466 mp->m_logbufs > XLOG_MAX_ICLOGS)) {
467 cmn_err(CE_WARN,
468 "XFS: invalid logbufs value: %d [not %d-%d]",
469 mp->m_logbufs, XLOG_MIN_ICLOGS, XLOG_MAX_ICLOGS);
470 return XFS_ERROR(EINVAL);
471 }
472 if (mp->m_logbsize != -1 &&
473 mp->m_logbsize != 0 &&
474 (mp->m_logbsize < XLOG_MIN_RECORD_BSIZE ||
475 mp->m_logbsize > XLOG_MAX_RECORD_BSIZE ||
476 !is_power_of_2(mp->m_logbsize))) {
477 cmn_err(CE_WARN,
478 "XFS: invalid logbufsize: %d [not 16k,32k,64k,128k or 256k]",
479 mp->m_logbsize);
480 return XFS_ERROR(EINVAL);
481 }
482
483 mp->m_fsname = kstrndup(sb->s_id, MAXNAMELEN, GFP_KERNEL);
484 if (!mp->m_fsname)
485 return ENOMEM;
486 mp->m_fsname_len = strlen(mp->m_fsname) + 1;
487
488 if (iosizelog) {
489 if (iosizelog > XFS_MAX_IO_LOG ||
490 iosizelog < XFS_MIN_IO_LOG) {
491 cmn_err(CE_WARN,
492 "XFS: invalid log iosize: %d [not %d-%d]",
493 iosizelog, XFS_MIN_IO_LOG,
494 XFS_MAX_IO_LOG);
495 return XFS_ERROR(EINVAL);
496 }
497
498 mp->m_flags |= XFS_MOUNT_DFLT_IOSIZE;
499 mp->m_readio_log = iosizelog;
500 mp->m_writeio_log = iosizelog;
501 }
502
David Chinnera67d7c52007-11-23 16:29:32 +1100503 return 0;
504}
505
506struct proc_xfs_info {
507 int flag;
508 char *str;
509};
510
511STATIC int
512xfs_showargs(
513 struct xfs_mount *mp,
514 struct seq_file *m)
515{
516 static struct proc_xfs_info xfs_info_set[] = {
517 /* the few simple ones we can get from the mount struct */
Josef Jeff Sipek1bd960e2008-02-29 13:58:40 +1100518 { XFS_MOUNT_IKEEP, "," MNTOPT_IKEEP },
David Chinnera67d7c52007-11-23 16:29:32 +1100519 { XFS_MOUNT_WSYNC, "," MNTOPT_WSYNC },
David Chinnera67d7c52007-11-23 16:29:32 +1100520 { XFS_MOUNT_NOALIGN, "," MNTOPT_NOALIGN },
521 { XFS_MOUNT_SWALLOC, "," MNTOPT_SWALLOC },
522 { XFS_MOUNT_NOUUID, "," MNTOPT_NOUUID },
523 { XFS_MOUNT_NORECOVERY, "," MNTOPT_NORECOVERY },
524 { XFS_MOUNT_OSYNCISOSYNC, "," MNTOPT_OSYNCISOSYNC },
525 { XFS_MOUNT_ATTR2, "," MNTOPT_ATTR2 },
526 { XFS_MOUNT_FILESTREAMS, "," MNTOPT_FILESTREAM },
527 { XFS_MOUNT_DMAPI, "," MNTOPT_DMAPI },
528 { XFS_MOUNT_GRPID, "," MNTOPT_GRPID },
529 { 0, NULL }
530 };
531 static struct proc_xfs_info xfs_info_unset[] = {
532 /* the few simple ones we can get from the mount struct */
David Chinnera67d7c52007-11-23 16:29:32 +1100533 { XFS_MOUNT_COMPAT_IOSIZE, "," MNTOPT_LARGEIO },
534 { XFS_MOUNT_BARRIER, "," MNTOPT_NOBARRIER },
535 { XFS_MOUNT_SMALL_INUMS, "," MNTOPT_64BITINODE },
536 { 0, NULL }
537 };
538 struct proc_xfs_info *xfs_infop;
539
540 for (xfs_infop = xfs_info_set; xfs_infop->flag; xfs_infop++) {
541 if (mp->m_flags & xfs_infop->flag)
542 seq_puts(m, xfs_infop->str);
543 }
544 for (xfs_infop = xfs_info_unset; xfs_infop->flag; xfs_infop++) {
545 if (!(mp->m_flags & xfs_infop->flag))
546 seq_puts(m, xfs_infop->str);
547 }
548
549 if (mp->m_flags & XFS_MOUNT_DFLT_IOSIZE)
550 seq_printf(m, "," MNTOPT_ALLOCSIZE "=%dk",
551 (int)(1 << mp->m_writeio_log) >> 10);
552
553 if (mp->m_logbufs > 0)
554 seq_printf(m, "," MNTOPT_LOGBUFS "=%d", mp->m_logbufs);
555 if (mp->m_logbsize > 0)
556 seq_printf(m, "," MNTOPT_LOGBSIZE "=%dk", mp->m_logbsize >> 10);
557
558 if (mp->m_logname)
559 seq_printf(m, "," MNTOPT_LOGDEV "=%s", mp->m_logname);
560 if (mp->m_rtname)
561 seq_printf(m, "," MNTOPT_RTDEV "=%s", mp->m_rtname);
562
563 if (mp->m_dalign > 0)
564 seq_printf(m, "," MNTOPT_SUNIT "=%d",
565 (int)XFS_FSB_TO_BB(mp, mp->m_dalign));
566 if (mp->m_swidth > 0)
567 seq_printf(m, "," MNTOPT_SWIDTH "=%d",
568 (int)XFS_FSB_TO_BB(mp, mp->m_swidth));
569
570 if (mp->m_qflags & (XFS_UQUOTA_ACCT|XFS_UQUOTA_ENFD))
571 seq_puts(m, "," MNTOPT_USRQUOTA);
572 else if (mp->m_qflags & XFS_UQUOTA_ACCT)
573 seq_puts(m, "," MNTOPT_UQUOTANOENF);
574
575 if (mp->m_qflags & (XFS_PQUOTA_ACCT|XFS_OQUOTA_ENFD))
576 seq_puts(m, "," MNTOPT_PRJQUOTA);
577 else if (mp->m_qflags & XFS_PQUOTA_ACCT)
578 seq_puts(m, "," MNTOPT_PQUOTANOENF);
579
580 if (mp->m_qflags & (XFS_GQUOTA_ACCT|XFS_OQUOTA_ENFD))
581 seq_puts(m, "," MNTOPT_GRPQUOTA);
582 else if (mp->m_qflags & XFS_GQUOTA_ACCT)
583 seq_puts(m, "," MNTOPT_GQUOTANOENF);
584
585 if (!(mp->m_qflags & XFS_ALL_QUOTA_ACCT))
586 seq_puts(m, "," MNTOPT_NOQUOTA);
587
588 return 0;
589}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590__uint64_t
591xfs_max_file_offset(
592 unsigned int blockshift)
593{
594 unsigned int pagefactor = 1;
595 unsigned int bitshift = BITS_PER_LONG - 1;
596
597 /* Figure out maximum filesize, on Linux this can depend on
598 * the filesystem blocksize (on 32 bit platforms).
599 * __block_prepare_write does this in an [unsigned] long...
600 * page->index << (PAGE_CACHE_SHIFT - bbits)
601 * So, for page sized blocks (4K on 32 bit platforms),
602 * this wraps at around 8Tb (hence MAX_LFS_FILESIZE which is
603 * (((u64)PAGE_CACHE_SIZE << (BITS_PER_LONG-1))-1)
604 * but for smaller blocksizes it is less (bbits = log2 bsize).
605 * Note1: get_block_t takes a long (implicit cast from above)
606 * Note2: The Large Block Device (LBD and HAVE_SECTOR_T) patch
607 * can optionally convert the [unsigned] long from above into
608 * an [unsigned] long long.
609 */
610
611#if BITS_PER_LONG == 32
612# if defined(CONFIG_LBD)
613 ASSERT(sizeof(sector_t) == 8);
614 pagefactor = PAGE_CACHE_SIZE;
615 bitshift = BITS_PER_LONG;
616# else
617 pagefactor = PAGE_CACHE_SIZE >> (PAGE_CACHE_SHIFT - blockshift);
618# endif
619#endif
620
621 return (((__uint64_t)pagefactor) << bitshift) - 1;
622}
623
Hannes Eder3180e662009-03-04 19:34:10 +0100624STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625xfs_blkdev_get(
626 xfs_mount_t *mp,
627 const char *name,
628 struct block_device **bdevp)
629{
630 int error = 0;
631
Al Viro30c40d22008-02-22 19:50:45 -0500632 *bdevp = open_bdev_exclusive(name, FMODE_READ|FMODE_WRITE, mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 if (IS_ERR(*bdevp)) {
634 error = PTR_ERR(*bdevp);
635 printk("XFS: Invalid device [%s], error=%d\n", name, error);
636 }
637
638 return -error;
639}
640
Hannes Eder3180e662009-03-04 19:34:10 +0100641STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642xfs_blkdev_put(
643 struct block_device *bdev)
644{
645 if (bdev)
Al Viro30c40d22008-02-22 19:50:45 -0500646 close_bdev_exclusive(bdev, FMODE_READ|FMODE_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647}
648
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100649/*
650 * Try to write out the superblock using barriers.
651 */
652STATIC int
653xfs_barrier_test(
654 xfs_mount_t *mp)
655{
656 xfs_buf_t *sbp = xfs_getsb(mp, 0);
657 int error;
658
659 XFS_BUF_UNDONE(sbp);
660 XFS_BUF_UNREAD(sbp);
661 XFS_BUF_UNDELAYWRITE(sbp);
662 XFS_BUF_WRITE(sbp);
663 XFS_BUF_UNASYNC(sbp);
664 XFS_BUF_ORDERED(sbp);
665
666 xfsbdstrat(mp, sbp);
667 error = xfs_iowait(sbp);
668
669 /*
670 * Clear all the flags we set and possible error state in the
671 * buffer. We only did the write to try out whether barriers
672 * worked and shouldn't leave any traces in the superblock
673 * buffer.
674 */
675 XFS_BUF_DONE(sbp);
676 XFS_BUF_ERROR(sbp, 0);
677 XFS_BUF_UNORDERED(sbp);
678
679 xfs_buf_relse(sbp);
680 return error;
681}
682
683void
684xfs_mountfs_check_barriers(xfs_mount_t *mp)
685{
686 int error;
687
688 if (mp->m_logdev_targp != mp->m_ddev_targp) {
689 xfs_fs_cmn_err(CE_NOTE, mp,
690 "Disabling barriers, not supported with external log device");
691 mp->m_flags &= ~XFS_MOUNT_BARRIER;
Christoph Hellwig4ef19dd2006-01-11 15:27:18 +1100692 return;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100693 }
694
Nathan Scottb2ea4012006-07-28 17:05:13 +1000695 if (xfs_readonly_buftarg(mp->m_ddev_targp)) {
696 xfs_fs_cmn_err(CE_NOTE, mp,
697 "Disabling barriers, underlying device is readonly");
698 mp->m_flags &= ~XFS_MOUNT_BARRIER;
699 return;
700 }
701
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100702 error = xfs_barrier_test(mp);
703 if (error) {
704 xfs_fs_cmn_err(CE_NOTE, mp,
705 "Disabling barriers, trial barrier write failed");
706 mp->m_flags &= ~XFS_MOUNT_BARRIER;
Christoph Hellwig4ef19dd2006-01-11 15:27:18 +1100707 return;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100708 }
709}
710
711void
712xfs_blkdev_issue_flush(
713 xfs_buftarg_t *buftarg)
714{
Nathan Scottce8e9222006-01-11 15:39:08 +1100715 blkdev_issue_flush(buftarg->bt_bdev, NULL);
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100716}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000718STATIC void
719xfs_close_devices(
720 struct xfs_mount *mp)
721{
722 if (mp->m_logdev_targp && mp->m_logdev_targp != mp->m_ddev_targp) {
Lachlan McIlroyc032bfc2008-07-18 17:13:12 +1000723 struct block_device *logdev = mp->m_logdev_targp->bt_bdev;
Christoph Hellwigb7963132009-03-03 14:48:37 -0500724 xfs_free_buftarg(mp, mp->m_logdev_targp);
Lachlan McIlroyc032bfc2008-07-18 17:13:12 +1000725 xfs_blkdev_put(logdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000726 }
727 if (mp->m_rtdev_targp) {
Lachlan McIlroyc032bfc2008-07-18 17:13:12 +1000728 struct block_device *rtdev = mp->m_rtdev_targp->bt_bdev;
Christoph Hellwigb7963132009-03-03 14:48:37 -0500729 xfs_free_buftarg(mp, mp->m_rtdev_targp);
Lachlan McIlroyc032bfc2008-07-18 17:13:12 +1000730 xfs_blkdev_put(rtdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000731 }
Christoph Hellwigb7963132009-03-03 14:48:37 -0500732 xfs_free_buftarg(mp, mp->m_ddev_targp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000733}
734
735/*
736 * The file system configurations are:
737 * (1) device (partition) with data and internal log
738 * (2) logical volume with data and log subvolumes.
739 * (3) logical volume with data, log, and realtime subvolumes.
740 *
741 * We only have to handle opening the log and realtime volumes here if
742 * they are present. The data subvolume has already been opened by
743 * get_sb_bdev() and is stored in sb->s_bdev.
744 */
745STATIC int
746xfs_open_devices(
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100747 struct xfs_mount *mp)
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000748{
749 struct block_device *ddev = mp->m_super->s_bdev;
750 struct block_device *logdev = NULL, *rtdev = NULL;
751 int error;
752
753 /*
754 * Open real time and log devices - order is important.
755 */
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100756 if (mp->m_logname) {
757 error = xfs_blkdev_get(mp, mp->m_logname, &logdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000758 if (error)
759 goto out;
760 }
761
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100762 if (mp->m_rtname) {
763 error = xfs_blkdev_get(mp, mp->m_rtname, &rtdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000764 if (error)
765 goto out_close_logdev;
766
767 if (rtdev == ddev || rtdev == logdev) {
768 cmn_err(CE_WARN,
769 "XFS: Cannot mount filesystem with identical rtdev and ddev/logdev.");
770 error = EINVAL;
771 goto out_close_rtdev;
772 }
773 }
774
775 /*
776 * Setup xfs_mount buffer target pointers
777 */
778 error = ENOMEM;
779 mp->m_ddev_targp = xfs_alloc_buftarg(ddev, 0);
780 if (!mp->m_ddev_targp)
781 goto out_close_rtdev;
782
783 if (rtdev) {
784 mp->m_rtdev_targp = xfs_alloc_buftarg(rtdev, 1);
785 if (!mp->m_rtdev_targp)
786 goto out_free_ddev_targ;
787 }
788
789 if (logdev && logdev != ddev) {
790 mp->m_logdev_targp = xfs_alloc_buftarg(logdev, 1);
791 if (!mp->m_logdev_targp)
792 goto out_free_rtdev_targ;
793 } else {
794 mp->m_logdev_targp = mp->m_ddev_targp;
795 }
796
797 return 0;
798
799 out_free_rtdev_targ:
800 if (mp->m_rtdev_targp)
Christoph Hellwigb7963132009-03-03 14:48:37 -0500801 xfs_free_buftarg(mp, mp->m_rtdev_targp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000802 out_free_ddev_targ:
Christoph Hellwigb7963132009-03-03 14:48:37 -0500803 xfs_free_buftarg(mp, mp->m_ddev_targp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000804 out_close_rtdev:
805 if (rtdev)
806 xfs_blkdev_put(rtdev);
807 out_close_logdev:
808 if (logdev && logdev != ddev)
809 xfs_blkdev_put(logdev);
810 out:
811 return error;
812}
813
Christoph Hellwige34b5622008-05-20 15:10:36 +1000814/*
815 * Setup xfs_mount buffer target pointers based on superblock
816 */
817STATIC int
818xfs_setup_devices(
819 struct xfs_mount *mp)
820{
821 int error;
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000822
Christoph Hellwige34b5622008-05-20 15:10:36 +1000823 error = xfs_setsize_buftarg(mp->m_ddev_targp, mp->m_sb.sb_blocksize,
824 mp->m_sb.sb_sectsize);
825 if (error)
826 return error;
827
828 if (mp->m_logdev_targp && mp->m_logdev_targp != mp->m_ddev_targp) {
829 unsigned int log_sector_size = BBSIZE;
830
831 if (xfs_sb_version_hassector(&mp->m_sb))
832 log_sector_size = mp->m_sb.sb_logsectsize;
833 error = xfs_setsize_buftarg(mp->m_logdev_targp,
834 mp->m_sb.sb_blocksize,
835 log_sector_size);
836 if (error)
837 return error;
838 }
839 if (mp->m_rtdev_targp) {
840 error = xfs_setsize_buftarg(mp->m_rtdev_targp,
841 mp->m_sb.sb_blocksize,
842 mp->m_sb.sb_sectsize);
843 if (error)
844 return error;
845 }
846
847 return 0;
848}
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000849
David Chinner249a8c12008-02-05 12:13:32 +1100850/*
851 * XFS AIL push thread support
852 */
853void
854xfsaild_wakeup(
David Chinner82fa9012008-10-30 17:38:26 +1100855 struct xfs_ail *ailp,
David Chinner249a8c12008-02-05 12:13:32 +1100856 xfs_lsn_t threshold_lsn)
857{
David Chinner82fa9012008-10-30 17:38:26 +1100858 ailp->xa_target = threshold_lsn;
859 wake_up_process(ailp->xa_task);
David Chinner249a8c12008-02-05 12:13:32 +1100860}
861
Hannes Eder3180e662009-03-04 19:34:10 +0100862STATIC int
David Chinner249a8c12008-02-05 12:13:32 +1100863xfsaild(
864 void *data)
865{
David Chinner82fa9012008-10-30 17:38:26 +1100866 struct xfs_ail *ailp = data;
David Chinner249a8c12008-02-05 12:13:32 +1100867 xfs_lsn_t last_pushed_lsn = 0;
868 long tout = 0;
869
870 while (!kthread_should_stop()) {
871 if (tout)
872 schedule_timeout_interruptible(msecs_to_jiffies(tout));
873 tout = 1000;
874
875 /* swsusp */
876 try_to_freeze();
877
David Chinner82fa9012008-10-30 17:38:26 +1100878 ASSERT(ailp->xa_mount->m_log);
879 if (XFS_FORCED_SHUTDOWN(ailp->xa_mount))
David Chinner249a8c12008-02-05 12:13:32 +1100880 continue;
881
David Chinner82fa9012008-10-30 17:38:26 +1100882 tout = xfsaild_push(ailp, &last_pushed_lsn);
David Chinner249a8c12008-02-05 12:13:32 +1100883 }
884
885 return 0;
886} /* xfsaild */
887
888int
889xfsaild_start(
David Chinner82fa9012008-10-30 17:38:26 +1100890 struct xfs_ail *ailp)
David Chinner249a8c12008-02-05 12:13:32 +1100891{
David Chinner82fa9012008-10-30 17:38:26 +1100892 ailp->xa_target = 0;
893 ailp->xa_task = kthread_run(xfsaild, ailp, "xfsaild");
894 if (IS_ERR(ailp->xa_task))
895 return -PTR_ERR(ailp->xa_task);
David Chinner249a8c12008-02-05 12:13:32 +1100896 return 0;
897}
898
899void
900xfsaild_stop(
David Chinner82fa9012008-10-30 17:38:26 +1100901 struct xfs_ail *ailp)
David Chinner249a8c12008-02-05 12:13:32 +1100902{
David Chinner82fa9012008-10-30 17:38:26 +1100903 kthread_stop(ailp->xa_task);
David Chinner249a8c12008-02-05 12:13:32 +1100904}
905
906
David Chinnerbf904242008-10-30 17:36:14 +1100907/* Catch misguided souls that try to use this interface on XFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908STATIC struct inode *
Nathan Scotta50cd262006-03-14 14:06:18 +1100909xfs_fs_alloc_inode(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 struct super_block *sb)
911{
David Chinnerbf904242008-10-30 17:36:14 +1100912 BUG();
Lachlan McIlroy493dca62008-10-30 17:36:52 +1100913 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914}
915
David Chinnerbf904242008-10-30 17:36:14 +1100916/*
David Chinner99fa8cb2008-10-30 17:36:40 +1100917 * Now that the generic code is guaranteed not to be accessing
918 * the linux inode, we can reclaim the inode.
David Chinnerbf904242008-10-30 17:36:14 +1100919 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920STATIC void
Nathan Scotta50cd262006-03-14 14:06:18 +1100921xfs_fs_destroy_inode(
David Chinnerbf904242008-10-30 17:36:14 +1100922 struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923{
David Chinner99fa8cb2008-10-30 17:36:40 +1100924 xfs_inode_t *ip = XFS_I(inode);
925
926 XFS_STATS_INC(vn_reclaim);
927 if (xfs_reclaim(ip))
928 panic("%s: cannot reclaim 0x%p\n", __func__, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929}
930
David Chinner07c8f672008-10-30 16:11:59 +1100931/*
932 * Slab object creation initialisation for the XFS inode.
933 * This covers only the idempotent fields in the XFS inode;
934 * all other fields need to be initialised on allocation
935 * from the slab. This avoids the need to repeatedly intialise
936 * fields in the xfs inode that left in the initialise state
937 * when freeing the inode.
938 */
David Chinnerbf904242008-10-30 17:36:14 +1100939STATIC void
940xfs_fs_inode_init_once(
David Chinner07c8f672008-10-30 16:11:59 +1100941 void *inode)
942{
943 struct xfs_inode *ip = inode;
944
945 memset(ip, 0, sizeof(struct xfs_inode));
David Chinnerbf904242008-10-30 17:36:14 +1100946
947 /* vfs inode */
948 inode_init_once(VFS_I(ip));
949
950 /* xfs inode */
David Chinner07c8f672008-10-30 16:11:59 +1100951 atomic_set(&ip->i_iocount, 0);
952 atomic_set(&ip->i_pincount, 0);
953 spin_lock_init(&ip->i_flags_lock);
David Chinner07c8f672008-10-30 16:11:59 +1100954 init_waitqueue_head(&ip->i_ipin_wait);
955 /*
956 * Because we want to use a counting completion, complete
957 * the flush completion once to allow a single access to
958 * the flush completion without blocking.
959 */
960 init_completion(&ip->i_flush);
961 complete(&ip->i_flush);
962
963 mrlock_init(&ip->i_lock, MRLOCK_ALLOW_EQUAL_PRI|MRLOCK_BARRIER,
964 "xfsino", ip->i_ino);
965 mrlock_init(&ip->i_iolock, MRLOCK_BARRIER, "xfsio", ip->i_ino);
966}
967
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968/*
969 * Attempt to flush the inode, this will actually fail
970 * if the inode is pinned, but we dirty the inode again
971 * at the point when it is unpinned after a log write,
Nathan Scott87582802006-03-14 13:18:19 +1100972 * since this is when the inode itself becomes flushable.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 */
974STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +1100975xfs_fs_write_inode(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 struct inode *inode,
977 int sync)
978{
Dave Chinner2e656092008-11-28 14:23:33 +1100979 struct xfs_inode *ip = XFS_I(inode);
Christoph Hellwigd4bb6d02009-02-04 09:36:19 +0100980 struct xfs_mount *mp = ip->i_mount;
David Chinnera3f74ff2008-03-06 13:43:42 +1100981 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
Dave Chinner2e656092008-11-28 14:23:33 +1100983 xfs_itrace_entry(ip);
Christoph Hellwigd4bb6d02009-02-04 09:36:19 +0100984
985 if (XFS_FORCED_SHUTDOWN(mp))
986 return XFS_ERROR(EIO);
987
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000988 if (sync) {
Dave Chinner2e656092008-11-28 14:23:33 +1100989 error = xfs_wait_on_pages(ip, 0, -1);
990 if (error)
Christoph Hellwigd4bb6d02009-02-04 09:36:19 +0100991 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 }
Dave Chinner2e656092008-11-28 14:23:33 +1100993
Christoph Hellwigd4bb6d02009-02-04 09:36:19 +0100994 /*
995 * Bypass inodes which have already been cleaned by
996 * the inode flush clustering code inside xfs_iflush
997 */
998 if (xfs_inode_clean(ip))
999 goto out;
1000
1001 /*
1002 * We make this non-blocking if the inode is contended, return
1003 * EAGAIN to indicate to the caller that they did not succeed.
1004 * This prevents the flush path from blocking on inodes inside
1005 * another operation right now, they get caught later by xfs_sync.
1006 */
1007 if (sync) {
1008 xfs_ilock(ip, XFS_ILOCK_SHARED);
1009 xfs_iflock(ip);
1010
1011 error = xfs_iflush(ip, XFS_IFLUSH_SYNC);
1012 } else {
1013 error = EAGAIN;
1014 if (!xfs_ilock_nowait(ip, XFS_ILOCK_SHARED))
1015 goto out;
1016 if (xfs_ipincount(ip) || !xfs_iflock_nowait(ip))
1017 goto out_unlock;
1018
1019 error = xfs_iflush(ip, XFS_IFLUSH_ASYNC_NOBLOCK);
1020 }
1021
1022 out_unlock:
1023 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1024 out:
Lachlan McIlroye893bff2007-10-12 11:13:35 +10001025 /*
1026 * if we failed to write out the inode then mark
1027 * it dirty again so we'll try again later.
1028 */
1029 if (error)
Dave Chinner2e656092008-11-28 14:23:33 +11001030 xfs_mark_inode_dirty_sync(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 return -error;
1032}
1033
1034STATIC void
Nathan Scotta50cd262006-03-14 14:06:18 +11001035xfs_fs_clear_inode(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 struct inode *inode)
1037{
Christoph Hellwig1543d792007-08-29 11:46:47 +10001038 xfs_inode_t *ip = XFS_I(inode);
Christoph Hellwig56d433e2005-09-05 08:23:54 +10001039
David Chinner99fa8cb2008-10-30 17:36:40 +11001040 xfs_itrace_entry(ip);
1041 XFS_STATS_INC(vn_rele);
1042 XFS_STATS_INC(vn_remove);
1043 XFS_STATS_DEC(vn_active);
Christoph Hellwig56d433e2005-09-05 08:23:54 +10001044
David Chinner99fa8cb2008-10-30 17:36:40 +11001045 xfs_inactive(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046}
1047
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048STATIC void
Christoph Hellwiga7381592008-08-13 16:04:05 +10001049xfs_free_fsname(
1050 struct xfs_mount *mp)
1051{
1052 kfree(mp->m_fsname);
1053 kfree(mp->m_rtname);
1054 kfree(mp->m_logname);
1055}
1056
1057STATIC void
Nathan Scotta50cd262006-03-14 14:06:18 +11001058xfs_fs_put_super(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 struct super_block *sb)
1060{
Christoph Hellwig745f6912007-08-30 17:20:39 +10001061 struct xfs_mount *mp = XFS_M(sb);
Christoph Hellwige48ad312008-05-20 11:30:52 +10001062 struct xfs_inode *rip = mp->m_rootip;
1063 int unmount_event_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
David Chinnera167b172008-10-30 17:06:18 +11001065 xfs_syncd_stop(mp);
David Chinnerbe97d9d2008-10-30 17:15:38 +11001066 xfs_sync_inodes(mp, SYNC_ATTR|SYNC_DELWRI);
Christoph Hellwige48ad312008-05-20 11:30:52 +10001067
1068#ifdef HAVE_DMAPI
1069 if (mp->m_flags & XFS_MOUNT_DMAPI) {
1070 unmount_event_flags =
1071 (mp->m_dmevmask & (1 << DM_EVENT_UNMOUNT)) ?
1072 0 : DM_FLAGS_UNWANTED;
1073 /*
1074 * Ignore error from dmapi here, first unmount is not allowed
1075 * to fail anyway, and second we wouldn't want to fail a
1076 * unmount because of dmapi.
1077 */
1078 XFS_SEND_PREUNMOUNT(mp, rip, DM_RIGHT_NULL, rip, DM_RIGHT_NULL,
1079 NULL, NULL, 0, 0, unmount_event_flags);
1080 }
1081#endif
1082
1083 /*
1084 * Blow away any referenced inode in the filestreams cache.
1085 * This can and will cause log traffic as inodes go inactive
1086 * here.
1087 */
1088 xfs_filestream_unmount(mp);
1089
1090 XFS_bflush(mp->m_ddev_targp);
Christoph Hellwige48ad312008-05-20 11:30:52 +10001091
Christoph Hellwige48ad312008-05-20 11:30:52 +10001092 if (mp->m_flags & XFS_MOUNT_DMAPI) {
1093 XFS_SEND_UNMOUNT(mp, rip, DM_RIGHT_NULL, 0, 0,
1094 unmount_event_flags);
1095 }
1096
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001097 xfs_unmountfs(mp);
Christoph Hellwig62033002008-08-13 16:50:21 +10001098 xfs_freesb(mp);
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001099 xfs_icsb_destroy_counters(mp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001100 xfs_close_devices(mp);
Christoph Hellwige48ad312008-05-20 11:30:52 +10001101 xfs_qmops_put(mp);
1102 xfs_dmops_put(mp);
Christoph Hellwiga7381592008-08-13 16:04:05 +10001103 xfs_free_fsname(mp);
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001104 kfree(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105}
1106
1107STATIC void
Nathan Scotta50cd262006-03-14 14:06:18 +11001108xfs_fs_write_super(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 struct super_block *sb)
1110{
Nathan Scottb83bd132006-06-09 16:48:30 +10001111 if (!(sb->s_flags & MS_RDONLY))
David Chinnere9f1c6e2008-10-30 17:15:50 +11001112 xfs_sync_fsdata(XFS_M(sb), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 sb->s_dirt = 0;
1114}
1115
1116STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001117xfs_fs_sync_super(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 struct super_block *sb,
1119 int wait)
1120{
Christoph Hellwig745f6912007-08-30 17:20:39 +10001121 struct xfs_mount *mp = XFS_M(sb);
Nathan Scottb83bd132006-06-09 16:48:30 +10001122 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
Lachlan McIlroye893bff2007-10-12 11:13:35 +10001124 /*
1125 * Treat a sync operation like a freeze. This is to work
1126 * around a race in sync_inodes() which works in two phases
1127 * - an asynchronous flush, which can write out an inode
1128 * without waiting for file size updates to complete, and a
1129 * synchronous flush, which wont do anything because the
1130 * async flush removed the inode's dirty flag. Also
1131 * sync_inodes() will not see any files that just have
1132 * outstanding transactions to be flushed because we don't
1133 * dirty the Linux inode until after the transaction I/O
1134 * completes.
1135 */
David Chinnere9f1c6e2008-10-30 17:15:50 +11001136 if (wait || unlikely(sb->s_frozen == SB_FREEZE_WRITE))
1137 error = xfs_quiesce_data(mp);
1138 else
1139 error = xfs_sync_fsdata(mp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 sb->s_dirt = 0;
1141
1142 if (unlikely(laptop_mode)) {
Christoph Hellwig74394492007-08-30 17:21:22 +10001143 int prev_sync_seq = mp->m_sync_seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
1145 /*
1146 * The disk must be active because we're syncing.
1147 * We schedule xfssyncd now (now that the disk is
1148 * active) instead of later (when it might not be).
1149 */
Christoph Hellwig74394492007-08-30 17:21:22 +10001150 wake_up_process(mp->m_sync_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 /*
1152 * We have to wait for the sync iteration to complete.
1153 * If we don't, the disk activity caused by the sync
1154 * will come after the sync is completed, and that
1155 * triggers another sync from laptop mode.
1156 */
Christoph Hellwig74394492007-08-30 17:21:22 +10001157 wait_event(mp->m_wait_single_sync_task,
1158 mp->m_sync_seq != prev_sync_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 }
1160
1161 return -error;
1162}
1163
1164STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001165xfs_fs_statfs(
David Howells726c3342006-06-23 02:02:58 -07001166 struct dentry *dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 struct kstatfs *statp)
1168{
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001169 struct xfs_mount *mp = XFS_M(dentry->d_sb);
1170 xfs_sb_t *sbp = &mp->m_sb;
1171 __uint64_t fakeinos, id;
1172 xfs_extlen_t lsize;
1173
1174 statp->f_type = XFS_SB_MAGIC;
1175 statp->f_namelen = MAXNAMELEN - 1;
1176
1177 id = huge_encode_dev(mp->m_ddev_targp->bt_dev);
1178 statp->f_fsid.val[0] = (u32)id;
1179 statp->f_fsid.val[1] = (u32)(id >> 32);
1180
Christoph Hellwigd4d90b52008-04-22 17:34:37 +10001181 xfs_icsb_sync_counters(mp, XFS_ICSB_LAZY_COUNT);
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001182
1183 spin_lock(&mp->m_sb_lock);
1184 statp->f_bsize = sbp->sb_blocksize;
1185 lsize = sbp->sb_logstart ? sbp->sb_logblocks : 0;
1186 statp->f_blocks = sbp->sb_dblocks - lsize;
1187 statp->f_bfree = statp->f_bavail =
1188 sbp->sb_fdblocks - XFS_ALLOC_SET_ASIDE(mp);
1189 fakeinos = statp->f_bfree << sbp->sb_inopblog;
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001190 statp->f_files =
1191 MIN(sbp->sb_icount + fakeinos, (__uint64_t)XFS_MAXINUMBER);
1192 if (mp->m_maxicount)
Christoph Hellwiga19d9f82009-03-29 09:51:08 +02001193 statp->f_files = min_t(typeof(statp->f_files),
1194 statp->f_files,
1195 mp->m_maxicount);
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001196 statp->f_ffree = statp->f_files - (sbp->sb_icount - sbp->sb_ifree);
1197 spin_unlock(&mp->m_sb_lock);
1198
1199 XFS_QM_DQSTATVFS(XFS_I(dentry->d_inode), statp);
1200 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201}
1202
1203STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001204xfs_fs_remount(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 struct super_block *sb,
1206 int *flags,
1207 char *options)
1208{
Christoph Hellwig745f6912007-08-30 17:20:39 +10001209 struct xfs_mount *mp = XFS_M(sb);
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001210 substring_t args[MAX_OPT_ARGS];
1211 char *p;
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001212 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001214 while ((p = strsep(&options, ",")) != NULL) {
1215 int token;
Christoph Hellwigbdd907b2008-05-20 15:10:44 +10001216
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001217 if (!*p)
1218 continue;
Christoph Hellwig48b62a12008-05-20 11:30:39 +10001219
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001220 token = match_token(p, tokens, args);
1221 switch (token) {
1222 case Opt_barrier:
Christoph Hellwig48b62a12008-05-20 11:30:39 +10001223 mp->m_flags |= XFS_MOUNT_BARRIER;
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001224
1225 /*
1226 * Test if barriers are actually working if we can,
1227 * else delay this check until the filesystem is
1228 * marked writeable.
1229 */
1230 if (!(mp->m_flags & XFS_MOUNT_RDONLY))
1231 xfs_mountfs_check_barriers(mp);
1232 break;
1233 case Opt_nobarrier:
Christoph Hellwig48b62a12008-05-20 11:30:39 +10001234 mp->m_flags &= ~XFS_MOUNT_BARRIER;
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001235 break;
1236 default:
Christoph Hellwig6efdf282008-09-17 16:49:33 +10001237 /*
1238 * Logically we would return an error here to prevent
1239 * users from believing they might have changed
1240 * mount options using remount which can't be changed.
1241 *
1242 * But unfortunately mount(8) adds all options from
1243 * mtab and fstab to the mount arguments in some cases
1244 * so we can't blindly reject options, but have to
1245 * check for each specified option if it actually
1246 * differs from the currently set option and only
1247 * reject it if that's the case.
1248 *
1249 * Until that is implemented we return success for
1250 * every remount request, and silently ignore all
1251 * options that we can't actually change.
1252 */
1253#if 0
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001254 printk(KERN_INFO
1255 "XFS: mount option \"%s\" not supported for remount\n", p);
1256 return -EINVAL;
Christoph Hellwig6efdf282008-09-17 16:49:33 +10001257#else
Christoph Hellwig6c5e51d2008-10-12 14:30:44 +02001258 break;
Christoph Hellwig6efdf282008-09-17 16:49:33 +10001259#endif
Christoph Hellwig48b62a12008-05-20 11:30:39 +10001260 }
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001261 }
1262
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001263 /* ro -> rw */
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001264 if ((mp->m_flags & XFS_MOUNT_RDONLY) && !(*flags & MS_RDONLY)) {
1265 mp->m_flags &= ~XFS_MOUNT_RDONLY;
1266 if (mp->m_flags & XFS_MOUNT_BARRIER)
1267 xfs_mountfs_check_barriers(mp);
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001268
1269 /*
1270 * If this is the first remount to writeable state we
1271 * might have some superblock changes to update.
1272 */
1273 if (mp->m_update_flags) {
1274 error = xfs_mount_log_sb(mp, mp->m_update_flags);
1275 if (error) {
1276 cmn_err(CE_WARN,
1277 "XFS: failed to write sb changes");
1278 return error;
1279 }
1280 mp->m_update_flags = 0;
1281 }
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001282 }
1283
1284 /* rw -> ro */
1285 if (!(mp->m_flags & XFS_MOUNT_RDONLY) && (*flags & MS_RDONLY)) {
David Chinnere9f1c6e2008-10-30 17:15:50 +11001286 xfs_quiesce_data(mp);
David Chinner76bf1052008-10-30 17:16:21 +11001287 xfs_quiesce_attr(mp);
Christoph Hellwig48b62a12008-05-20 11:30:39 +10001288 mp->m_flags |= XFS_MOUNT_RDONLY;
1289 }
1290
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001291 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292}
1293
Christoph Hellwig9909c4a2007-10-11 18:11:14 +10001294/*
1295 * Second stage of a freeze. The data is already frozen so we only
David Chinner76bf1052008-10-30 17:16:21 +11001296 * need to take care of the metadata. Once that's done write a dummy
Christoph Hellwig9909c4a2007-10-11 18:11:14 +10001297 * record to dirty the log in case of a crash while frozen.
1298 */
Takashi Satoc4be0c12009-01-09 16:40:58 -08001299STATIC int
1300xfs_fs_freeze(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 struct super_block *sb)
1302{
Christoph Hellwig9909c4a2007-10-11 18:11:14 +10001303 struct xfs_mount *mp = XFS_M(sb);
1304
David Chinner76bf1052008-10-30 17:16:21 +11001305 xfs_quiesce_attr(mp);
Takashi Satoc4be0c12009-01-09 16:40:58 -08001306 return -xfs_fs_log_dummy(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307}
1308
1309STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001310xfs_fs_show_options(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 struct seq_file *m,
1312 struct vfsmount *mnt)
1313{
Christoph Hellwig745f6912007-08-30 17:20:39 +10001314 return -xfs_showargs(XFS_M(mnt->mnt_sb), m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315}
1316
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001317/*
1318 * This function fills in xfs_mount_t fields based on mount args.
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001319 * Note: the superblock _has_ now been read in.
1320 */
1321STATIC int
1322xfs_finish_flags(
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001323 struct xfs_mount *mp)
1324{
1325 int ronly = (mp->m_flags & XFS_MOUNT_RDONLY);
1326
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02001327 /* Fail a mount where the logbuf is smaller than the log stripe */
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001328 if (xfs_sb_version_haslogv2(&mp->m_sb)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001329 if (mp->m_logbsize <= 0 &&
1330 mp->m_sb.sb_logsunit > XLOG_BIG_RECORD_BSIZE) {
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001331 mp->m_logbsize = mp->m_sb.sb_logsunit;
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001332 } else if (mp->m_logbsize > 0 &&
1333 mp->m_logbsize < mp->m_sb.sb_logsunit) {
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001334 cmn_err(CE_WARN,
1335 "XFS: logbuf size must be greater than or equal to log stripe size");
1336 return XFS_ERROR(EINVAL);
1337 }
1338 } else {
1339 /* Fail a mount if the logbuf is larger than 32K */
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001340 if (mp->m_logbsize > XLOG_BIG_RECORD_BSIZE) {
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001341 cmn_err(CE_WARN,
1342 "XFS: logbuf size for version 1 logs must be 16K or 32K");
1343 return XFS_ERROR(EINVAL);
1344 }
1345 }
1346
1347 /*
1348 * mkfs'ed attr2 will turn on attr2 mount unless explicitly
1349 * told by noattr2 to turn it off
1350 */
1351 if (xfs_sb_version_hasattr2(&mp->m_sb) &&
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001352 !(mp->m_flags & XFS_MOUNT_NOATTR2))
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001353 mp->m_flags |= XFS_MOUNT_ATTR2;
1354
1355 /*
1356 * prohibit r/w mounts of read-only filesystems
1357 */
1358 if ((mp->m_sb.sb_flags & XFS_SBF_READONLY) && !ronly) {
1359 cmn_err(CE_WARN,
1360 "XFS: cannot mount a read-only filesystem as read-write");
1361 return XFS_ERROR(EROFS);
1362 }
1363
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001364 return 0;
1365}
1366
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001368xfs_fs_fill_super(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 struct super_block *sb,
1370 void *data,
1371 int silent)
1372{
Christoph Hellwigf3dcc132008-03-27 18:00:54 +11001373 struct inode *root;
Christoph Hellwig745f6912007-08-30 17:20:39 +10001374 struct xfs_mount *mp = NULL;
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001375 int flags = 0, error = ENOMEM;
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001376 char *mtpt = NULL;
Christoph Hellwigbdd907b2008-05-20 15:10:44 +10001377
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001378 mp = kzalloc(sizeof(struct xfs_mount), GFP_KERNEL);
1379 if (!mp)
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001380 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001382 spin_lock_init(&mp->m_sb_lock);
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001383 mutex_init(&mp->m_growlock);
1384 atomic_set(&mp->m_active_trans, 0);
Christoph Hellwig74394492007-08-30 17:21:22 +10001385 INIT_LIST_HEAD(&mp->m_sync_list);
1386 spin_lock_init(&mp->m_sync_lock);
1387 init_waitqueue_head(&mp->m_wait_single_sync_task);
1388
Christoph Hellwigb267ce92007-08-30 17:21:30 +10001389 mp->m_super = sb;
1390 sb->s_fs_info = mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001392 error = xfs_parseargs(mp, (char *)data, &mtpt);
Christoph Hellwig745f6912007-08-30 17:20:39 +10001393 if (error)
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001394 goto out_free_fsname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
1396 sb_min_blocksize(sb, BBSIZE);
Lachlan McIlroy0ec58512008-06-23 13:23:01 +10001397 sb->s_xattr = xfs_xattr_handlers;
Nathan Scotta50cd262006-03-14 14:06:18 +11001398 sb->s_export_op = &xfs_export_operations;
Christoph Hellwigfcafb712009-02-09 08:47:34 +01001399#ifdef CONFIG_XFS_QUOTA
Nathan Scotta50cd262006-03-14 14:06:18 +11001400 sb->s_qcop = &xfs_quotactl_operations;
Christoph Hellwigfcafb712009-02-09 08:47:34 +01001401#endif
Nathan Scotta50cd262006-03-14 14:06:18 +11001402 sb->s_op = &xfs_super_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001404 error = xfs_dmops_get(mp);
Christoph Hellwig745f6912007-08-30 17:20:39 +10001405 if (error)
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001406 goto out_free_fsname;
1407 error = xfs_qmops_get(mp);
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001408 if (error)
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001409 goto out_put_dmops;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001410
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001411 if (silent)
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001412 flags |= XFS_MFSI_QUIET;
1413
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001414 error = xfs_open_devices(mp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001415 if (error)
1416 goto out_put_qmops;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001417
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001418 if (xfs_icsb_init_counters(mp))
1419 mp->m_flags |= XFS_MOUNT_NO_PERCPU_SB;
1420
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001421 error = xfs_readsb(mp, flags);
1422 if (error)
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001423 goto out_destroy_counters;
1424
1425 error = xfs_finish_flags(mp);
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001426 if (error)
Christoph Hellwigeffa2ed2008-05-20 15:11:05 +10001427 goto out_free_sb;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001428
Christoph Hellwige34b5622008-05-20 15:10:36 +10001429 error = xfs_setup_devices(mp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001430 if (error)
Christoph Hellwigeffa2ed2008-05-20 15:11:05 +10001431 goto out_free_sb;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001432
1433 if (mp->m_flags & XFS_MOUNT_BARRIER)
1434 xfs_mountfs_check_barriers(mp);
1435
1436 error = xfs_filestream_mount(mp);
1437 if (error)
Christoph Hellwigeffa2ed2008-05-20 15:11:05 +10001438 goto out_free_sb;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001439
Christoph Hellwig42490232008-08-13 16:49:32 +10001440 error = xfs_mountfs(mp);
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001441 if (error)
Christoph Hellwig120226c2008-05-20 15:11:11 +10001442 goto out_filestream_unmount;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001443
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001444 XFS_SEND_MOUNT(mp, DM_RIGHT_NULL, mtpt, mp->m_fsname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 sb->s_dirt = 1;
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001447 sb->s_magic = XFS_SB_MAGIC;
1448 sb->s_blocksize = mp->m_sb.sb_blocksize;
1449 sb->s_blocksize_bits = ffs(sb->s_blocksize) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 sb->s_maxbytes = xfs_max_file_offset(sb->s_blocksize_bits);
1451 sb->s_time_gran = 1;
1452 set_posix_acl_flag(sb);
1453
David Chinner01651642008-08-13 15:45:15 +10001454 root = igrab(VFS_I(mp->m_rootip));
Christoph Hellwigf3dcc132008-03-27 18:00:54 +11001455 if (!root) {
Christoph Hellwigcbc89dc2008-02-05 12:14:01 +11001456 error = ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 goto fail_unmount;
Christoph Hellwigcbc89dc2008-02-05 12:14:01 +11001458 }
Christoph Hellwigf3dcc132008-03-27 18:00:54 +11001459 if (is_bad_inode(root)) {
1460 error = EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 goto fail_vnrele;
1462 }
Christoph Hellwigf3dcc132008-03-27 18:00:54 +11001463 sb->s_root = d_alloc_root(root);
1464 if (!sb->s_root) {
1465 error = ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 goto fail_vnrele;
1467 }
Christoph Hellwig74394492007-08-30 17:21:22 +10001468
David Chinnera167b172008-10-30 17:06:18 +11001469 error = xfs_syncd_init(mp);
1470 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 goto fail_vnrele;
Christoph Hellwig74394492007-08-30 17:21:22 +10001472
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001473 kfree(mtpt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001475 xfs_itrace_exit(XFS_I(sb->s_root->d_inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 return 0;
1477
Christoph Hellwig120226c2008-05-20 15:11:11 +10001478 out_filestream_unmount:
1479 xfs_filestream_unmount(mp);
Christoph Hellwigeffa2ed2008-05-20 15:11:05 +10001480 out_free_sb:
1481 xfs_freesb(mp);
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001482 out_destroy_counters:
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001483 xfs_icsb_destroy_counters(mp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001484 xfs_close_devices(mp);
1485 out_put_qmops:
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001486 xfs_qmops_put(mp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001487 out_put_dmops:
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001488 xfs_dmops_put(mp);
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001489 out_free_fsname:
1490 xfs_free_fsname(mp);
1491 kfree(mtpt);
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001492 kfree(mp);
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001493 out:
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001494 return -error;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001495
1496 fail_vnrele:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 if (sb->s_root) {
1498 dput(sb->s_root);
1499 sb->s_root = NULL;
1500 } else {
Christoph Hellwigf3dcc132008-03-27 18:00:54 +11001501 iput(root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 }
1503
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001504 fail_unmount:
Christoph Hellwige48ad312008-05-20 11:30:52 +10001505 /*
1506 * Blow away any referenced inode in the filestreams cache.
1507 * This can and will cause log traffic as inodes go inactive
1508 * here.
1509 */
1510 xfs_filestream_unmount(mp);
1511
1512 XFS_bflush(mp->m_ddev_targp);
Christoph Hellwige48ad312008-05-20 11:30:52 +10001513
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001514 xfs_unmountfs(mp);
Christoph Hellwig62033002008-08-13 16:50:21 +10001515 goto out_free_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516}
1517
David Howells454e2392006-06-23 02:02:57 -07001518STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001519xfs_fs_get_sb(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 struct file_system_type *fs_type,
1521 int flags,
1522 const char *dev_name,
David Howells454e2392006-06-23 02:02:57 -07001523 void *data,
1524 struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525{
David Howells454e2392006-06-23 02:02:57 -07001526 return get_sb_bdev(fs_type, flags, dev_name, data, xfs_fs_fill_super,
1527 mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528}
1529
David Chinner7989cb82007-02-10 18:34:56 +11001530static struct super_operations xfs_super_operations = {
Nathan Scotta50cd262006-03-14 14:06:18 +11001531 .alloc_inode = xfs_fs_alloc_inode,
1532 .destroy_inode = xfs_fs_destroy_inode,
1533 .write_inode = xfs_fs_write_inode,
1534 .clear_inode = xfs_fs_clear_inode,
1535 .put_super = xfs_fs_put_super,
1536 .write_super = xfs_fs_write_super,
1537 .sync_fs = xfs_fs_sync_super,
Takashi Satoc4be0c12009-01-09 16:40:58 -08001538 .freeze_fs = xfs_fs_freeze,
Nathan Scotta50cd262006-03-14 14:06:18 +11001539 .statfs = xfs_fs_statfs,
1540 .remount_fs = xfs_fs_remount,
1541 .show_options = xfs_fs_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542};
1543
Andrew Morton5085b602007-02-20 13:57:47 -08001544static struct file_system_type xfs_fs_type = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 .owner = THIS_MODULE,
1546 .name = "xfs",
Nathan Scotta50cd262006-03-14 14:06:18 +11001547 .get_sb = xfs_fs_get_sb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 .kill_sb = kill_block_super,
1549 .fs_flags = FS_REQUIRES_DEV,
1550};
1551
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001552STATIC int __init
1553xfs_alloc_trace_bufs(void)
1554{
1555#ifdef XFS_ALLOC_TRACE
1556 xfs_alloc_trace_buf = ktrace_alloc(XFS_ALLOC_TRACE_SIZE, KM_MAYFAIL);
1557 if (!xfs_alloc_trace_buf)
1558 goto out;
1559#endif
1560#ifdef XFS_BMAP_TRACE
1561 xfs_bmap_trace_buf = ktrace_alloc(XFS_BMAP_TRACE_SIZE, KM_MAYFAIL);
1562 if (!xfs_bmap_trace_buf)
1563 goto out_free_alloc_trace;
1564#endif
Christoph Hellwig8c4ed632008-10-30 16:55:13 +11001565#ifdef XFS_BTREE_TRACE
1566 xfs_allocbt_trace_buf = ktrace_alloc(XFS_ALLOCBT_TRACE_SIZE,
1567 KM_MAYFAIL);
1568 if (!xfs_allocbt_trace_buf)
1569 goto out_free_bmap_trace;
1570
1571 xfs_inobt_trace_buf = ktrace_alloc(XFS_INOBT_TRACE_SIZE, KM_MAYFAIL);
1572 if (!xfs_inobt_trace_buf)
1573 goto out_free_allocbt_trace;
1574
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001575 xfs_bmbt_trace_buf = ktrace_alloc(XFS_BMBT_TRACE_SIZE, KM_MAYFAIL);
1576 if (!xfs_bmbt_trace_buf)
Christoph Hellwig8c4ed632008-10-30 16:55:13 +11001577 goto out_free_inobt_trace;
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001578#endif
1579#ifdef XFS_ATTR_TRACE
1580 xfs_attr_trace_buf = ktrace_alloc(XFS_ATTR_TRACE_SIZE, KM_MAYFAIL);
1581 if (!xfs_attr_trace_buf)
1582 goto out_free_bmbt_trace;
1583#endif
1584#ifdef XFS_DIR2_TRACE
1585 xfs_dir2_trace_buf = ktrace_alloc(XFS_DIR2_GTRACE_SIZE, KM_MAYFAIL);
1586 if (!xfs_dir2_trace_buf)
1587 goto out_free_attr_trace;
1588#endif
1589
1590 return 0;
1591
1592#ifdef XFS_DIR2_TRACE
1593 out_free_attr_trace:
1594#endif
1595#ifdef XFS_ATTR_TRACE
1596 ktrace_free(xfs_attr_trace_buf);
1597 out_free_bmbt_trace:
1598#endif
Christoph Hellwig8c4ed632008-10-30 16:55:13 +11001599#ifdef XFS_BTREE_TRACE
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001600 ktrace_free(xfs_bmbt_trace_buf);
Christoph Hellwig8c4ed632008-10-30 16:55:13 +11001601 out_free_inobt_trace:
1602 ktrace_free(xfs_inobt_trace_buf);
1603 out_free_allocbt_trace:
1604 ktrace_free(xfs_allocbt_trace_buf);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001605 out_free_bmap_trace:
1606#endif
1607#ifdef XFS_BMAP_TRACE
1608 ktrace_free(xfs_bmap_trace_buf);
1609 out_free_alloc_trace:
1610#endif
1611#ifdef XFS_ALLOC_TRACE
1612 ktrace_free(xfs_alloc_trace_buf);
1613 out:
1614#endif
1615 return -ENOMEM;
1616}
1617
1618STATIC void
1619xfs_free_trace_bufs(void)
1620{
1621#ifdef XFS_DIR2_TRACE
1622 ktrace_free(xfs_dir2_trace_buf);
1623#endif
1624#ifdef XFS_ATTR_TRACE
1625 ktrace_free(xfs_attr_trace_buf);
1626#endif
Christoph Hellwig8c4ed632008-10-30 16:55:13 +11001627#ifdef XFS_BTREE_TRACE
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001628 ktrace_free(xfs_bmbt_trace_buf);
Christoph Hellwig8c4ed632008-10-30 16:55:13 +11001629 ktrace_free(xfs_inobt_trace_buf);
1630 ktrace_free(xfs_allocbt_trace_buf);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001631#endif
1632#ifdef XFS_BMAP_TRACE
1633 ktrace_free(xfs_bmap_trace_buf);
1634#endif
1635#ifdef XFS_ALLOC_TRACE
1636 ktrace_free(xfs_alloc_trace_buf);
1637#endif
1638}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639
1640STATIC int __init
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001641xfs_init_zones(void)
1642{
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001643
1644 xfs_ioend_zone = kmem_zone_init(sizeof(xfs_ioend_t), "xfs_ioend");
1645 if (!xfs_ioend_zone)
David Chinnerbf904242008-10-30 17:36:14 +11001646 goto out;
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001647
1648 xfs_ioend_pool = mempool_create_slab_pool(4 * MAX_BUF_PER_PAGE,
1649 xfs_ioend_zone);
1650 if (!xfs_ioend_pool)
1651 goto out_destroy_ioend_zone;
1652
1653 xfs_log_ticket_zone = kmem_zone_init(sizeof(xlog_ticket_t),
1654 "xfs_log_ticket");
1655 if (!xfs_log_ticket_zone)
1656 goto out_destroy_ioend_pool;
1657
1658 xfs_bmap_free_item_zone = kmem_zone_init(sizeof(xfs_bmap_free_item_t),
1659 "xfs_bmap_free_item");
1660 if (!xfs_bmap_free_item_zone)
1661 goto out_destroy_log_ticket_zone;
David Chinnerbf904242008-10-30 17:36:14 +11001662
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001663 xfs_btree_cur_zone = kmem_zone_init(sizeof(xfs_btree_cur_t),
1664 "xfs_btree_cur");
1665 if (!xfs_btree_cur_zone)
1666 goto out_destroy_bmap_free_item_zone;
1667
1668 xfs_da_state_zone = kmem_zone_init(sizeof(xfs_da_state_t),
1669 "xfs_da_state");
1670 if (!xfs_da_state_zone)
1671 goto out_destroy_btree_cur_zone;
1672
1673 xfs_dabuf_zone = kmem_zone_init(sizeof(xfs_dabuf_t), "xfs_dabuf");
1674 if (!xfs_dabuf_zone)
1675 goto out_destroy_da_state_zone;
1676
1677 xfs_ifork_zone = kmem_zone_init(sizeof(xfs_ifork_t), "xfs_ifork");
1678 if (!xfs_ifork_zone)
1679 goto out_destroy_dabuf_zone;
1680
1681 xfs_trans_zone = kmem_zone_init(sizeof(xfs_trans_t), "xfs_trans");
1682 if (!xfs_trans_zone)
1683 goto out_destroy_ifork_zone;
1684
1685 /*
1686 * The size of the zone allocated buf log item is the maximum
1687 * size possible under XFS. This wastes a little bit of memory,
1688 * but it is much faster.
1689 */
1690 xfs_buf_item_zone = kmem_zone_init((sizeof(xfs_buf_log_item_t) +
1691 (((XFS_MAX_BLOCKSIZE / XFS_BLI_CHUNK) /
1692 NBWORD) * sizeof(int))), "xfs_buf_item");
1693 if (!xfs_buf_item_zone)
1694 goto out_destroy_trans_zone;
1695
1696 xfs_efd_zone = kmem_zone_init((sizeof(xfs_efd_log_item_t) +
1697 ((XFS_EFD_MAX_FAST_EXTENTS - 1) *
1698 sizeof(xfs_extent_t))), "xfs_efd_item");
1699 if (!xfs_efd_zone)
1700 goto out_destroy_buf_item_zone;
1701
1702 xfs_efi_zone = kmem_zone_init((sizeof(xfs_efi_log_item_t) +
1703 ((XFS_EFI_MAX_FAST_EXTENTS - 1) *
1704 sizeof(xfs_extent_t))), "xfs_efi_item");
1705 if (!xfs_efi_zone)
1706 goto out_destroy_efd_zone;
1707
1708 xfs_inode_zone =
1709 kmem_zone_init_flags(sizeof(xfs_inode_t), "xfs_inode",
David Chinnerbf904242008-10-30 17:36:14 +11001710 KM_ZONE_HWALIGN | KM_ZONE_RECLAIM | KM_ZONE_SPREAD,
1711 xfs_fs_inode_init_once);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001712 if (!xfs_inode_zone)
1713 goto out_destroy_efi_zone;
1714
1715 xfs_ili_zone =
1716 kmem_zone_init_flags(sizeof(xfs_inode_log_item_t), "xfs_ili",
1717 KM_ZONE_SPREAD, NULL);
1718 if (!xfs_ili_zone)
1719 goto out_destroy_inode_zone;
1720
1721#ifdef CONFIG_XFS_POSIX_ACL
1722 xfs_acl_zone = kmem_zone_init(sizeof(xfs_acl_t), "xfs_acl");
1723 if (!xfs_acl_zone)
1724 goto out_destroy_ili_zone;
1725#endif
1726
1727 return 0;
1728
1729#ifdef CONFIG_XFS_POSIX_ACL
1730 out_destroy_ili_zone:
1731#endif
1732 kmem_zone_destroy(xfs_ili_zone);
1733 out_destroy_inode_zone:
1734 kmem_zone_destroy(xfs_inode_zone);
1735 out_destroy_efi_zone:
1736 kmem_zone_destroy(xfs_efi_zone);
1737 out_destroy_efd_zone:
1738 kmem_zone_destroy(xfs_efd_zone);
1739 out_destroy_buf_item_zone:
1740 kmem_zone_destroy(xfs_buf_item_zone);
1741 out_destroy_trans_zone:
1742 kmem_zone_destroy(xfs_trans_zone);
1743 out_destroy_ifork_zone:
1744 kmem_zone_destroy(xfs_ifork_zone);
1745 out_destroy_dabuf_zone:
1746 kmem_zone_destroy(xfs_dabuf_zone);
1747 out_destroy_da_state_zone:
1748 kmem_zone_destroy(xfs_da_state_zone);
1749 out_destroy_btree_cur_zone:
1750 kmem_zone_destroy(xfs_btree_cur_zone);
1751 out_destroy_bmap_free_item_zone:
1752 kmem_zone_destroy(xfs_bmap_free_item_zone);
1753 out_destroy_log_ticket_zone:
1754 kmem_zone_destroy(xfs_log_ticket_zone);
1755 out_destroy_ioend_pool:
1756 mempool_destroy(xfs_ioend_pool);
1757 out_destroy_ioend_zone:
1758 kmem_zone_destroy(xfs_ioend_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001759 out:
1760 return -ENOMEM;
1761}
1762
1763STATIC void
1764xfs_destroy_zones(void)
1765{
1766#ifdef CONFIG_XFS_POSIX_ACL
1767 kmem_zone_destroy(xfs_acl_zone);
1768#endif
1769 kmem_zone_destroy(xfs_ili_zone);
1770 kmem_zone_destroy(xfs_inode_zone);
1771 kmem_zone_destroy(xfs_efi_zone);
1772 kmem_zone_destroy(xfs_efd_zone);
1773 kmem_zone_destroy(xfs_buf_item_zone);
1774 kmem_zone_destroy(xfs_trans_zone);
1775 kmem_zone_destroy(xfs_ifork_zone);
1776 kmem_zone_destroy(xfs_dabuf_zone);
1777 kmem_zone_destroy(xfs_da_state_zone);
1778 kmem_zone_destroy(xfs_btree_cur_zone);
1779 kmem_zone_destroy(xfs_bmap_free_item_zone);
1780 kmem_zone_destroy(xfs_log_ticket_zone);
1781 mempool_destroy(xfs_ioend_pool);
1782 kmem_zone_destroy(xfs_ioend_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001783
1784}
1785
1786STATIC int __init
1787init_xfs_fs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788{
1789 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790
Christoph Hellwig65795912008-11-28 14:23:33 +11001791 printk(KERN_INFO XFS_VERSION_STRING " with "
1792 XFS_BUILD_OPTIONS " enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 ktrace_init(64);
Christoph Hellwig25e41b32008-12-03 12:20:39 +01001795 xfs_ioend_init();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001796 xfs_dir_startup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797
Nathan Scott87582802006-03-14 13:18:19 +11001798 error = xfs_init_zones();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001799 if (error)
1800 goto out;
1801
1802 error = xfs_alloc_trace_bufs();
1803 if (error)
1804 goto out_destroy_zones;
1805
1806 error = xfs_mru_cache_init();
1807 if (error)
1808 goto out_free_trace_buffers;
1809
1810 error = xfs_filestream_init();
1811 if (error)
1812 goto out_mru_cache_uninit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813
Nathan Scottce8e9222006-01-11 15:39:08 +11001814 error = xfs_buf_init();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001815 if (error)
1816 goto out_filestream_uninit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001818 error = xfs_init_procfs();
1819 if (error)
1820 goto out_buf_terminate;
1821
1822 error = xfs_sysctl_register();
1823 if (error)
1824 goto out_cleanup_procfs;
1825
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 vfs_initquota();
1827
1828 error = register_filesystem(&xfs_fs_type);
1829 if (error)
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001830 goto out_sysctl_unregister;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 return 0;
1832
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001833 out_sysctl_unregister:
1834 xfs_sysctl_unregister();
1835 out_cleanup_procfs:
1836 xfs_cleanup_procfs();
1837 out_buf_terminate:
Nathan Scottce8e9222006-01-11 15:39:08 +11001838 xfs_buf_terminate();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001839 out_filestream_uninit:
1840 xfs_filestream_uninit();
1841 out_mru_cache_uninit:
1842 xfs_mru_cache_uninit();
1843 out_free_trace_buffers:
1844 xfs_free_trace_bufs();
1845 out_destroy_zones:
Nathan Scott87582802006-03-14 13:18:19 +11001846 xfs_destroy_zones();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001847 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 return error;
1849}
1850
1851STATIC void __exit
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001852exit_xfs_fs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853{
1854 vfs_exitquota();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 unregister_filesystem(&xfs_fs_type);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001856 xfs_sysctl_unregister();
1857 xfs_cleanup_procfs();
Nathan Scottce8e9222006-01-11 15:39:08 +11001858 xfs_buf_terminate();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001859 xfs_filestream_uninit();
1860 xfs_mru_cache_uninit();
1861 xfs_free_trace_bufs();
Nathan Scott87582802006-03-14 13:18:19 +11001862 xfs_destroy_zones();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 ktrace_uninit();
1864}
1865
1866module_init(init_xfs_fs);
1867module_exit(exit_xfs_fs);
1868
1869MODULE_AUTHOR("Silicon Graphics, Inc.");
1870MODULE_DESCRIPTION(XFS_VERSION_STRING " with " XFS_BUILD_OPTIONS " enabled");
1871MODULE_LICENSE("GPL");