blob: 8f117db6070e627c9ed5ad8edc7830d5d5666df4 [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 */
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000018
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110020#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "xfs_log.h"
Nathan Scotta844f452005-11-02 14:38:42 +110022#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "xfs_trans.h"
24#include "xfs_sb.h"
Nathan Scotta844f452005-11-02 14:38:42 +110025#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_dir2.h"
27#include "xfs_alloc.h"
28#include "xfs_dmapi.h"
29#include "xfs_quota.h"
30#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_bmap_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110032#include "xfs_alloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "xfs_ialloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_dir2_sf.h"
Nathan Scotta844f452005-11-02 14:38:42 +110035#include "xfs_attr_sf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "xfs_dinode.h"
37#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110038#include "xfs_btree.h"
Christoph Hellwig8c4ed632008-10-30 16:55:13 +110039#include "xfs_btree_trace.h"
Nathan Scotta844f452005-11-02 14:38:42 +110040#include "xfs_ialloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include "xfs_bmap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include "xfs_rtalloc.h"
43#include "xfs_error.h"
44#include "xfs_itable.h"
Christoph Hellwig9909c4a2007-10-11 18:11:14 +100045#include "xfs_fsops.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include "xfs_rw.h"
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"
Christoph Hellwig9f8868f2008-07-18 17:11:46 +100056#include "xfs_extfree_item.h"
57#include "xfs_mru_cache.h"
58#include "xfs_inode_item.h"
David Chinnerfe4fa4b2008-10-30 17:06:08 +110059#include "xfs_sync.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000060#include "xfs_trace.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
Alexey Dobriyanb87221d2009-09-21 17:01:09 -070071static const 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 Hellwig7d095252009-06-08 15:33:32 +0200408#ifndef CONFIG_XFS_QUOTA
409 if (XFS_IS_QUOTA_RUNNING(mp)) {
410 cmn_err(CE_WARN,
411 "XFS: quota support not available in this kernel.");
412 return EINVAL;
413 }
414#endif
415
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100416 if ((mp->m_qflags & (XFS_GQUOTA_ACCT | XFS_GQUOTA_ACTIVE)) &&
417 (mp->m_qflags & (XFS_PQUOTA_ACCT | XFS_PQUOTA_ACTIVE))) {
David Chinnera67d7c52007-11-23 16:29:32 +1100418 cmn_err(CE_WARN,
419 "XFS: cannot mount with both project and group quota");
420 return EINVAL;
421 }
422
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100423 if ((mp->m_flags & XFS_MOUNT_DMAPI) && (!*mtpt || *mtpt[0] == '\0')) {
David Chinnera67d7c52007-11-23 16:29:32 +1100424 printk("XFS: %s option needs the mount point option as well\n",
425 MNTOPT_DMAPI);
426 return EINVAL;
427 }
428
429 if ((dsunit && !dswidth) || (!dsunit && dswidth)) {
430 cmn_err(CE_WARN,
431 "XFS: sunit and swidth must be specified together");
432 return EINVAL;
433 }
434
435 if (dsunit && (dswidth % dsunit != 0)) {
436 cmn_err(CE_WARN,
437 "XFS: stripe width (%d) must be a multiple of the stripe unit (%d)",
438 dswidth, dsunit);
439 return EINVAL;
440 }
441
442 /*
443 * Applications using DMI filesystems often expect the
444 * inode generation number to be monotonically increasing.
445 * If we delete inode chunks we break this assumption, so
446 * keep unused inode chunks on disk for DMI filesystems
447 * until we come up with a better solution.
448 * Note that if "ikeep" or "noikeep" mount options are
449 * supplied, then they are honored.
450 */
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100451 if ((mp->m_flags & XFS_MOUNT_DMAPI) && dmapi_implies_ikeep)
452 mp->m_flags |= XFS_MOUNT_IKEEP;
David Chinnera67d7c52007-11-23 16:29:32 +1100453
454done:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100455 if (!(mp->m_flags & XFS_MOUNT_NOALIGN)) {
456 /*
457 * At this point the superblock has not been read
458 * in, therefore we do not know the block size.
459 * Before the mount call ends we will convert
460 * these to FSBs.
461 */
462 if (dsunit) {
463 mp->m_dalign = dsunit;
464 mp->m_flags |= XFS_MOUNT_RETERR;
465 }
466
467 if (dswidth)
468 mp->m_swidth = dswidth;
469 }
470
471 if (mp->m_logbufs != -1 &&
472 mp->m_logbufs != 0 &&
473 (mp->m_logbufs < XLOG_MIN_ICLOGS ||
474 mp->m_logbufs > XLOG_MAX_ICLOGS)) {
475 cmn_err(CE_WARN,
476 "XFS: invalid logbufs value: %d [not %d-%d]",
477 mp->m_logbufs, XLOG_MIN_ICLOGS, XLOG_MAX_ICLOGS);
478 return XFS_ERROR(EINVAL);
479 }
480 if (mp->m_logbsize != -1 &&
481 mp->m_logbsize != 0 &&
482 (mp->m_logbsize < XLOG_MIN_RECORD_BSIZE ||
483 mp->m_logbsize > XLOG_MAX_RECORD_BSIZE ||
484 !is_power_of_2(mp->m_logbsize))) {
485 cmn_err(CE_WARN,
486 "XFS: invalid logbufsize: %d [not 16k,32k,64k,128k or 256k]",
487 mp->m_logbsize);
488 return XFS_ERROR(EINVAL);
489 }
490
491 mp->m_fsname = kstrndup(sb->s_id, MAXNAMELEN, GFP_KERNEL);
492 if (!mp->m_fsname)
493 return ENOMEM;
494 mp->m_fsname_len = strlen(mp->m_fsname) + 1;
495
496 if (iosizelog) {
497 if (iosizelog > XFS_MAX_IO_LOG ||
498 iosizelog < XFS_MIN_IO_LOG) {
499 cmn_err(CE_WARN,
500 "XFS: invalid log iosize: %d [not %d-%d]",
501 iosizelog, XFS_MIN_IO_LOG,
502 XFS_MAX_IO_LOG);
503 return XFS_ERROR(EINVAL);
504 }
505
506 mp->m_flags |= XFS_MOUNT_DFLT_IOSIZE;
507 mp->m_readio_log = iosizelog;
508 mp->m_writeio_log = iosizelog;
509 }
510
David Chinnera67d7c52007-11-23 16:29:32 +1100511 return 0;
512}
513
514struct proc_xfs_info {
515 int flag;
516 char *str;
517};
518
519STATIC int
520xfs_showargs(
521 struct xfs_mount *mp,
522 struct seq_file *m)
523{
524 static struct proc_xfs_info xfs_info_set[] = {
525 /* the few simple ones we can get from the mount struct */
Josef Jeff Sipek1bd960e2008-02-29 13:58:40 +1100526 { XFS_MOUNT_IKEEP, "," MNTOPT_IKEEP },
David Chinnera67d7c52007-11-23 16:29:32 +1100527 { XFS_MOUNT_WSYNC, "," MNTOPT_WSYNC },
David Chinnera67d7c52007-11-23 16:29:32 +1100528 { XFS_MOUNT_NOALIGN, "," MNTOPT_NOALIGN },
529 { XFS_MOUNT_SWALLOC, "," MNTOPT_SWALLOC },
530 { XFS_MOUNT_NOUUID, "," MNTOPT_NOUUID },
531 { XFS_MOUNT_NORECOVERY, "," MNTOPT_NORECOVERY },
532 { XFS_MOUNT_OSYNCISOSYNC, "," MNTOPT_OSYNCISOSYNC },
533 { XFS_MOUNT_ATTR2, "," MNTOPT_ATTR2 },
534 { XFS_MOUNT_FILESTREAMS, "," MNTOPT_FILESTREAM },
535 { XFS_MOUNT_DMAPI, "," MNTOPT_DMAPI },
536 { XFS_MOUNT_GRPID, "," MNTOPT_GRPID },
537 { 0, NULL }
538 };
539 static struct proc_xfs_info xfs_info_unset[] = {
540 /* the few simple ones we can get from the mount struct */
David Chinnera67d7c52007-11-23 16:29:32 +1100541 { XFS_MOUNT_COMPAT_IOSIZE, "," MNTOPT_LARGEIO },
542 { XFS_MOUNT_BARRIER, "," MNTOPT_NOBARRIER },
543 { XFS_MOUNT_SMALL_INUMS, "," MNTOPT_64BITINODE },
544 { 0, NULL }
545 };
546 struct proc_xfs_info *xfs_infop;
547
548 for (xfs_infop = xfs_info_set; xfs_infop->flag; xfs_infop++) {
549 if (mp->m_flags & xfs_infop->flag)
550 seq_puts(m, xfs_infop->str);
551 }
552 for (xfs_infop = xfs_info_unset; xfs_infop->flag; xfs_infop++) {
553 if (!(mp->m_flags & xfs_infop->flag))
554 seq_puts(m, xfs_infop->str);
555 }
556
557 if (mp->m_flags & XFS_MOUNT_DFLT_IOSIZE)
558 seq_printf(m, "," MNTOPT_ALLOCSIZE "=%dk",
559 (int)(1 << mp->m_writeio_log) >> 10);
560
561 if (mp->m_logbufs > 0)
562 seq_printf(m, "," MNTOPT_LOGBUFS "=%d", mp->m_logbufs);
563 if (mp->m_logbsize > 0)
564 seq_printf(m, "," MNTOPT_LOGBSIZE "=%dk", mp->m_logbsize >> 10);
565
566 if (mp->m_logname)
567 seq_printf(m, "," MNTOPT_LOGDEV "=%s", mp->m_logname);
568 if (mp->m_rtname)
569 seq_printf(m, "," MNTOPT_RTDEV "=%s", mp->m_rtname);
570
571 if (mp->m_dalign > 0)
572 seq_printf(m, "," MNTOPT_SUNIT "=%d",
573 (int)XFS_FSB_TO_BB(mp, mp->m_dalign));
574 if (mp->m_swidth > 0)
575 seq_printf(m, "," MNTOPT_SWIDTH "=%d",
576 (int)XFS_FSB_TO_BB(mp, mp->m_swidth));
577
578 if (mp->m_qflags & (XFS_UQUOTA_ACCT|XFS_UQUOTA_ENFD))
579 seq_puts(m, "," MNTOPT_USRQUOTA);
580 else if (mp->m_qflags & XFS_UQUOTA_ACCT)
581 seq_puts(m, "," MNTOPT_UQUOTANOENF);
582
Alex Elder988abe42009-09-02 17:02:24 -0500583 /* Either project or group quotas can be active, not both */
David Chinnera67d7c52007-11-23 16:29:32 +1100584
Alex Elder988abe42009-09-02 17:02:24 -0500585 if (mp->m_qflags & XFS_PQUOTA_ACCT) {
586 if (mp->m_qflags & XFS_OQUOTA_ENFD)
587 seq_puts(m, "," MNTOPT_PRJQUOTA);
588 else
589 seq_puts(m, "," MNTOPT_PQUOTANOENF);
590 } else if (mp->m_qflags & XFS_GQUOTA_ACCT) {
591 if (mp->m_qflags & XFS_OQUOTA_ENFD)
592 seq_puts(m, "," MNTOPT_GRPQUOTA);
593 else
594 seq_puts(m, "," MNTOPT_GQUOTANOENF);
595 }
David Chinnera67d7c52007-11-23 16:29:32 +1100596
597 if (!(mp->m_qflags & XFS_ALL_QUOTA_ACCT))
598 seq_puts(m, "," MNTOPT_NOQUOTA);
599
600 return 0;
601}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602__uint64_t
603xfs_max_file_offset(
604 unsigned int blockshift)
605{
606 unsigned int pagefactor = 1;
607 unsigned int bitshift = BITS_PER_LONG - 1;
608
609 /* Figure out maximum filesize, on Linux this can depend on
610 * the filesystem blocksize (on 32 bit platforms).
611 * __block_prepare_write does this in an [unsigned] long...
612 * page->index << (PAGE_CACHE_SHIFT - bbits)
613 * So, for page sized blocks (4K on 32 bit platforms),
614 * this wraps at around 8Tb (hence MAX_LFS_FILESIZE which is
615 * (((u64)PAGE_CACHE_SIZE << (BITS_PER_LONG-1))-1)
616 * but for smaller blocksizes it is less (bbits = log2 bsize).
617 * Note1: get_block_t takes a long (implicit cast from above)
618 * Note2: The Large Block Device (LBD and HAVE_SECTOR_T) patch
619 * can optionally convert the [unsigned] long from above into
620 * an [unsigned] long long.
621 */
622
623#if BITS_PER_LONG == 32
Bartlomiej Zolnierkiewicz90c699a2009-06-19 08:08:50 +0200624# if defined(CONFIG_LBDAF)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 ASSERT(sizeof(sector_t) == 8);
626 pagefactor = PAGE_CACHE_SIZE;
627 bitshift = BITS_PER_LONG;
628# else
629 pagefactor = PAGE_CACHE_SIZE >> (PAGE_CACHE_SHIFT - blockshift);
630# endif
631#endif
632
633 return (((__uint64_t)pagefactor) << bitshift) - 1;
634}
635
Hannes Eder3180e662009-03-04 19:34:10 +0100636STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637xfs_blkdev_get(
638 xfs_mount_t *mp,
639 const char *name,
640 struct block_device **bdevp)
641{
642 int error = 0;
643
Al Viro30c40d22008-02-22 19:50:45 -0500644 *bdevp = open_bdev_exclusive(name, FMODE_READ|FMODE_WRITE, mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 if (IS_ERR(*bdevp)) {
646 error = PTR_ERR(*bdevp);
647 printk("XFS: Invalid device [%s], error=%d\n", name, error);
648 }
649
650 return -error;
651}
652
Hannes Eder3180e662009-03-04 19:34:10 +0100653STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654xfs_blkdev_put(
655 struct block_device *bdev)
656{
657 if (bdev)
Al Viro30c40d22008-02-22 19:50:45 -0500658 close_bdev_exclusive(bdev, FMODE_READ|FMODE_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659}
660
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100661/*
662 * Try to write out the superblock using barriers.
663 */
664STATIC int
665xfs_barrier_test(
666 xfs_mount_t *mp)
667{
668 xfs_buf_t *sbp = xfs_getsb(mp, 0);
669 int error;
670
671 XFS_BUF_UNDONE(sbp);
672 XFS_BUF_UNREAD(sbp);
673 XFS_BUF_UNDELAYWRITE(sbp);
674 XFS_BUF_WRITE(sbp);
675 XFS_BUF_UNASYNC(sbp);
676 XFS_BUF_ORDERED(sbp);
677
678 xfsbdstrat(mp, sbp);
679 error = xfs_iowait(sbp);
680
681 /*
682 * Clear all the flags we set and possible error state in the
683 * buffer. We only did the write to try out whether barriers
684 * worked and shouldn't leave any traces in the superblock
685 * buffer.
686 */
687 XFS_BUF_DONE(sbp);
688 XFS_BUF_ERROR(sbp, 0);
689 XFS_BUF_UNORDERED(sbp);
690
691 xfs_buf_relse(sbp);
692 return error;
693}
694
Eric Sandeend96f8f82009-07-02 00:09:33 -0500695STATIC void
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100696xfs_mountfs_check_barriers(xfs_mount_t *mp)
697{
698 int error;
699
700 if (mp->m_logdev_targp != mp->m_ddev_targp) {
701 xfs_fs_cmn_err(CE_NOTE, mp,
702 "Disabling barriers, not supported with external log device");
703 mp->m_flags &= ~XFS_MOUNT_BARRIER;
Christoph Hellwig4ef19dd2006-01-11 15:27:18 +1100704 return;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100705 }
706
Nathan Scottb2ea4012006-07-28 17:05:13 +1000707 if (xfs_readonly_buftarg(mp->m_ddev_targp)) {
708 xfs_fs_cmn_err(CE_NOTE, mp,
709 "Disabling barriers, underlying device is readonly");
710 mp->m_flags &= ~XFS_MOUNT_BARRIER;
711 return;
712 }
713
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100714 error = xfs_barrier_test(mp);
715 if (error) {
716 xfs_fs_cmn_err(CE_NOTE, mp,
717 "Disabling barriers, trial barrier write failed");
718 mp->m_flags &= ~XFS_MOUNT_BARRIER;
Christoph Hellwig4ef19dd2006-01-11 15:27:18 +1100719 return;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100720 }
721}
722
723void
724xfs_blkdev_issue_flush(
725 xfs_buftarg_t *buftarg)
726{
Nathan Scottce8e9222006-01-11 15:39:08 +1100727 blkdev_issue_flush(buftarg->bt_bdev, NULL);
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100728}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000730STATIC void
731xfs_close_devices(
732 struct xfs_mount *mp)
733{
734 if (mp->m_logdev_targp && mp->m_logdev_targp != mp->m_ddev_targp) {
Lachlan McIlroyc032bfc2008-07-18 17:13:12 +1000735 struct block_device *logdev = mp->m_logdev_targp->bt_bdev;
Christoph Hellwigb7963132009-03-03 14:48:37 -0500736 xfs_free_buftarg(mp, mp->m_logdev_targp);
Lachlan McIlroyc032bfc2008-07-18 17:13:12 +1000737 xfs_blkdev_put(logdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000738 }
739 if (mp->m_rtdev_targp) {
Lachlan McIlroyc032bfc2008-07-18 17:13:12 +1000740 struct block_device *rtdev = mp->m_rtdev_targp->bt_bdev;
Christoph Hellwigb7963132009-03-03 14:48:37 -0500741 xfs_free_buftarg(mp, mp->m_rtdev_targp);
Lachlan McIlroyc032bfc2008-07-18 17:13:12 +1000742 xfs_blkdev_put(rtdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000743 }
Christoph Hellwigb7963132009-03-03 14:48:37 -0500744 xfs_free_buftarg(mp, mp->m_ddev_targp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000745}
746
747/*
748 * The file system configurations are:
749 * (1) device (partition) with data and internal log
750 * (2) logical volume with data and log subvolumes.
751 * (3) logical volume with data, log, and realtime subvolumes.
752 *
753 * We only have to handle opening the log and realtime volumes here if
754 * they are present. The data subvolume has already been opened by
755 * get_sb_bdev() and is stored in sb->s_bdev.
756 */
757STATIC int
758xfs_open_devices(
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100759 struct xfs_mount *mp)
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000760{
761 struct block_device *ddev = mp->m_super->s_bdev;
762 struct block_device *logdev = NULL, *rtdev = NULL;
763 int error;
764
765 /*
766 * Open real time and log devices - order is important.
767 */
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100768 if (mp->m_logname) {
769 error = xfs_blkdev_get(mp, mp->m_logname, &logdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000770 if (error)
771 goto out;
772 }
773
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100774 if (mp->m_rtname) {
775 error = xfs_blkdev_get(mp, mp->m_rtname, &rtdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000776 if (error)
777 goto out_close_logdev;
778
779 if (rtdev == ddev || rtdev == logdev) {
780 cmn_err(CE_WARN,
781 "XFS: Cannot mount filesystem with identical rtdev and ddev/logdev.");
782 error = EINVAL;
783 goto out_close_rtdev;
784 }
785 }
786
787 /*
788 * Setup xfs_mount buffer target pointers
789 */
790 error = ENOMEM;
791 mp->m_ddev_targp = xfs_alloc_buftarg(ddev, 0);
792 if (!mp->m_ddev_targp)
793 goto out_close_rtdev;
794
795 if (rtdev) {
796 mp->m_rtdev_targp = xfs_alloc_buftarg(rtdev, 1);
797 if (!mp->m_rtdev_targp)
798 goto out_free_ddev_targ;
799 }
800
801 if (logdev && logdev != ddev) {
802 mp->m_logdev_targp = xfs_alloc_buftarg(logdev, 1);
803 if (!mp->m_logdev_targp)
804 goto out_free_rtdev_targ;
805 } else {
806 mp->m_logdev_targp = mp->m_ddev_targp;
807 }
808
809 return 0;
810
811 out_free_rtdev_targ:
812 if (mp->m_rtdev_targp)
Christoph Hellwigb7963132009-03-03 14:48:37 -0500813 xfs_free_buftarg(mp, mp->m_rtdev_targp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000814 out_free_ddev_targ:
Christoph Hellwigb7963132009-03-03 14:48:37 -0500815 xfs_free_buftarg(mp, mp->m_ddev_targp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000816 out_close_rtdev:
817 if (rtdev)
818 xfs_blkdev_put(rtdev);
819 out_close_logdev:
820 if (logdev && logdev != ddev)
821 xfs_blkdev_put(logdev);
822 out:
823 return error;
824}
825
Christoph Hellwige34b5622008-05-20 15:10:36 +1000826/*
827 * Setup xfs_mount buffer target pointers based on superblock
828 */
829STATIC int
830xfs_setup_devices(
831 struct xfs_mount *mp)
832{
833 int error;
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000834
Christoph Hellwige34b5622008-05-20 15:10:36 +1000835 error = xfs_setsize_buftarg(mp->m_ddev_targp, mp->m_sb.sb_blocksize,
836 mp->m_sb.sb_sectsize);
837 if (error)
838 return error;
839
840 if (mp->m_logdev_targp && mp->m_logdev_targp != mp->m_ddev_targp) {
841 unsigned int log_sector_size = BBSIZE;
842
843 if (xfs_sb_version_hassector(&mp->m_sb))
844 log_sector_size = mp->m_sb.sb_logsectsize;
845 error = xfs_setsize_buftarg(mp->m_logdev_targp,
846 mp->m_sb.sb_blocksize,
847 log_sector_size);
848 if (error)
849 return error;
850 }
851 if (mp->m_rtdev_targp) {
852 error = xfs_setsize_buftarg(mp->m_rtdev_targp,
853 mp->m_sb.sb_blocksize,
854 mp->m_sb.sb_sectsize);
855 if (error)
856 return error;
857 }
858
859 return 0;
860}
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000861
David Chinner249a8c12008-02-05 12:13:32 +1100862/*
863 * XFS AIL push thread support
864 */
865void
866xfsaild_wakeup(
David Chinner82fa9012008-10-30 17:38:26 +1100867 struct xfs_ail *ailp,
David Chinner249a8c12008-02-05 12:13:32 +1100868 xfs_lsn_t threshold_lsn)
869{
David Chinner82fa9012008-10-30 17:38:26 +1100870 ailp->xa_target = threshold_lsn;
871 wake_up_process(ailp->xa_task);
David Chinner249a8c12008-02-05 12:13:32 +1100872}
873
Hannes Eder3180e662009-03-04 19:34:10 +0100874STATIC int
David Chinner249a8c12008-02-05 12:13:32 +1100875xfsaild(
876 void *data)
877{
David Chinner82fa9012008-10-30 17:38:26 +1100878 struct xfs_ail *ailp = data;
David Chinner249a8c12008-02-05 12:13:32 +1100879 xfs_lsn_t last_pushed_lsn = 0;
Dave Chinner453eac82010-01-11 11:49:58 +0000880 long tout = 0; /* milliseconds */
David Chinner249a8c12008-02-05 12:13:32 +1100881
882 while (!kthread_should_stop()) {
Dave Chinner453eac82010-01-11 11:49:58 +0000883 schedule_timeout_interruptible(tout ?
884 msecs_to_jiffies(tout) : MAX_SCHEDULE_TIMEOUT);
David Chinner249a8c12008-02-05 12:13:32 +1100885
886 /* swsusp */
887 try_to_freeze();
888
David Chinner82fa9012008-10-30 17:38:26 +1100889 ASSERT(ailp->xa_mount->m_log);
890 if (XFS_FORCED_SHUTDOWN(ailp->xa_mount))
David Chinner249a8c12008-02-05 12:13:32 +1100891 continue;
892
David Chinner82fa9012008-10-30 17:38:26 +1100893 tout = xfsaild_push(ailp, &last_pushed_lsn);
David Chinner249a8c12008-02-05 12:13:32 +1100894 }
895
896 return 0;
897} /* xfsaild */
898
899int
900xfsaild_start(
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 ailp->xa_target = 0;
904 ailp->xa_task = kthread_run(xfsaild, ailp, "xfsaild");
905 if (IS_ERR(ailp->xa_task))
906 return -PTR_ERR(ailp->xa_task);
David Chinner249a8c12008-02-05 12:13:32 +1100907 return 0;
908}
909
910void
911xfsaild_stop(
David Chinner82fa9012008-10-30 17:38:26 +1100912 struct xfs_ail *ailp)
David Chinner249a8c12008-02-05 12:13:32 +1100913{
David Chinner82fa9012008-10-30 17:38:26 +1100914 kthread_stop(ailp->xa_task);
David Chinner249a8c12008-02-05 12:13:32 +1100915}
916
917
David Chinnerbf904242008-10-30 17:36:14 +1100918/* Catch misguided souls that try to use this interface on XFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919STATIC struct inode *
Nathan Scotta50cd262006-03-14 14:06:18 +1100920xfs_fs_alloc_inode(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 struct super_block *sb)
922{
David Chinnerbf904242008-10-30 17:36:14 +1100923 BUG();
Lachlan McIlroy493dca62008-10-30 17:36:52 +1100924 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925}
926
David Chinnerbf904242008-10-30 17:36:14 +1100927/*
David Chinner99fa8cb2008-10-30 17:36:40 +1100928 * Now that the generic code is guaranteed not to be accessing
929 * the linux inode, we can reclaim the inode.
David Chinnerbf904242008-10-30 17:36:14 +1100930 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931STATIC void
Nathan Scotta50cd262006-03-14 14:06:18 +1100932xfs_fs_destroy_inode(
Christoph Hellwig848ce8f2009-09-29 13:48:56 +0000933 struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934{
Christoph Hellwig848ce8f2009-09-29 13:48:56 +0000935 struct xfs_inode *ip = XFS_I(inode);
936
937 xfs_itrace_entry(ip);
David Chinner99fa8cb2008-10-30 17:36:40 +1100938
939 XFS_STATS_INC(vn_reclaim);
Christoph Hellwig848ce8f2009-09-29 13:48:56 +0000940
941 /* bad inode, get out here ASAP */
942 if (is_bad_inode(inode))
943 goto out_reclaim;
944
945 xfs_ioend_wait(ip);
946
947 ASSERT(XFS_FORCED_SHUTDOWN(ip->i_mount) || ip->i_delayed_blks == 0);
948
949 /*
950 * We should never get here with one of the reclaim flags already set.
951 */
952 ASSERT_ALWAYS(!xfs_iflags_test(ip, XFS_IRECLAIMABLE));
953 ASSERT_ALWAYS(!xfs_iflags_test(ip, XFS_IRECLAIM));
954
955 /*
Dave Chinner57817c62010-01-10 23:51:47 +0000956 * We always use background reclaim here because even if the
957 * inode is clean, it still may be under IO and hence we have
958 * to take the flush lock. The background reclaim path handles
959 * this more efficiently than we can here, so simply let background
960 * reclaim tear down all inodes.
Christoph Hellwig848ce8f2009-09-29 13:48:56 +0000961 */
Christoph Hellwig848ce8f2009-09-29 13:48:56 +0000962out_reclaim:
Dave Chinner57817c62010-01-10 23:51:47 +0000963 xfs_inode_set_reclaim_tag(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964}
965
David Chinner07c8f672008-10-30 16:11:59 +1100966/*
967 * Slab object creation initialisation for the XFS inode.
968 * This covers only the idempotent fields in the XFS inode;
969 * all other fields need to be initialised on allocation
970 * from the slab. This avoids the need to repeatedly intialise
971 * fields in the xfs inode that left in the initialise state
972 * when freeing the inode.
973 */
David Chinnerbf904242008-10-30 17:36:14 +1100974STATIC void
975xfs_fs_inode_init_once(
David Chinner07c8f672008-10-30 16:11:59 +1100976 void *inode)
977{
978 struct xfs_inode *ip = inode;
979
980 memset(ip, 0, sizeof(struct xfs_inode));
David Chinnerbf904242008-10-30 17:36:14 +1100981
982 /* vfs inode */
983 inode_init_once(VFS_I(ip));
984
985 /* xfs inode */
David Chinner07c8f672008-10-30 16:11:59 +1100986 atomic_set(&ip->i_iocount, 0);
987 atomic_set(&ip->i_pincount, 0);
988 spin_lock_init(&ip->i_flags_lock);
David Chinner07c8f672008-10-30 16:11:59 +1100989 init_waitqueue_head(&ip->i_ipin_wait);
990 /*
991 * Because we want to use a counting completion, complete
992 * the flush completion once to allow a single access to
993 * the flush completion without blocking.
994 */
995 init_completion(&ip->i_flush);
996 complete(&ip->i_flush);
997
998 mrlock_init(&ip->i_lock, MRLOCK_ALLOW_EQUAL_PRI|MRLOCK_BARRIER,
999 "xfsino", ip->i_ino);
David Chinner07c8f672008-10-30 16:11:59 +11001000}
1001
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002/*
Christoph Hellwigf9581b12009-10-06 20:29:26 +00001003 * Dirty the XFS inode when mark_inode_dirty_sync() is called so that
1004 * we catch unlogged VFS level updates to the inode. Care must be taken
1005 * here - the transaction code calls mark_inode_dirty_sync() to mark the
1006 * VFS inode dirty in a transaction and clears the i_update_core field;
1007 * it must clear the field after calling mark_inode_dirty_sync() to
1008 * correctly indicate that the dirty state has been propagated into the
1009 * inode log item.
1010 *
1011 * We need the barrier() to maintain correct ordering between unlogged
1012 * updates and the transaction commit code that clears the i_update_core
1013 * field. This requires all updates to be completed before marking the
1014 * inode dirty.
1015 */
1016STATIC void
1017xfs_fs_dirty_inode(
1018 struct inode *inode)
1019{
1020 barrier();
1021 XFS_I(inode)->i_update_core = 1;
1022}
1023
Christoph Hellwig07fec732010-02-09 11:43:49 +11001024STATIC int
1025xfs_log_inode(
1026 struct xfs_inode *ip)
1027{
1028 struct xfs_mount *mp = ip->i_mount;
1029 struct xfs_trans *tp;
1030 int error;
1031
1032 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1033 tp = xfs_trans_alloc(mp, XFS_TRANS_FSYNC_TS);
1034 error = xfs_trans_reserve(tp, 0, XFS_FSYNC_TS_LOG_RES(mp), 0, 0, 0);
1035
1036 if (error) {
1037 xfs_trans_cancel(tp, 0);
1038 /* we need to return with the lock hold shared */
1039 xfs_ilock(ip, XFS_ILOCK_SHARED);
1040 return error;
1041 }
1042
1043 xfs_ilock(ip, XFS_ILOCK_EXCL);
1044
1045 /*
1046 * Note - it's possible that we might have pushed ourselves out of the
1047 * way during trans_reserve which would flush the inode. But there's
1048 * no guarantee that the inode buffer has actually gone out yet (it's
1049 * delwri). Plus the buffer could be pinned anyway if it's part of
1050 * an inode in another recent transaction. So we play it safe and
1051 * fire off the transaction anyway.
1052 */
1053 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
1054 xfs_trans_ihold(tp, ip);
1055 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1056 xfs_trans_set_sync(tp);
1057 error = xfs_trans_commit(tp, 0);
1058 xfs_ilock_demote(ip, XFS_ILOCK_EXCL);
1059
1060 return error;
1061}
1062
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001064xfs_fs_write_inode(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 struct inode *inode,
1066 int sync)
1067{
Dave Chinner2e656092008-11-28 14:23:33 +11001068 struct xfs_inode *ip = XFS_I(inode);
Christoph Hellwigd4bb6d02009-02-04 09:36:19 +01001069 struct xfs_mount *mp = ip->i_mount;
Christoph Hellwig07fec732010-02-09 11:43:49 +11001070 int error = EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
Dave Chinner2e656092008-11-28 14:23:33 +11001072 xfs_itrace_entry(ip);
Christoph Hellwigd4bb6d02009-02-04 09:36:19 +01001073
1074 if (XFS_FORCED_SHUTDOWN(mp))
1075 return XFS_ERROR(EIO);
1076
Christoph Hellwig739bfb22007-08-29 10:58:01 +10001077 if (sync) {
Christoph Hellwig07fec732010-02-09 11:43:49 +11001078 /*
1079 * Make sure the inode has hit stable storage. By using the
1080 * log and the fsync transactions we reduce the IOs we have
1081 * to do here from two (log and inode) to just the log.
1082 *
1083 * Note: We still need to do a delwri write of the inode after
1084 * this to flush it to the backing buffer so that bulkstat
1085 * works properly if this is the first time the inode has been
1086 * written. Because we hold the ilock atomically over the
1087 * transaction commit and the inode flush we are guaranteed
1088 * that the inode is not pinned when it returns. If the flush
1089 * lock is already held, then the inode has already been
1090 * flushed once and we don't need to flush it again. Hence
1091 * the code will only flush the inode if it isn't already
1092 * being flushed.
1093 */
Christoph Hellwigd4bb6d02009-02-04 09:36:19 +01001094 xfs_ilock(ip, XFS_ILOCK_SHARED);
Christoph Hellwig07fec732010-02-09 11:43:49 +11001095 if (ip->i_update_core) {
1096 error = xfs_log_inode(ip);
1097 if (error)
1098 goto out_unlock;
1099 }
Christoph Hellwigd4bb6d02009-02-04 09:36:19 +01001100 } else {
Christoph Hellwig07fec732010-02-09 11:43:49 +11001101 /*
1102 * We make this non-blocking if the inode is contended, return
1103 * EAGAIN to indicate to the caller that they did not succeed.
1104 * This prevents the flush path from blocking on inodes inside
1105 * another operation right now, they get caught later by xfs_sync.
1106 */
Christoph Hellwigd4bb6d02009-02-04 09:36:19 +01001107 if (!xfs_ilock_nowait(ip, XFS_ILOCK_SHARED))
1108 goto out;
Christoph Hellwigd4bb6d02009-02-04 09:36:19 +01001109 }
1110
Christoph Hellwig07fec732010-02-09 11:43:49 +11001111 if (xfs_ipincount(ip) || !xfs_iflock_nowait(ip))
1112 goto out_unlock;
1113
1114 /*
1115 * Now we have the flush lock and the inode is not pinned, we can check
1116 * if the inode is really clean as we know that there are no pending
1117 * transaction completions, it is not waiting on the delayed write
1118 * queue and there is no IO in progress.
1119 */
1120 if (xfs_inode_clean(ip)) {
1121 xfs_ifunlock(ip);
1122 error = 0;
1123 goto out_unlock;
1124 }
1125 error = xfs_iflush(ip, 0);
1126
Christoph Hellwigd4bb6d02009-02-04 09:36:19 +01001127 out_unlock:
1128 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1129 out:
Lachlan McIlroye893bff2007-10-12 11:13:35 +10001130 /*
1131 * if we failed to write out the inode then mark
1132 * it dirty again so we'll try again later.
1133 */
1134 if (error)
Dave Chinner2e656092008-11-28 14:23:33 +11001135 xfs_mark_inode_dirty_sync(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 return -error;
1137}
1138
1139STATIC void
Nathan Scotta50cd262006-03-14 14:06:18 +11001140xfs_fs_clear_inode(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 struct inode *inode)
1142{
Christoph Hellwig1543d792007-08-29 11:46:47 +10001143 xfs_inode_t *ip = XFS_I(inode);
Christoph Hellwig56d433e2005-09-05 08:23:54 +10001144
David Chinner99fa8cb2008-10-30 17:36:40 +11001145 xfs_itrace_entry(ip);
1146 XFS_STATS_INC(vn_rele);
1147 XFS_STATS_INC(vn_remove);
1148 XFS_STATS_DEC(vn_active);
Christoph Hellwig56d433e2005-09-05 08:23:54 +10001149
Christoph Hellwig033da482009-10-19 04:05:26 +00001150 /*
1151 * The iolock is used by the file system to coordinate reads,
1152 * writes, and block truncates. Up to this point the lock
1153 * protected concurrent accesses by users of the inode. But
1154 * from here forward we're doing some final processing of the
1155 * inode because we're done with it, and although we reuse the
1156 * iolock for protection it is really a distinct lock class
1157 * (in the lockdep sense) from before. To keep lockdep happy
1158 * (and basically indicate what we are doing), we explicitly
1159 * re-init the iolock here.
1160 */
1161 ASSERT(!rwsem_is_locked(&ip->i_iolock.mr_lock));
1162 mrlock_init(&ip->i_iolock, MRLOCK_BARRIER, "xfsio", ip->i_ino);
1163
David Chinner99fa8cb2008-10-30 17:36:40 +11001164 xfs_inactive(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165}
1166
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167STATIC void
Christoph Hellwiga7381592008-08-13 16:04:05 +10001168xfs_free_fsname(
1169 struct xfs_mount *mp)
1170{
1171 kfree(mp->m_fsname);
1172 kfree(mp->m_rtname);
1173 kfree(mp->m_logname);
1174}
1175
1176STATIC void
Nathan Scotta50cd262006-03-14 14:06:18 +11001177xfs_fs_put_super(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 struct super_block *sb)
1179{
Christoph Hellwig745f6912007-08-30 17:20:39 +10001180 struct xfs_mount *mp = XFS_M(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
David Chinnera167b172008-10-30 17:06:18 +11001182 xfs_syncd_stop(mp);
Christoph Hellwig075fe102009-06-08 15:35:48 +02001183
1184 if (!(sb->s_flags & MS_RDONLY)) {
1185 /*
1186 * XXX(hch): this should be SYNC_WAIT.
1187 *
1188 * Or more likely not needed at all because the VFS is already
1189 * calling ->sync_fs after shutting down all filestem
1190 * operations and just before calling ->put_super.
1191 */
1192 xfs_sync_data(mp, 0);
1193 xfs_sync_attr(mp, 0);
1194 }
Christoph Hellwige48ad312008-05-20 11:30:52 +10001195
Christoph Hellwig30ac0682009-11-14 16:17:24 +00001196 XFS_SEND_PREUNMOUNT(mp);
Christoph Hellwige48ad312008-05-20 11:30:52 +10001197
1198 /*
1199 * Blow away any referenced inode in the filestreams cache.
1200 * This can and will cause log traffic as inodes go inactive
1201 * here.
1202 */
1203 xfs_filestream_unmount(mp);
1204
1205 XFS_bflush(mp->m_ddev_targp);
Christoph Hellwige48ad312008-05-20 11:30:52 +10001206
Christoph Hellwig30ac0682009-11-14 16:17:24 +00001207 XFS_SEND_UNMOUNT(mp);
Christoph Hellwige48ad312008-05-20 11:30:52 +10001208
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001209 xfs_unmountfs(mp);
Christoph Hellwig62033002008-08-13 16:50:21 +10001210 xfs_freesb(mp);
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001211 xfs_icsb_destroy_counters(mp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001212 xfs_close_devices(mp);
Christoph Hellwige48ad312008-05-20 11:30:52 +10001213 xfs_dmops_put(mp);
Christoph Hellwiga7381592008-08-13 16:04:05 +10001214 xfs_free_fsname(mp);
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001215 kfree(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216}
1217
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218STATIC int
Christoph Hellwig69961a22009-10-06 20:29:28 +00001219xfs_fs_sync_fs(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 struct super_block *sb,
1221 int wait)
1222{
Christoph Hellwig745f6912007-08-30 17:20:39 +10001223 struct xfs_mount *mp = XFS_M(sb);
Nathan Scottb83bd132006-06-09 16:48:30 +10001224 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
Lachlan McIlroye893bff2007-10-12 11:13:35 +10001226 /*
Christoph Hellwig69961a22009-10-06 20:29:28 +00001227 * Not much we can do for the first async pass. Writing out the
1228 * superblock would be counter-productive as we are going to redirty
1229 * when writing out other data and metadata (and writing out a single
1230 * block is quite fast anyway).
1231 *
1232 * Try to asynchronously kick off quota syncing at least.
Lachlan McIlroye893bff2007-10-12 11:13:35 +10001233 */
Christoph Hellwig69961a22009-10-06 20:29:28 +00001234 if (!wait) {
1235 xfs_qm_sync(mp, SYNC_TRYLOCK);
1236 return 0;
1237 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
Christoph Hellwig69961a22009-10-06 20:29:28 +00001239 error = xfs_quiesce_data(mp);
1240 if (error)
1241 return -error;
1242
1243 if (laptop_mode) {
Christoph Hellwig74394492007-08-30 17:21:22 +10001244 int prev_sync_seq = mp->m_sync_seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
1246 /*
1247 * The disk must be active because we're syncing.
1248 * We schedule xfssyncd now (now that the disk is
1249 * active) instead of later (when it might not be).
1250 */
Christoph Hellwig74394492007-08-30 17:21:22 +10001251 wake_up_process(mp->m_sync_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 /*
1253 * We have to wait for the sync iteration to complete.
1254 * If we don't, the disk activity caused by the sync
1255 * will come after the sync is completed, and that
1256 * triggers another sync from laptop mode.
1257 */
Christoph Hellwig74394492007-08-30 17:21:22 +10001258 wait_event(mp->m_wait_single_sync_task,
1259 mp->m_sync_seq != prev_sync_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 }
1261
Christoph Hellwig69961a22009-10-06 20:29:28 +00001262 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263}
1264
1265STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001266xfs_fs_statfs(
David Howells726c3342006-06-23 02:02:58 -07001267 struct dentry *dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 struct kstatfs *statp)
1269{
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001270 struct xfs_mount *mp = XFS_M(dentry->d_sb);
1271 xfs_sb_t *sbp = &mp->m_sb;
Christoph Hellwig7d095252009-06-08 15:33:32 +02001272 struct xfs_inode *ip = XFS_I(dentry->d_inode);
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001273 __uint64_t fakeinos, id;
1274 xfs_extlen_t lsize;
1275
1276 statp->f_type = XFS_SB_MAGIC;
1277 statp->f_namelen = MAXNAMELEN - 1;
1278
1279 id = huge_encode_dev(mp->m_ddev_targp->bt_dev);
1280 statp->f_fsid.val[0] = (u32)id;
1281 statp->f_fsid.val[1] = (u32)(id >> 32);
1282
Christoph Hellwigd4d90b52008-04-22 17:34:37 +10001283 xfs_icsb_sync_counters(mp, XFS_ICSB_LAZY_COUNT);
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001284
1285 spin_lock(&mp->m_sb_lock);
1286 statp->f_bsize = sbp->sb_blocksize;
1287 lsize = sbp->sb_logstart ? sbp->sb_logblocks : 0;
1288 statp->f_blocks = sbp->sb_dblocks - lsize;
1289 statp->f_bfree = statp->f_bavail =
1290 sbp->sb_fdblocks - XFS_ALLOC_SET_ASIDE(mp);
1291 fakeinos = statp->f_bfree << sbp->sb_inopblog;
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001292 statp->f_files =
1293 MIN(sbp->sb_icount + fakeinos, (__uint64_t)XFS_MAXINUMBER);
1294 if (mp->m_maxicount)
Christoph Hellwiga19d9f82009-03-29 09:51:08 +02001295 statp->f_files = min_t(typeof(statp->f_files),
1296 statp->f_files,
1297 mp->m_maxicount);
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001298 statp->f_ffree = statp->f_files - (sbp->sb_icount - sbp->sb_ifree);
1299 spin_unlock(&mp->m_sb_lock);
1300
Christoph Hellwig7d095252009-06-08 15:33:32 +02001301 if ((ip->i_d.di_flags & XFS_DIFLAG_PROJINHERIT) ||
1302 ((mp->m_qflags & (XFS_PQUOTA_ACCT|XFS_OQUOTA_ENFD))) ==
1303 (XFS_PQUOTA_ACCT|XFS_OQUOTA_ENFD))
1304 xfs_qm_statvfs(ip, statp);
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001305 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306}
1307
Eric Sandeend5db0f92010-02-05 22:59:53 +00001308STATIC void
1309xfs_save_resvblks(struct xfs_mount *mp)
1310{
1311 __uint64_t resblks = 0;
1312
1313 mp->m_resblks_save = mp->m_resblks;
1314 xfs_reserve_blocks(mp, &resblks, NULL);
1315}
1316
1317STATIC void
1318xfs_restore_resvblks(struct xfs_mount *mp)
1319{
1320 __uint64_t resblks;
1321
1322 if (mp->m_resblks_save) {
1323 resblks = mp->m_resblks_save;
1324 mp->m_resblks_save = 0;
1325 } else
1326 resblks = xfs_default_resblks(mp);
1327
1328 xfs_reserve_blocks(mp, &resblks, NULL);
1329}
1330
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001332xfs_fs_remount(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 struct super_block *sb,
1334 int *flags,
1335 char *options)
1336{
Christoph Hellwig745f6912007-08-30 17:20:39 +10001337 struct xfs_mount *mp = XFS_M(sb);
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001338 substring_t args[MAX_OPT_ARGS];
1339 char *p;
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001340 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001342 while ((p = strsep(&options, ",")) != NULL) {
1343 int token;
Christoph Hellwigbdd907b2008-05-20 15:10:44 +10001344
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001345 if (!*p)
1346 continue;
Christoph Hellwig48b62a12008-05-20 11:30:39 +10001347
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001348 token = match_token(p, tokens, args);
1349 switch (token) {
1350 case Opt_barrier:
Christoph Hellwig48b62a12008-05-20 11:30:39 +10001351 mp->m_flags |= XFS_MOUNT_BARRIER;
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001352
1353 /*
1354 * Test if barriers are actually working if we can,
1355 * else delay this check until the filesystem is
1356 * marked writeable.
1357 */
1358 if (!(mp->m_flags & XFS_MOUNT_RDONLY))
1359 xfs_mountfs_check_barriers(mp);
1360 break;
1361 case Opt_nobarrier:
Christoph Hellwig48b62a12008-05-20 11:30:39 +10001362 mp->m_flags &= ~XFS_MOUNT_BARRIER;
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001363 break;
1364 default:
Christoph Hellwig6efdf282008-09-17 16:49:33 +10001365 /*
1366 * Logically we would return an error here to prevent
1367 * users from believing they might have changed
1368 * mount options using remount which can't be changed.
1369 *
1370 * But unfortunately mount(8) adds all options from
1371 * mtab and fstab to the mount arguments in some cases
1372 * so we can't blindly reject options, but have to
1373 * check for each specified option if it actually
1374 * differs from the currently set option and only
1375 * reject it if that's the case.
1376 *
1377 * Until that is implemented we return success for
1378 * every remount request, and silently ignore all
1379 * options that we can't actually change.
1380 */
1381#if 0
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001382 printk(KERN_INFO
1383 "XFS: mount option \"%s\" not supported for remount\n", p);
1384 return -EINVAL;
Christoph Hellwig6efdf282008-09-17 16:49:33 +10001385#else
Christoph Hellwig6c5e51d2008-10-12 14:30:44 +02001386 break;
Christoph Hellwig6efdf282008-09-17 16:49:33 +10001387#endif
Christoph Hellwig48b62a12008-05-20 11:30:39 +10001388 }
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001389 }
1390
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001391 /* ro -> rw */
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001392 if ((mp->m_flags & XFS_MOUNT_RDONLY) && !(*flags & MS_RDONLY)) {
1393 mp->m_flags &= ~XFS_MOUNT_RDONLY;
1394 if (mp->m_flags & XFS_MOUNT_BARRIER)
1395 xfs_mountfs_check_barriers(mp);
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001396
1397 /*
1398 * If this is the first remount to writeable state we
1399 * might have some superblock changes to update.
1400 */
1401 if (mp->m_update_flags) {
1402 error = xfs_mount_log_sb(mp, mp->m_update_flags);
1403 if (error) {
1404 cmn_err(CE_WARN,
1405 "XFS: failed to write sb changes");
1406 return error;
1407 }
1408 mp->m_update_flags = 0;
1409 }
Dave Chinnercbe132a2010-01-26 15:08:49 +11001410
1411 /*
1412 * Fill out the reserve pool if it is empty. Use the stashed
1413 * value if it is non-zero, otherwise go with the default.
1414 */
Eric Sandeend5db0f92010-02-05 22:59:53 +00001415 xfs_restore_resvblks(mp);
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001416 }
1417
1418 /* rw -> ro */
1419 if (!(mp->m_flags & XFS_MOUNT_RDONLY) && (*flags & MS_RDONLY)) {
Dave Chinnercbe132a2010-01-26 15:08:49 +11001420 /*
1421 * After we have synced the data but before we sync the
1422 * metadata, we need to free up the reserve block pool so that
1423 * the used block count in the superblock on disk is correct at
1424 * the end of the remount. Stash the current reserve pool size
1425 * so that if we get remounted rw, we can return it to the same
1426 * size.
1427 */
Dave Chinnercbe132a2010-01-26 15:08:49 +11001428
David Chinnere9f1c6e2008-10-30 17:15:50 +11001429 xfs_quiesce_data(mp);
Eric Sandeend5db0f92010-02-05 22:59:53 +00001430 xfs_save_resvblks(mp);
David Chinner76bf1052008-10-30 17:16:21 +11001431 xfs_quiesce_attr(mp);
Christoph Hellwig48b62a12008-05-20 11:30:39 +10001432 mp->m_flags |= XFS_MOUNT_RDONLY;
1433 }
1434
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001435 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436}
1437
Christoph Hellwig9909c4a2007-10-11 18:11:14 +10001438/*
1439 * Second stage of a freeze. The data is already frozen so we only
David Chinner76bf1052008-10-30 17:16:21 +11001440 * need to take care of the metadata. Once that's done write a dummy
Christoph Hellwig9909c4a2007-10-11 18:11:14 +10001441 * record to dirty the log in case of a crash while frozen.
1442 */
Takashi Satoc4be0c12009-01-09 16:40:58 -08001443STATIC int
1444xfs_fs_freeze(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 struct super_block *sb)
1446{
Christoph Hellwig9909c4a2007-10-11 18:11:14 +10001447 struct xfs_mount *mp = XFS_M(sb);
1448
Eric Sandeend5db0f92010-02-05 22:59:53 +00001449 xfs_save_resvblks(mp);
David Chinner76bf1052008-10-30 17:16:21 +11001450 xfs_quiesce_attr(mp);
Takashi Satoc4be0c12009-01-09 16:40:58 -08001451 return -xfs_fs_log_dummy(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452}
1453
1454STATIC int
Eric Sandeend5db0f92010-02-05 22:59:53 +00001455xfs_fs_unfreeze(
1456 struct super_block *sb)
1457{
1458 struct xfs_mount *mp = XFS_M(sb);
1459
1460 xfs_restore_resvblks(mp);
1461 return 0;
1462}
1463
1464STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001465xfs_fs_show_options(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 struct seq_file *m,
1467 struct vfsmount *mnt)
1468{
Christoph Hellwig745f6912007-08-30 17:20:39 +10001469 return -xfs_showargs(XFS_M(mnt->mnt_sb), m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470}
1471
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001472/*
1473 * This function fills in xfs_mount_t fields based on mount args.
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001474 * Note: the superblock _has_ now been read in.
1475 */
1476STATIC int
1477xfs_finish_flags(
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001478 struct xfs_mount *mp)
1479{
1480 int ronly = (mp->m_flags & XFS_MOUNT_RDONLY);
1481
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02001482 /* Fail a mount where the logbuf is smaller than the log stripe */
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001483 if (xfs_sb_version_haslogv2(&mp->m_sb)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001484 if (mp->m_logbsize <= 0 &&
1485 mp->m_sb.sb_logsunit > XLOG_BIG_RECORD_BSIZE) {
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001486 mp->m_logbsize = mp->m_sb.sb_logsunit;
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001487 } else if (mp->m_logbsize > 0 &&
1488 mp->m_logbsize < mp->m_sb.sb_logsunit) {
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001489 cmn_err(CE_WARN,
1490 "XFS: logbuf size must be greater than or equal to log stripe size");
1491 return XFS_ERROR(EINVAL);
1492 }
1493 } else {
1494 /* Fail a mount if the logbuf is larger than 32K */
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001495 if (mp->m_logbsize > XLOG_BIG_RECORD_BSIZE) {
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001496 cmn_err(CE_WARN,
1497 "XFS: logbuf size for version 1 logs must be 16K or 32K");
1498 return XFS_ERROR(EINVAL);
1499 }
1500 }
1501
1502 /*
1503 * mkfs'ed attr2 will turn on attr2 mount unless explicitly
1504 * told by noattr2 to turn it off
1505 */
1506 if (xfs_sb_version_hasattr2(&mp->m_sb) &&
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001507 !(mp->m_flags & XFS_MOUNT_NOATTR2))
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001508 mp->m_flags |= XFS_MOUNT_ATTR2;
1509
1510 /*
1511 * prohibit r/w mounts of read-only filesystems
1512 */
1513 if ((mp->m_sb.sb_flags & XFS_SBF_READONLY) && !ronly) {
1514 cmn_err(CE_WARN,
1515 "XFS: cannot mount a read-only filesystem as read-write");
1516 return XFS_ERROR(EROFS);
1517 }
1518
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001519 return 0;
1520}
1521
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001523xfs_fs_fill_super(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 struct super_block *sb,
1525 void *data,
1526 int silent)
1527{
Christoph Hellwigf3dcc132008-03-27 18:00:54 +11001528 struct inode *root;
Christoph Hellwig745f6912007-08-30 17:20:39 +10001529 struct xfs_mount *mp = NULL;
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001530 int flags = 0, error = ENOMEM;
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001531 char *mtpt = NULL;
Christoph Hellwigbdd907b2008-05-20 15:10:44 +10001532
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001533 mp = kzalloc(sizeof(struct xfs_mount), GFP_KERNEL);
1534 if (!mp)
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001535 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001537 spin_lock_init(&mp->m_sb_lock);
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001538 mutex_init(&mp->m_growlock);
1539 atomic_set(&mp->m_active_trans, 0);
Christoph Hellwig74394492007-08-30 17:21:22 +10001540 INIT_LIST_HEAD(&mp->m_sync_list);
1541 spin_lock_init(&mp->m_sync_lock);
1542 init_waitqueue_head(&mp->m_wait_single_sync_task);
1543
Christoph Hellwigb267ce92007-08-30 17:21:30 +10001544 mp->m_super = sb;
1545 sb->s_fs_info = mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001547 error = xfs_parseargs(mp, (char *)data, &mtpt);
Christoph Hellwig745f6912007-08-30 17:20:39 +10001548 if (error)
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001549 goto out_free_fsname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
1551 sb_min_blocksize(sb, BBSIZE);
Lachlan McIlroy0ec58512008-06-23 13:23:01 +10001552 sb->s_xattr = xfs_xattr_handlers;
Nathan Scotta50cd262006-03-14 14:06:18 +11001553 sb->s_export_op = &xfs_export_operations;
Christoph Hellwigfcafb712009-02-09 08:47:34 +01001554#ifdef CONFIG_XFS_QUOTA
Nathan Scotta50cd262006-03-14 14:06:18 +11001555 sb->s_qcop = &xfs_quotactl_operations;
Christoph Hellwigfcafb712009-02-09 08:47:34 +01001556#endif
Nathan Scotta50cd262006-03-14 14:06:18 +11001557 sb->s_op = &xfs_super_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001559 error = xfs_dmops_get(mp);
Christoph Hellwig745f6912007-08-30 17:20:39 +10001560 if (error)
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001561 goto out_free_fsname;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001562
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001563 if (silent)
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001564 flags |= XFS_MFSI_QUIET;
1565
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001566 error = xfs_open_devices(mp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001567 if (error)
Christoph Hellwig7d095252009-06-08 15:33:32 +02001568 goto out_put_dmops;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001569
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001570 if (xfs_icsb_init_counters(mp))
1571 mp->m_flags |= XFS_MOUNT_NO_PERCPU_SB;
1572
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001573 error = xfs_readsb(mp, flags);
1574 if (error)
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001575 goto out_destroy_counters;
1576
1577 error = xfs_finish_flags(mp);
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001578 if (error)
Christoph Hellwigeffa2ed2008-05-20 15:11:05 +10001579 goto out_free_sb;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001580
Christoph Hellwige34b5622008-05-20 15:10:36 +10001581 error = xfs_setup_devices(mp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001582 if (error)
Christoph Hellwigeffa2ed2008-05-20 15:11:05 +10001583 goto out_free_sb;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001584
1585 if (mp->m_flags & XFS_MOUNT_BARRIER)
1586 xfs_mountfs_check_barriers(mp);
1587
1588 error = xfs_filestream_mount(mp);
1589 if (error)
Christoph Hellwigeffa2ed2008-05-20 15:11:05 +10001590 goto out_free_sb;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001591
Christoph Hellwig42490232008-08-13 16:49:32 +10001592 error = xfs_mountfs(mp);
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001593 if (error)
Christoph Hellwig120226c2008-05-20 15:11:11 +10001594 goto out_filestream_unmount;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001595
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001596 XFS_SEND_MOUNT(mp, DM_RIGHT_NULL, mtpt, mp->m_fsname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001598 sb->s_magic = XFS_SB_MAGIC;
1599 sb->s_blocksize = mp->m_sb.sb_blocksize;
1600 sb->s_blocksize_bits = ffs(sb->s_blocksize) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 sb->s_maxbytes = xfs_max_file_offset(sb->s_blocksize_bits);
1602 sb->s_time_gran = 1;
1603 set_posix_acl_flag(sb);
1604
David Chinner01651642008-08-13 15:45:15 +10001605 root = igrab(VFS_I(mp->m_rootip));
Christoph Hellwigf3dcc132008-03-27 18:00:54 +11001606 if (!root) {
Christoph Hellwigcbc89dc2008-02-05 12:14:01 +11001607 error = ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 goto fail_unmount;
Christoph Hellwigcbc89dc2008-02-05 12:14:01 +11001609 }
Christoph Hellwigf3dcc132008-03-27 18:00:54 +11001610 if (is_bad_inode(root)) {
1611 error = EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 goto fail_vnrele;
1613 }
Christoph Hellwigf3dcc132008-03-27 18:00:54 +11001614 sb->s_root = d_alloc_root(root);
1615 if (!sb->s_root) {
1616 error = ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 goto fail_vnrele;
1618 }
Christoph Hellwig74394492007-08-30 17:21:22 +10001619
David Chinnera167b172008-10-30 17:06:18 +11001620 error = xfs_syncd_init(mp);
1621 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 goto fail_vnrele;
Christoph Hellwig74394492007-08-30 17:21:22 +10001623
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001624 kfree(mtpt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 return 0;
1626
Christoph Hellwig120226c2008-05-20 15:11:11 +10001627 out_filestream_unmount:
1628 xfs_filestream_unmount(mp);
Christoph Hellwigeffa2ed2008-05-20 15:11:05 +10001629 out_free_sb:
1630 xfs_freesb(mp);
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001631 out_destroy_counters:
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001632 xfs_icsb_destroy_counters(mp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001633 xfs_close_devices(mp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001634 out_put_dmops:
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001635 xfs_dmops_put(mp);
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001636 out_free_fsname:
1637 xfs_free_fsname(mp);
1638 kfree(mtpt);
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001639 kfree(mp);
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001640 out:
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001641 return -error;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001642
1643 fail_vnrele:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 if (sb->s_root) {
1645 dput(sb->s_root);
1646 sb->s_root = NULL;
1647 } else {
Christoph Hellwigf3dcc132008-03-27 18:00:54 +11001648 iput(root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 }
1650
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001651 fail_unmount:
Christoph Hellwige48ad312008-05-20 11:30:52 +10001652 /*
1653 * Blow away any referenced inode in the filestreams cache.
1654 * This can and will cause log traffic as inodes go inactive
1655 * here.
1656 */
1657 xfs_filestream_unmount(mp);
1658
1659 XFS_bflush(mp->m_ddev_targp);
Christoph Hellwige48ad312008-05-20 11:30:52 +10001660
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001661 xfs_unmountfs(mp);
Christoph Hellwig62033002008-08-13 16:50:21 +10001662 goto out_free_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663}
1664
David Howells454e2392006-06-23 02:02:57 -07001665STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001666xfs_fs_get_sb(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 struct file_system_type *fs_type,
1668 int flags,
1669 const char *dev_name,
David Howells454e2392006-06-23 02:02:57 -07001670 void *data,
1671 struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672{
David Howells454e2392006-06-23 02:02:57 -07001673 return get_sb_bdev(fs_type, flags, dev_name, data, xfs_fs_fill_super,
1674 mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675}
1676
Alexey Dobriyanb87221d2009-09-21 17:01:09 -07001677static const struct super_operations xfs_super_operations = {
Nathan Scotta50cd262006-03-14 14:06:18 +11001678 .alloc_inode = xfs_fs_alloc_inode,
1679 .destroy_inode = xfs_fs_destroy_inode,
Christoph Hellwigf9581b12009-10-06 20:29:26 +00001680 .dirty_inode = xfs_fs_dirty_inode,
Nathan Scotta50cd262006-03-14 14:06:18 +11001681 .write_inode = xfs_fs_write_inode,
1682 .clear_inode = xfs_fs_clear_inode,
1683 .put_super = xfs_fs_put_super,
Christoph Hellwig69961a22009-10-06 20:29:28 +00001684 .sync_fs = xfs_fs_sync_fs,
Takashi Satoc4be0c12009-01-09 16:40:58 -08001685 .freeze_fs = xfs_fs_freeze,
Eric Sandeend5db0f92010-02-05 22:59:53 +00001686 .unfreeze_fs = xfs_fs_unfreeze,
Nathan Scotta50cd262006-03-14 14:06:18 +11001687 .statfs = xfs_fs_statfs,
1688 .remount_fs = xfs_fs_remount,
1689 .show_options = xfs_fs_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690};
1691
Andrew Morton5085b602007-02-20 13:57:47 -08001692static struct file_system_type xfs_fs_type = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 .owner = THIS_MODULE,
1694 .name = "xfs",
Nathan Scotta50cd262006-03-14 14:06:18 +11001695 .get_sb = xfs_fs_get_sb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 .kill_sb = kill_block_super,
1697 .fs_flags = FS_REQUIRES_DEV,
1698};
1699
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001700STATIC int __init
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001701xfs_init_zones(void)
1702{
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001703
1704 xfs_ioend_zone = kmem_zone_init(sizeof(xfs_ioend_t), "xfs_ioend");
1705 if (!xfs_ioend_zone)
David Chinnerbf904242008-10-30 17:36:14 +11001706 goto out;
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001707
1708 xfs_ioend_pool = mempool_create_slab_pool(4 * MAX_BUF_PER_PAGE,
1709 xfs_ioend_zone);
1710 if (!xfs_ioend_pool)
1711 goto out_destroy_ioend_zone;
1712
1713 xfs_log_ticket_zone = kmem_zone_init(sizeof(xlog_ticket_t),
1714 "xfs_log_ticket");
1715 if (!xfs_log_ticket_zone)
1716 goto out_destroy_ioend_pool;
1717
1718 xfs_bmap_free_item_zone = kmem_zone_init(sizeof(xfs_bmap_free_item_t),
1719 "xfs_bmap_free_item");
1720 if (!xfs_bmap_free_item_zone)
1721 goto out_destroy_log_ticket_zone;
David Chinnerbf904242008-10-30 17:36:14 +11001722
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001723 xfs_btree_cur_zone = kmem_zone_init(sizeof(xfs_btree_cur_t),
1724 "xfs_btree_cur");
1725 if (!xfs_btree_cur_zone)
1726 goto out_destroy_bmap_free_item_zone;
1727
1728 xfs_da_state_zone = kmem_zone_init(sizeof(xfs_da_state_t),
1729 "xfs_da_state");
1730 if (!xfs_da_state_zone)
1731 goto out_destroy_btree_cur_zone;
1732
1733 xfs_dabuf_zone = kmem_zone_init(sizeof(xfs_dabuf_t), "xfs_dabuf");
1734 if (!xfs_dabuf_zone)
1735 goto out_destroy_da_state_zone;
1736
1737 xfs_ifork_zone = kmem_zone_init(sizeof(xfs_ifork_t), "xfs_ifork");
1738 if (!xfs_ifork_zone)
1739 goto out_destroy_dabuf_zone;
1740
1741 xfs_trans_zone = kmem_zone_init(sizeof(xfs_trans_t), "xfs_trans");
1742 if (!xfs_trans_zone)
1743 goto out_destroy_ifork_zone;
1744
1745 /*
1746 * The size of the zone allocated buf log item is the maximum
1747 * size possible under XFS. This wastes a little bit of memory,
1748 * but it is much faster.
1749 */
1750 xfs_buf_item_zone = kmem_zone_init((sizeof(xfs_buf_log_item_t) +
1751 (((XFS_MAX_BLOCKSIZE / XFS_BLI_CHUNK) /
1752 NBWORD) * sizeof(int))), "xfs_buf_item");
1753 if (!xfs_buf_item_zone)
1754 goto out_destroy_trans_zone;
1755
1756 xfs_efd_zone = kmem_zone_init((sizeof(xfs_efd_log_item_t) +
1757 ((XFS_EFD_MAX_FAST_EXTENTS - 1) *
1758 sizeof(xfs_extent_t))), "xfs_efd_item");
1759 if (!xfs_efd_zone)
1760 goto out_destroy_buf_item_zone;
1761
1762 xfs_efi_zone = kmem_zone_init((sizeof(xfs_efi_log_item_t) +
1763 ((XFS_EFI_MAX_FAST_EXTENTS - 1) *
1764 sizeof(xfs_extent_t))), "xfs_efi_item");
1765 if (!xfs_efi_zone)
1766 goto out_destroy_efd_zone;
1767
1768 xfs_inode_zone =
1769 kmem_zone_init_flags(sizeof(xfs_inode_t), "xfs_inode",
David Chinnerbf904242008-10-30 17:36:14 +11001770 KM_ZONE_HWALIGN | KM_ZONE_RECLAIM | KM_ZONE_SPREAD,
1771 xfs_fs_inode_init_once);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001772 if (!xfs_inode_zone)
1773 goto out_destroy_efi_zone;
1774
1775 xfs_ili_zone =
1776 kmem_zone_init_flags(sizeof(xfs_inode_log_item_t), "xfs_ili",
1777 KM_ZONE_SPREAD, NULL);
1778 if (!xfs_ili_zone)
1779 goto out_destroy_inode_zone;
1780
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001781 return 0;
1782
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001783 out_destroy_inode_zone:
1784 kmem_zone_destroy(xfs_inode_zone);
1785 out_destroy_efi_zone:
1786 kmem_zone_destroy(xfs_efi_zone);
1787 out_destroy_efd_zone:
1788 kmem_zone_destroy(xfs_efd_zone);
1789 out_destroy_buf_item_zone:
1790 kmem_zone_destroy(xfs_buf_item_zone);
1791 out_destroy_trans_zone:
1792 kmem_zone_destroy(xfs_trans_zone);
1793 out_destroy_ifork_zone:
1794 kmem_zone_destroy(xfs_ifork_zone);
1795 out_destroy_dabuf_zone:
1796 kmem_zone_destroy(xfs_dabuf_zone);
1797 out_destroy_da_state_zone:
1798 kmem_zone_destroy(xfs_da_state_zone);
1799 out_destroy_btree_cur_zone:
1800 kmem_zone_destroy(xfs_btree_cur_zone);
1801 out_destroy_bmap_free_item_zone:
1802 kmem_zone_destroy(xfs_bmap_free_item_zone);
1803 out_destroy_log_ticket_zone:
1804 kmem_zone_destroy(xfs_log_ticket_zone);
1805 out_destroy_ioend_pool:
1806 mempool_destroy(xfs_ioend_pool);
1807 out_destroy_ioend_zone:
1808 kmem_zone_destroy(xfs_ioend_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001809 out:
1810 return -ENOMEM;
1811}
1812
1813STATIC void
1814xfs_destroy_zones(void)
1815{
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001816 kmem_zone_destroy(xfs_ili_zone);
1817 kmem_zone_destroy(xfs_inode_zone);
1818 kmem_zone_destroy(xfs_efi_zone);
1819 kmem_zone_destroy(xfs_efd_zone);
1820 kmem_zone_destroy(xfs_buf_item_zone);
1821 kmem_zone_destroy(xfs_trans_zone);
1822 kmem_zone_destroy(xfs_ifork_zone);
1823 kmem_zone_destroy(xfs_dabuf_zone);
1824 kmem_zone_destroy(xfs_da_state_zone);
1825 kmem_zone_destroy(xfs_btree_cur_zone);
1826 kmem_zone_destroy(xfs_bmap_free_item_zone);
1827 kmem_zone_destroy(xfs_log_ticket_zone);
1828 mempool_destroy(xfs_ioend_pool);
1829 kmem_zone_destroy(xfs_ioend_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001830
1831}
1832
1833STATIC int __init
1834init_xfs_fs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835{
1836 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837
Christoph Hellwig65795912008-11-28 14:23:33 +11001838 printk(KERN_INFO XFS_VERSION_STRING " with "
1839 XFS_BUILD_OPTIONS " enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840
Christoph Hellwig25e41b32008-12-03 12:20:39 +01001841 xfs_ioend_init();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001842 xfs_dir_startup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
Nathan Scott87582802006-03-14 13:18:19 +11001844 error = xfs_init_zones();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001845 if (error)
1846 goto out;
1847
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001848 error = xfs_mru_cache_init();
1849 if (error)
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001850 goto out_destroy_zones;
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001851
1852 error = xfs_filestream_init();
1853 if (error)
1854 goto out_mru_cache_uninit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855
Nathan Scottce8e9222006-01-11 15:39:08 +11001856 error = xfs_buf_init();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001857 if (error)
1858 goto out_filestream_uninit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001860 error = xfs_init_procfs();
1861 if (error)
1862 goto out_buf_terminate;
1863
1864 error = xfs_sysctl_register();
1865 if (error)
1866 goto out_cleanup_procfs;
1867
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 vfs_initquota();
1869
1870 error = register_filesystem(&xfs_fs_type);
1871 if (error)
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001872 goto out_sysctl_unregister;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 return 0;
1874
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001875 out_sysctl_unregister:
1876 xfs_sysctl_unregister();
1877 out_cleanup_procfs:
1878 xfs_cleanup_procfs();
1879 out_buf_terminate:
Nathan Scottce8e9222006-01-11 15:39:08 +11001880 xfs_buf_terminate();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001881 out_filestream_uninit:
1882 xfs_filestream_uninit();
1883 out_mru_cache_uninit:
1884 xfs_mru_cache_uninit();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001885 out_destroy_zones:
Nathan Scott87582802006-03-14 13:18:19 +11001886 xfs_destroy_zones();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001887 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 return error;
1889}
1890
1891STATIC void __exit
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001892exit_xfs_fs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893{
1894 vfs_exitquota();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 unregister_filesystem(&xfs_fs_type);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001896 xfs_sysctl_unregister();
1897 xfs_cleanup_procfs();
Nathan Scottce8e9222006-01-11 15:39:08 +11001898 xfs_buf_terminate();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001899 xfs_filestream_uninit();
1900 xfs_mru_cache_uninit();
Nathan Scott87582802006-03-14 13:18:19 +11001901 xfs_destroy_zones();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902}
1903
1904module_init(init_xfs_fs);
1905module_exit(exit_xfs_fs);
1906
1907MODULE_AUTHOR("Silicon Graphics, Inc.");
1908MODULE_DESCRIPTION(XFS_VERSION_STRING " with " XFS_BUILD_OPTIONS " enabled");
1909MODULE_LICENSE("GPL");