blob: 9e1538d48548b52a99449cb463534d9064aff957 [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"
Dave Chinner70a98832013-10-23 10:36:05 +110020#include "xfs_shared.h"
Dave Chinner6ca1c902013-08-12 20:49:26 +100021#include "xfs_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +110022#include "xfs_log_format.h"
23#include "xfs_trans_resv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_sb.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "xfs_mount.h"
Dave Chinner57062782013-10-15 09:17:51 +110026#include "xfs_da_format.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110028#include "xfs_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "xfs_bmap.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110030#include "xfs_alloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_error.h"
Christoph Hellwig9909c4a2007-10-11 18:11:14 +100032#include "xfs_fsops.h"
Dave Chinner239880e2013-10-23 10:50:10 +110033#include "xfs_trans.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_buf_item.h"
Dave Chinner239880e2013-10-23 10:50:10 +110035#include "xfs_log.h"
David Chinnera67d7c52007-11-23 16:29:32 +110036#include "xfs_log_priv.h"
Christoph Hellwig9f8868f2008-07-18 17:11:46 +100037#include "xfs_da_btree.h"
Dave Chinner2b9ab5a2013-08-12 20:49:37 +100038#include "xfs_dir2.h"
Christoph Hellwig9f8868f2008-07-18 17:11:46 +100039#include "xfs_extfree_item.h"
40#include "xfs_mru_cache.h"
41#include "xfs_inode_item.h"
Dave Chinner6d8b79c2012-10-08 21:56:09 +110042#include "xfs_icache.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000043#include "xfs_trace.h"
Dave Chinner3ebe7d22013-06-27 16:04:53 +100044#include "xfs_icreate_item.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110045#include "xfs_filestream.h"
46#include "xfs_quota.h"
Brian Foster65b65732014-09-09 11:52:42 +100047#include "xfs_sysfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49#include <linux/namei.h>
50#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090051#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <linux/mount.h>
Christoph Hellwig0829c362005-09-02 16:58:49 +100053#include <linux/mempool.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <linux/writeback.h>
Christoph Hellwig4df08c52005-09-05 08:34:18 +100055#include <linux/kthread.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080056#include <linux/freezer.h>
Christoph Hellwig62a877e2008-07-18 17:12:36 +100057#include <linux/parser.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Alexey Dobriyanb87221d2009-09-21 17:01:09 -070059static const struct super_operations xfs_super_operations;
David Chinner7989cb82007-02-10 18:34:56 +110060static kmem_zone_t *xfs_ioend_zone;
Christoph Hellwig0829c362005-09-02 16:58:49 +100061mempool_t *xfs_ioend_pool;
Brian Foster65b65732014-09-09 11:52:42 +100062
Dave Chinnere3aed1a2014-09-29 10:46:08 +100063static struct kset *xfs_kset; /* top-level xfs sysfs dir */
Brian Foster65b65732014-09-09 11:52:42 +100064#ifdef DEBUG
65static struct xfs_kobj xfs_dbg_kobj; /* global debug sysfs attrs */
66#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Christoph Hellwig62a877e2008-07-18 17:12:36 +100068/*
69 * Table driven mount option parser.
Christoph Hellwig62a877e2008-07-18 17:12:36 +100070 */
71enum {
Eric Sandeen2e74af02016-03-02 09:55:38 +110072 Opt_logbufs, Opt_logbsize, Opt_logdev, Opt_rtdev, Opt_biosize,
73 Opt_wsync, Opt_noalign, Opt_swalloc, Opt_sunit, Opt_swidth, Opt_nouuid,
74 Opt_mtpt, Opt_grpid, Opt_nogrpid, Opt_bsdgroups, Opt_sysvgroups,
75 Opt_allocsize, Opt_norecovery, Opt_barrier, Opt_nobarrier,
76 Opt_inode64, Opt_inode32, Opt_ikeep, Opt_noikeep,
77 Opt_largeio, Opt_nolargeio, Opt_attr2, Opt_noattr2, Opt_filestreams,
78 Opt_quota, Opt_noquota, Opt_usrquota, Opt_grpquota, Opt_prjquota,
79 Opt_uquota, Opt_gquota, Opt_pquota,
80 Opt_uqnoenforce, Opt_gqnoenforce, Opt_pqnoenforce, Opt_qnoenforce,
81 Opt_discard, Opt_nodiscard, Opt_dax, Opt_err,
Christoph Hellwig62a877e2008-07-18 17:12:36 +100082};
83
Steven Whitehousea447c092008-10-13 10:46:57 +010084static const match_table_t tokens = {
Eric Sandeen2e74af02016-03-02 09:55:38 +110085 {Opt_logbufs, "logbufs=%u"}, /* number of XFS log buffers */
86 {Opt_logbsize, "logbsize=%s"}, /* size of XFS log buffers */
87 {Opt_logdev, "logdev=%s"}, /* log device */
88 {Opt_rtdev, "rtdev=%s"}, /* realtime I/O device */
89 {Opt_biosize, "biosize=%u"}, /* log2 of preferred buffered io size */
90 {Opt_wsync, "wsync"}, /* safe-mode nfs compatible mount */
91 {Opt_noalign, "noalign"}, /* turn off stripe alignment */
92 {Opt_swalloc, "swalloc"}, /* turn on stripe width allocation */
93 {Opt_sunit, "sunit=%u"}, /* data volume stripe unit */
94 {Opt_swidth, "swidth=%u"}, /* data volume stripe width */
95 {Opt_nouuid, "nouuid"}, /* ignore filesystem UUID */
96 {Opt_mtpt, "mtpt"}, /* filesystem mount point */
97 {Opt_grpid, "grpid"}, /* group-ID from parent directory */
98 {Opt_nogrpid, "nogrpid"}, /* group-ID from current process */
99 {Opt_bsdgroups, "bsdgroups"}, /* group-ID from parent directory */
100 {Opt_sysvgroups,"sysvgroups"}, /* group-ID from current process */
101 {Opt_allocsize, "allocsize=%s"},/* preferred allocation size */
102 {Opt_norecovery,"norecovery"}, /* don't run XFS recovery */
103 {Opt_barrier, "barrier"}, /* use writer barriers for log write and
104 * unwritten extent conversion */
105 {Opt_nobarrier, "nobarrier"}, /* .. disable */
106 {Opt_inode64, "inode64"}, /* inodes can be allocated anywhere */
107 {Opt_inode32, "inode32"}, /* inode allocation limited to
108 * XFS_MAXINUMBER_32 */
109 {Opt_ikeep, "ikeep"}, /* do not free empty inode clusters */
110 {Opt_noikeep, "noikeep"}, /* free empty inode clusters */
111 {Opt_largeio, "largeio"}, /* report large I/O sizes in stat() */
112 {Opt_nolargeio, "nolargeio"}, /* do not report large I/O sizes
113 * in stat(). */
114 {Opt_attr2, "attr2"}, /* do use attr2 attribute format */
115 {Opt_noattr2, "noattr2"}, /* do not use attr2 attribute format */
116 {Opt_filestreams,"filestreams"},/* use filestreams allocator */
117 {Opt_quota, "quota"}, /* disk quotas (user) */
118 {Opt_noquota, "noquota"}, /* no quotas */
119 {Opt_usrquota, "usrquota"}, /* user quota enabled */
120 {Opt_grpquota, "grpquota"}, /* group quota enabled */
121 {Opt_prjquota, "prjquota"}, /* project quota enabled */
122 {Opt_uquota, "uquota"}, /* user quota (IRIX variant) */
123 {Opt_gquota, "gquota"}, /* group quota (IRIX variant) */
124 {Opt_pquota, "pquota"}, /* project quota (IRIX variant) */
125 {Opt_uqnoenforce,"uqnoenforce"},/* user quota limit enforcement */
126 {Opt_gqnoenforce,"gqnoenforce"},/* group quota limit enforcement */
127 {Opt_pqnoenforce,"pqnoenforce"},/* project quota limit enforcement */
128 {Opt_qnoenforce, "qnoenforce"}, /* same as uqnoenforce */
129 {Opt_discard, "discard"}, /* Discard unused blocks */
130 {Opt_nodiscard, "nodiscard"}, /* Do not discard unused blocks */
131
132 {Opt_dax, "dax"}, /* Enable direct access to bdev pages */
133 {Opt_err, NULL},
Christoph Hellwig62a877e2008-07-18 17:12:36 +1000134};
135
136
Markus Elfringa841b642016-01-04 16:13:21 +1100137STATIC int
Eric Sandeen2e74af02016-03-02 09:55:38 +1100138suffix_kstrtoint(const substring_t *s, unsigned int base, int *res)
David Chinnera67d7c52007-11-23 16:29:32 +1100139{
Abhijit Pawara17164e2013-01-09 19:34:42 +0530140 int last, shift_left_factor = 0, _res;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100141 char *value;
142 int ret = 0;
143
144 value = match_strdup(s);
145 if (!value)
146 return -ENOMEM;
David Chinnera67d7c52007-11-23 16:29:32 +1100147
148 last = strlen(value) - 1;
149 if (value[last] == 'K' || value[last] == 'k') {
150 shift_left_factor = 10;
151 value[last] = '\0';
152 }
153 if (value[last] == 'M' || value[last] == 'm') {
154 shift_left_factor = 20;
155 value[last] = '\0';
156 }
157 if (value[last] == 'G' || value[last] == 'g') {
158 shift_left_factor = 30;
159 value[last] = '\0';
160 }
161
Eric Sandeen2e74af02016-03-02 09:55:38 +1100162 if (kstrtoint(value, base, &_res))
163 ret = -EINVAL;
164 kfree(value);
Abhijit Pawara17164e2013-01-09 19:34:42 +0530165 *res = _res << shift_left_factor;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100166 return ret;
David Chinnera67d7c52007-11-23 16:29:32 +1100167}
168
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100169/*
170 * This function fills in xfs_mount_t fields based on mount args.
171 * Note: the superblock has _not_ yet been read in.
172 *
173 * Note that this function leaks the various device name allocations on
174 * failure. The caller takes care of them.
175 */
David Chinnera67d7c52007-11-23 16:29:32 +1100176STATIC int
177xfs_parseargs(
178 struct xfs_mount *mp,
Christoph Hellwig288699f2010-06-23 18:11:15 +1000179 char *options)
David Chinnera67d7c52007-11-23 16:29:32 +1100180{
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100181 struct super_block *sb = mp->m_super;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100182 char *p;
183 substring_t args[MAX_OPT_ARGS];
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100184 int dsunit = 0;
185 int dswidth = 0;
186 int iosize = 0;
Christoph Hellwiga5687782009-02-09 08:37:39 +0100187 __uint8_t iosizelog = 0;
David Chinnera67d7c52007-11-23 16:29:32 +1100188
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100189 /*
Dave Chinner4f107002011-03-07 10:00:35 +1100190 * set up the mount name first so all the errors will refer to the
191 * correct device.
192 */
193 mp->m_fsname = kstrndup(sb->s_id, MAXNAMELEN, GFP_KERNEL);
194 if (!mp->m_fsname)
Dave Chinner24513372014-06-25 14:58:08 +1000195 return -ENOMEM;
Dave Chinner4f107002011-03-07 10:00:35 +1100196 mp->m_fsname_len = strlen(mp->m_fsname) + 1;
197
198 /*
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100199 * Copy binary VFS mount flags we are interested in.
200 */
201 if (sb->s_flags & MS_RDONLY)
202 mp->m_flags |= XFS_MOUNT_RDONLY;
203 if (sb->s_flags & MS_DIRSYNC)
204 mp->m_flags |= XFS_MOUNT_DIRSYNC;
205 if (sb->s_flags & MS_SYNCHRONOUS)
206 mp->m_flags |= XFS_MOUNT_WSYNC;
207
208 /*
209 * Set some default flags that could be cleared by the mount option
210 * parsing.
211 */
212 mp->m_flags |= XFS_MOUNT_BARRIER;
213 mp->m_flags |= XFS_MOUNT_COMPAT_IOSIZE;
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100214
215 /*
216 * These can be overridden by the mount option parsing.
217 */
218 mp->m_logbufs = -1;
219 mp->m_logbsize = -1;
David Chinnera67d7c52007-11-23 16:29:32 +1100220
221 if (!options)
222 goto done;
223
Eric Sandeen2e74af02016-03-02 09:55:38 +1100224 while ((p = strsep(&options, ",")) != NULL) {
225 int token;
David Chinnera67d7c52007-11-23 16:29:32 +1100226
Eric Sandeen2e74af02016-03-02 09:55:38 +1100227 if (!*p)
228 continue;
229
230 token = match_token(p, tokens, args);
231 switch (token) {
232 case Opt_logbufs:
233 if (match_int(args, &mp->m_logbufs))
Dave Chinner24513372014-06-25 14:58:08 +1000234 return -EINVAL;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100235 break;
236 case Opt_logbsize:
237 if (suffix_kstrtoint(args, 10, &mp->m_logbsize))
Dave Chinner24513372014-06-25 14:58:08 +1000238 return -EINVAL;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100239 break;
240 case Opt_logdev:
241 mp->m_logname = match_strdup(args);
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100242 if (!mp->m_logname)
Dave Chinner24513372014-06-25 14:58:08 +1000243 return -ENOMEM;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100244 break;
245 case Opt_mtpt:
246 xfs_warn(mp, "%s option not allowed on this system", p);
Dave Chinner24513372014-06-25 14:58:08 +1000247 return -EINVAL;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100248 case Opt_rtdev:
249 mp->m_rtname = match_strdup(args);
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100250 if (!mp->m_rtname)
Dave Chinner24513372014-06-25 14:58:08 +1000251 return -ENOMEM;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100252 break;
253 case Opt_allocsize:
254 case Opt_biosize:
255 if (suffix_kstrtoint(args, 10, &iosize))
Dave Chinner24513372014-06-25 14:58:08 +1000256 return -EINVAL;
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100257 iosizelog = ffs(iosize) - 1;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100258 break;
259 case Opt_grpid:
260 case Opt_bsdgroups:
David Chinnera67d7c52007-11-23 16:29:32 +1100261 mp->m_flags |= XFS_MOUNT_GRPID;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100262 break;
263 case Opt_nogrpid:
264 case Opt_sysvgroups:
David Chinnera67d7c52007-11-23 16:29:32 +1100265 mp->m_flags &= ~XFS_MOUNT_GRPID;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100266 break;
267 case Opt_wsync:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100268 mp->m_flags |= XFS_MOUNT_WSYNC;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100269 break;
270 case Opt_norecovery:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100271 mp->m_flags |= XFS_MOUNT_NORECOVERY;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100272 break;
273 case Opt_noalign:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100274 mp->m_flags |= XFS_MOUNT_NOALIGN;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100275 break;
276 case Opt_swalloc:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100277 mp->m_flags |= XFS_MOUNT_SWALLOC;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100278 break;
279 case Opt_sunit:
280 if (match_int(args, &dsunit))
Dave Chinner24513372014-06-25 14:58:08 +1000281 return -EINVAL;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100282 break;
283 case Opt_swidth:
284 if (match_int(args, &dswidth))
Dave Chinner24513372014-06-25 14:58:08 +1000285 return -EINVAL;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100286 break;
287 case Opt_inode32:
Carlos Maiolino08bf5402012-09-20 10:32:37 -0300288 mp->m_flags |= XFS_MOUNT_SMALL_INUMS;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100289 break;
290 case Opt_inode64:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100291 mp->m_flags &= ~XFS_MOUNT_SMALL_INUMS;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100292 break;
293 case Opt_nouuid:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100294 mp->m_flags |= XFS_MOUNT_NOUUID;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100295 break;
296 case Opt_barrier:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100297 mp->m_flags |= XFS_MOUNT_BARRIER;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100298 break;
299 case Opt_nobarrier:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100300 mp->m_flags &= ~XFS_MOUNT_BARRIER;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100301 break;
302 case Opt_ikeep:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100303 mp->m_flags |= XFS_MOUNT_IKEEP;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100304 break;
305 case Opt_noikeep:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100306 mp->m_flags &= ~XFS_MOUNT_IKEEP;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100307 break;
308 case Opt_largeio:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100309 mp->m_flags &= ~XFS_MOUNT_COMPAT_IOSIZE;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100310 break;
311 case Opt_nolargeio:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100312 mp->m_flags |= XFS_MOUNT_COMPAT_IOSIZE;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100313 break;
314 case Opt_attr2:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100315 mp->m_flags |= XFS_MOUNT_ATTR2;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100316 break;
317 case Opt_noattr2:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100318 mp->m_flags &= ~XFS_MOUNT_ATTR2;
319 mp->m_flags |= XFS_MOUNT_NOATTR2;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100320 break;
321 case Opt_filestreams:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100322 mp->m_flags |= XFS_MOUNT_FILESTREAMS;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100323 break;
324 case Opt_noquota:
Chandra Seetharaman4177af32012-01-23 17:31:43 +0000325 mp->m_qflags &= ~XFS_ALL_QUOTA_ACCT;
326 mp->m_qflags &= ~XFS_ALL_QUOTA_ENFD;
327 mp->m_qflags &= ~XFS_ALL_QUOTA_ACTIVE;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100328 break;
329 case Opt_quota:
330 case Opt_uquota:
331 case Opt_usrquota:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100332 mp->m_qflags |= (XFS_UQUOTA_ACCT | XFS_UQUOTA_ACTIVE |
333 XFS_UQUOTA_ENFD);
Eric Sandeen2e74af02016-03-02 09:55:38 +1100334 break;
335 case Opt_qnoenforce:
336 case Opt_uqnoenforce:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100337 mp->m_qflags |= (XFS_UQUOTA_ACCT | XFS_UQUOTA_ACTIVE);
338 mp->m_qflags &= ~XFS_UQUOTA_ENFD;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100339 break;
340 case Opt_pquota:
341 case Opt_prjquota:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100342 mp->m_qflags |= (XFS_PQUOTA_ACCT | XFS_PQUOTA_ACTIVE |
Chandra Seetharaman83e782e2013-06-27 17:25:10 -0500343 XFS_PQUOTA_ENFD);
Eric Sandeen2e74af02016-03-02 09:55:38 +1100344 break;
345 case Opt_pqnoenforce:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100346 mp->m_qflags |= (XFS_PQUOTA_ACCT | XFS_PQUOTA_ACTIVE);
Chandra Seetharaman83e782e2013-06-27 17:25:10 -0500347 mp->m_qflags &= ~XFS_PQUOTA_ENFD;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100348 case Opt_gquota:
349 case Opt_grpquota:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100350 mp->m_qflags |= (XFS_GQUOTA_ACCT | XFS_GQUOTA_ACTIVE |
Chandra Seetharaman83e782e2013-06-27 17:25:10 -0500351 XFS_GQUOTA_ENFD);
Eric Sandeen2e74af02016-03-02 09:55:38 +1100352 break;
353 case Opt_gqnoenforce:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100354 mp->m_qflags |= (XFS_GQUOTA_ACCT | XFS_GQUOTA_ACTIVE);
Chandra Seetharaman83e782e2013-06-27 17:25:10 -0500355 mp->m_qflags &= ~XFS_GQUOTA_ENFD;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100356 break;
357 case Opt_discard:
Christoph Hellwige84661a2011-05-20 13:45:32 +0000358 mp->m_flags |= XFS_MOUNT_DISCARD;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100359 break;
360 case Opt_nodiscard:
Christoph Hellwige84661a2011-05-20 13:45:32 +0000361 mp->m_flags &= ~XFS_MOUNT_DISCARD;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100362 break;
Dave Chinnercbe4dab2015-06-04 09:19:18 +1000363#ifdef CONFIG_FS_DAX
Eric Sandeen2e74af02016-03-02 09:55:38 +1100364 case Opt_dax:
Dave Chinnercbe4dab2015-06-04 09:19:18 +1000365 mp->m_flags |= XFS_MOUNT_DAX;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100366 break;
Dave Chinnercbe4dab2015-06-04 09:19:18 +1000367#endif
Eric Sandeen2e74af02016-03-02 09:55:38 +1100368 default:
369 xfs_warn(mp, "unknown mount option [%s].", p);
Dave Chinner24513372014-06-25 14:58:08 +1000370 return -EINVAL;
David Chinnera67d7c52007-11-23 16:29:32 +1100371 }
372 }
373
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100374 /*
375 * no recovery flag requires a read-only mount
376 */
377 if ((mp->m_flags & XFS_MOUNT_NORECOVERY) &&
378 !(mp->m_flags & XFS_MOUNT_RDONLY)) {
Dave Chinner4f107002011-03-07 10:00:35 +1100379 xfs_warn(mp, "no-recovery mounts must be read-only.");
Dave Chinner24513372014-06-25 14:58:08 +1000380 return -EINVAL;
David Chinnera67d7c52007-11-23 16:29:32 +1100381 }
382
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100383 if ((mp->m_flags & XFS_MOUNT_NOALIGN) && (dsunit || dswidth)) {
Dave Chinner4f107002011-03-07 10:00:35 +1100384 xfs_warn(mp,
385 "sunit and swidth options incompatible with the noalign option");
Dave Chinner24513372014-06-25 14:58:08 +1000386 return -EINVAL;
David Chinnera67d7c52007-11-23 16:29:32 +1100387 }
388
Christoph Hellwig7d095252009-06-08 15:33:32 +0200389#ifndef CONFIG_XFS_QUOTA
390 if (XFS_IS_QUOTA_RUNNING(mp)) {
Dave Chinner4f107002011-03-07 10:00:35 +1100391 xfs_warn(mp, "quota support not available in this kernel.");
Dave Chinner24513372014-06-25 14:58:08 +1000392 return -EINVAL;
Christoph Hellwig7d095252009-06-08 15:33:32 +0200393 }
394#endif
395
David Chinnera67d7c52007-11-23 16:29:32 +1100396 if ((dsunit && !dswidth) || (!dsunit && dswidth)) {
Dave Chinner4f107002011-03-07 10:00:35 +1100397 xfs_warn(mp, "sunit and swidth must be specified together");
Dave Chinner24513372014-06-25 14:58:08 +1000398 return -EINVAL;
David Chinnera67d7c52007-11-23 16:29:32 +1100399 }
400
401 if (dsunit && (dswidth % dsunit != 0)) {
Dave Chinner4f107002011-03-07 10:00:35 +1100402 xfs_warn(mp,
403 "stripe width (%d) must be a multiple of the stripe unit (%d)",
David Chinnera67d7c52007-11-23 16:29:32 +1100404 dswidth, dsunit);
Dave Chinner24513372014-06-25 14:58:08 +1000405 return -EINVAL;
David Chinnera67d7c52007-11-23 16:29:32 +1100406 }
407
David Chinnera67d7c52007-11-23 16:29:32 +1100408done:
Jie Liu39a45d82013-05-02 19:27:47 +0800409 if (dsunit && !(mp->m_flags & XFS_MOUNT_NOALIGN)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100410 /*
411 * At this point the superblock has not been read
412 * in, therefore we do not know the block size.
413 * Before the mount call ends we will convert
414 * these to FSBs.
415 */
Jie Liu39a45d82013-05-02 19:27:47 +0800416 mp->m_dalign = dsunit;
417 mp->m_swidth = dswidth;
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100418 }
419
420 if (mp->m_logbufs != -1 &&
421 mp->m_logbufs != 0 &&
422 (mp->m_logbufs < XLOG_MIN_ICLOGS ||
423 mp->m_logbufs > XLOG_MAX_ICLOGS)) {
Dave Chinner4f107002011-03-07 10:00:35 +1100424 xfs_warn(mp, "invalid logbufs value: %d [not %d-%d]",
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100425 mp->m_logbufs, XLOG_MIN_ICLOGS, XLOG_MAX_ICLOGS);
Dave Chinner24513372014-06-25 14:58:08 +1000426 return -EINVAL;
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100427 }
428 if (mp->m_logbsize != -1 &&
429 mp->m_logbsize != 0 &&
430 (mp->m_logbsize < XLOG_MIN_RECORD_BSIZE ||
431 mp->m_logbsize > XLOG_MAX_RECORD_BSIZE ||
432 !is_power_of_2(mp->m_logbsize))) {
Dave Chinner4f107002011-03-07 10:00:35 +1100433 xfs_warn(mp,
434 "invalid logbufsize: %d [not 16k,32k,64k,128k or 256k]",
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100435 mp->m_logbsize);
Dave Chinner24513372014-06-25 14:58:08 +1000436 return -EINVAL;
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100437 }
438
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100439 if (iosizelog) {
440 if (iosizelog > XFS_MAX_IO_LOG ||
441 iosizelog < XFS_MIN_IO_LOG) {
Dave Chinner4f107002011-03-07 10:00:35 +1100442 xfs_warn(mp, "invalid log iosize: %d [not %d-%d]",
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100443 iosizelog, XFS_MIN_IO_LOG,
444 XFS_MAX_IO_LOG);
Dave Chinner24513372014-06-25 14:58:08 +1000445 return -EINVAL;
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100446 }
447
448 mp->m_flags |= XFS_MOUNT_DFLT_IOSIZE;
449 mp->m_readio_log = iosizelog;
450 mp->m_writeio_log = iosizelog;
451 }
452
David Chinnera67d7c52007-11-23 16:29:32 +1100453 return 0;
454}
455
456struct proc_xfs_info {
Dave Chinnercbe4dab2015-06-04 09:19:18 +1000457 uint64_t flag;
458 char *str;
David Chinnera67d7c52007-11-23 16:29:32 +1100459};
460
461STATIC int
462xfs_showargs(
463 struct xfs_mount *mp,
464 struct seq_file *m)
465{
466 static struct proc_xfs_info xfs_info_set[] = {
467 /* the few simple ones we can get from the mount struct */
Eric Sandeen2e74af02016-03-02 09:55:38 +1100468 { XFS_MOUNT_IKEEP, ",ikeep" },
469 { XFS_MOUNT_WSYNC, ",wsync" },
470 { XFS_MOUNT_NOALIGN, ",noalign" },
471 { XFS_MOUNT_SWALLOC, ",swalloc" },
472 { XFS_MOUNT_NOUUID, ",nouuid" },
473 { XFS_MOUNT_NORECOVERY, ",norecovery" },
474 { XFS_MOUNT_ATTR2, ",attr2" },
475 { XFS_MOUNT_FILESTREAMS, ",filestreams" },
476 { XFS_MOUNT_GRPID, ",grpid" },
477 { XFS_MOUNT_DISCARD, ",discard" },
478 { XFS_MOUNT_SMALL_INUMS, ",inode32" },
479 { XFS_MOUNT_DAX, ",dax" },
David Chinnera67d7c52007-11-23 16:29:32 +1100480 { 0, NULL }
481 };
482 static struct proc_xfs_info xfs_info_unset[] = {
483 /* the few simple ones we can get from the mount struct */
Eric Sandeen2e74af02016-03-02 09:55:38 +1100484 { XFS_MOUNT_COMPAT_IOSIZE, ",largeio" },
485 { XFS_MOUNT_BARRIER, ",nobarrier" },
486 { XFS_MOUNT_SMALL_INUMS, ",inode64" },
David Chinnera67d7c52007-11-23 16:29:32 +1100487 { 0, NULL }
488 };
489 struct proc_xfs_info *xfs_infop;
490
491 for (xfs_infop = xfs_info_set; xfs_infop->flag; xfs_infop++) {
492 if (mp->m_flags & xfs_infop->flag)
493 seq_puts(m, xfs_infop->str);
494 }
495 for (xfs_infop = xfs_info_unset; xfs_infop->flag; xfs_infop++) {
496 if (!(mp->m_flags & xfs_infop->flag))
497 seq_puts(m, xfs_infop->str);
498 }
499
500 if (mp->m_flags & XFS_MOUNT_DFLT_IOSIZE)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100501 seq_printf(m, ",allocsize=%dk",
David Chinnera67d7c52007-11-23 16:29:32 +1100502 (int)(1 << mp->m_writeio_log) >> 10);
503
504 if (mp->m_logbufs > 0)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100505 seq_printf(m, ",logbufs=%d", mp->m_logbufs);
David Chinnera67d7c52007-11-23 16:29:32 +1100506 if (mp->m_logbsize > 0)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100507 seq_printf(m, ",logbsize=%dk", mp->m_logbsize >> 10);
David Chinnera67d7c52007-11-23 16:29:32 +1100508
509 if (mp->m_logname)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100510 seq_show_option(m, "logdev", mp->m_logname);
David Chinnera67d7c52007-11-23 16:29:32 +1100511 if (mp->m_rtname)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100512 seq_show_option(m, "rtdev", mp->m_rtname);
David Chinnera67d7c52007-11-23 16:29:32 +1100513
514 if (mp->m_dalign > 0)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100515 seq_printf(m, ",sunit=%d",
David Chinnera67d7c52007-11-23 16:29:32 +1100516 (int)XFS_FSB_TO_BB(mp, mp->m_dalign));
517 if (mp->m_swidth > 0)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100518 seq_printf(m, ",swidth=%d",
David Chinnera67d7c52007-11-23 16:29:32 +1100519 (int)XFS_FSB_TO_BB(mp, mp->m_swidth));
520
521 if (mp->m_qflags & (XFS_UQUOTA_ACCT|XFS_UQUOTA_ENFD))
Eric Sandeen2e74af02016-03-02 09:55:38 +1100522 seq_puts(m, ",usrquota");
David Chinnera67d7c52007-11-23 16:29:32 +1100523 else if (mp->m_qflags & XFS_UQUOTA_ACCT)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100524 seq_puts(m, ",uqnoenforce");
David Chinnera67d7c52007-11-23 16:29:32 +1100525
Alex Elder988abe42009-09-02 17:02:24 -0500526 if (mp->m_qflags & XFS_PQUOTA_ACCT) {
Chandra Seetharaman83e782e2013-06-27 17:25:10 -0500527 if (mp->m_qflags & XFS_PQUOTA_ENFD)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100528 seq_puts(m, ",prjquota");
Alex Elder988abe42009-09-02 17:02:24 -0500529 else
Eric Sandeen2e74af02016-03-02 09:55:38 +1100530 seq_puts(m, ",pqnoenforce");
Chandra Seetharamand892d582013-07-19 17:36:02 -0500531 }
532 if (mp->m_qflags & XFS_GQUOTA_ACCT) {
Chandra Seetharaman83e782e2013-06-27 17:25:10 -0500533 if (mp->m_qflags & XFS_GQUOTA_ENFD)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100534 seq_puts(m, ",grpquota");
Alex Elder988abe42009-09-02 17:02:24 -0500535 else
Eric Sandeen2e74af02016-03-02 09:55:38 +1100536 seq_puts(m, ",gqnoenforce");
Alex Elder988abe42009-09-02 17:02:24 -0500537 }
David Chinnera67d7c52007-11-23 16:29:32 +1100538
539 if (!(mp->m_qflags & XFS_ALL_QUOTA_ACCT))
Eric Sandeen2e74af02016-03-02 09:55:38 +1100540 seq_puts(m, ",noquota");
David Chinnera67d7c52007-11-23 16:29:32 +1100541
542 return 0;
543}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544__uint64_t
545xfs_max_file_offset(
546 unsigned int blockshift)
547{
548 unsigned int pagefactor = 1;
549 unsigned int bitshift = BITS_PER_LONG - 1;
550
551 /* Figure out maximum filesize, on Linux this can depend on
552 * the filesystem blocksize (on 32 bit platforms).
Christoph Hellwigebdec242010-10-06 10:47:23 +0200553 * __block_write_begin does this in an [unsigned] long...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 * page->index << (PAGE_CACHE_SHIFT - bbits)
555 * So, for page sized blocks (4K on 32 bit platforms),
556 * this wraps at around 8Tb (hence MAX_LFS_FILESIZE which is
557 * (((u64)PAGE_CACHE_SIZE << (BITS_PER_LONG-1))-1)
558 * but for smaller blocksizes it is less (bbits = log2 bsize).
559 * Note1: get_block_t takes a long (implicit cast from above)
560 * Note2: The Large Block Device (LBD and HAVE_SECTOR_T) patch
561 * can optionally convert the [unsigned] long from above into
562 * an [unsigned] long long.
563 */
564
565#if BITS_PER_LONG == 32
Bartlomiej Zolnierkiewicz90c699a2009-06-19 08:08:50 +0200566# if defined(CONFIG_LBDAF)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 ASSERT(sizeof(sector_t) == 8);
568 pagefactor = PAGE_CACHE_SIZE;
569 bitshift = BITS_PER_LONG;
570# else
571 pagefactor = PAGE_CACHE_SIZE >> (PAGE_CACHE_SHIFT - blockshift);
572# endif
573#endif
574
575 return (((__uint64_t)pagefactor) << bitshift) - 1;
576}
577
Eric Sandeen9de67c32014-07-24 20:51:54 +1000578/*
579 * xfs_set_inode32() and xfs_set_inode64() are passed an agcount
580 * because in the growfs case, mp->m_sb.sb_agcount is not updated
581 * yet to the potentially higher ag count.
582 */
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300583xfs_agnumber_t
Eric Sandeen9de67c32014-07-24 20:51:54 +1000584xfs_set_inode32(struct xfs_mount *mp, xfs_agnumber_t agcount)
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300585{
586 xfs_agnumber_t index = 0;
Carlos Maiolino4056c1d2012-09-20 10:32:40 -0300587 xfs_agnumber_t maxagi = 0;
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300588 xfs_sb_t *sbp = &mp->m_sb;
589 xfs_agnumber_t max_metadata;
Eric Sandeen54aa61f2014-07-24 20:53:10 +1000590 xfs_agino_t agino;
591 xfs_ino_t ino;
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300592 xfs_perag_t *pag;
593
594 /* Calculate how much should be reserved for inodes to meet
595 * the max inode percentage.
596 */
597 if (mp->m_maxicount) {
598 __uint64_t icount;
599
600 icount = sbp->sb_dblocks * sbp->sb_imax_pct;
601 do_div(icount, 100);
602 icount += sbp->sb_agblocks - 1;
603 do_div(icount, sbp->sb_agblocks);
604 max_metadata = icount;
605 } else {
Eric Sandeen9de67c32014-07-24 20:51:54 +1000606 max_metadata = agcount;
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300607 }
608
Eric Sandeen54aa61f2014-07-24 20:53:10 +1000609 agino = XFS_OFFBNO_TO_AGINO(mp, sbp->sb_agblocks - 1, 0);
610
Eric Sandeen9de67c32014-07-24 20:51:54 +1000611 for (index = 0; index < agcount; index++) {
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300612 ino = XFS_AGINO_TO_INO(mp, index, agino);
Carlos Maiolino4056c1d2012-09-20 10:32:40 -0300613
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300614 if (ino > XFS_MAXINUMBER_32) {
Carlos Maiolino4056c1d2012-09-20 10:32:40 -0300615 pag = xfs_perag_get(mp, index);
616 pag->pagi_inodeok = 0;
617 pag->pagf_metadata = 0;
618 xfs_perag_put(pag);
619 continue;
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300620 }
621
622 pag = xfs_perag_get(mp, index);
623 pag->pagi_inodeok = 1;
Carlos Maiolino4056c1d2012-09-20 10:32:40 -0300624 maxagi++;
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300625 if (index < max_metadata)
626 pag->pagf_metadata = 1;
627 xfs_perag_put(pag);
628 }
Carlos Maiolino4056c1d2012-09-20 10:32:40 -0300629 mp->m_flags |= (XFS_MOUNT_32BITINODES |
630 XFS_MOUNT_SMALL_INUMS);
631
632 return maxagi;
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300633}
634
635xfs_agnumber_t
Eric Sandeen9de67c32014-07-24 20:51:54 +1000636xfs_set_inode64(struct xfs_mount *mp, xfs_agnumber_t agcount)
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300637{
638 xfs_agnumber_t index = 0;
639
Eric Sandeen9de67c32014-07-24 20:51:54 +1000640 for (index = 0; index < agcount; index++) {
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300641 struct xfs_perag *pag;
642
643 pag = xfs_perag_get(mp, index);
644 pag->pagi_inodeok = 1;
645 pag->pagf_metadata = 0;
646 xfs_perag_put(pag);
647 }
648
649 /* There is no need for lock protection on m_flags,
650 * the rw_semaphore of the VFS superblock is locked
651 * during mount/umount/remount operations, so this is
652 * enough to avoid concurency on the m_flags field
653 */
654 mp->m_flags &= ~(XFS_MOUNT_32BITINODES |
655 XFS_MOUNT_SMALL_INUMS);
656 return index;
657}
658
Hannes Eder3180e662009-03-04 19:34:10 +0100659STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660xfs_blkdev_get(
661 xfs_mount_t *mp,
662 const char *name,
663 struct block_device **bdevp)
664{
665 int error = 0;
666
Tejun Heod4d77622010-11-13 11:55:18 +0100667 *bdevp = blkdev_get_by_path(name, FMODE_READ|FMODE_WRITE|FMODE_EXCL,
668 mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 if (IS_ERR(*bdevp)) {
670 error = PTR_ERR(*bdevp);
Eric Sandeen77af5742014-12-24 09:47:27 +1100671 xfs_warn(mp, "Invalid device [%s], error=%d", name, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 }
673
Dave Chinner24513372014-06-25 14:58:08 +1000674 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675}
676
Hannes Eder3180e662009-03-04 19:34:10 +0100677STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678xfs_blkdev_put(
679 struct block_device *bdev)
680{
681 if (bdev)
Tejun Heoe525fd82010-11-13 11:55:17 +0100682 blkdev_put(bdev, FMODE_READ|FMODE_WRITE|FMODE_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683}
684
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100685void
686xfs_blkdev_issue_flush(
687 xfs_buftarg_t *buftarg)
688{
Shaohua Li7582df52012-04-24 21:23:46 +0800689 blkdev_issue_flush(buftarg->bt_bdev, GFP_NOFS, NULL);
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100690}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000692STATIC void
693xfs_close_devices(
694 struct xfs_mount *mp)
695{
696 if (mp->m_logdev_targp && mp->m_logdev_targp != mp->m_ddev_targp) {
Lachlan McIlroyc032bfc2008-07-18 17:13:12 +1000697 struct block_device *logdev = mp->m_logdev_targp->bt_bdev;
Christoph Hellwigb7963132009-03-03 14:48:37 -0500698 xfs_free_buftarg(mp, mp->m_logdev_targp);
Lachlan McIlroyc032bfc2008-07-18 17:13:12 +1000699 xfs_blkdev_put(logdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000700 }
701 if (mp->m_rtdev_targp) {
Lachlan McIlroyc032bfc2008-07-18 17:13:12 +1000702 struct block_device *rtdev = mp->m_rtdev_targp->bt_bdev;
Christoph Hellwigb7963132009-03-03 14:48:37 -0500703 xfs_free_buftarg(mp, mp->m_rtdev_targp);
Lachlan McIlroyc032bfc2008-07-18 17:13:12 +1000704 xfs_blkdev_put(rtdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000705 }
Christoph Hellwigb7963132009-03-03 14:48:37 -0500706 xfs_free_buftarg(mp, mp->m_ddev_targp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000707}
708
709/*
710 * The file system configurations are:
711 * (1) device (partition) with data and internal log
712 * (2) logical volume with data and log subvolumes.
713 * (3) logical volume with data, log, and realtime subvolumes.
714 *
715 * We only have to handle opening the log and realtime volumes here if
716 * they are present. The data subvolume has already been opened by
717 * get_sb_bdev() and is stored in sb->s_bdev.
718 */
719STATIC int
720xfs_open_devices(
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100721 struct xfs_mount *mp)
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000722{
723 struct block_device *ddev = mp->m_super->s_bdev;
724 struct block_device *logdev = NULL, *rtdev = NULL;
725 int error;
726
727 /*
728 * Open real time and log devices - order is important.
729 */
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100730 if (mp->m_logname) {
731 error = xfs_blkdev_get(mp, mp->m_logname, &logdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000732 if (error)
733 goto out;
734 }
735
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100736 if (mp->m_rtname) {
737 error = xfs_blkdev_get(mp, mp->m_rtname, &rtdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000738 if (error)
739 goto out_close_logdev;
740
741 if (rtdev == ddev || rtdev == logdev) {
Dave Chinner4f107002011-03-07 10:00:35 +1100742 xfs_warn(mp,
743 "Cannot mount filesystem with identical rtdev and ddev/logdev.");
Dave Chinner24513372014-06-25 14:58:08 +1000744 error = -EINVAL;
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000745 goto out_close_rtdev;
746 }
747 }
748
749 /*
750 * Setup xfs_mount buffer target pointers
751 */
Dave Chinner24513372014-06-25 14:58:08 +1000752 error = -ENOMEM;
Eric Sandeen34dcefd2014-04-14 19:01:00 +1000753 mp->m_ddev_targp = xfs_alloc_buftarg(mp, ddev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000754 if (!mp->m_ddev_targp)
755 goto out_close_rtdev;
756
757 if (rtdev) {
Eric Sandeen34dcefd2014-04-14 19:01:00 +1000758 mp->m_rtdev_targp = xfs_alloc_buftarg(mp, rtdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000759 if (!mp->m_rtdev_targp)
760 goto out_free_ddev_targ;
761 }
762
763 if (logdev && logdev != ddev) {
Eric Sandeen34dcefd2014-04-14 19:01:00 +1000764 mp->m_logdev_targp = xfs_alloc_buftarg(mp, logdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000765 if (!mp->m_logdev_targp)
766 goto out_free_rtdev_targ;
767 } else {
768 mp->m_logdev_targp = mp->m_ddev_targp;
769 }
770
771 return 0;
772
773 out_free_rtdev_targ:
774 if (mp->m_rtdev_targp)
Christoph Hellwigb7963132009-03-03 14:48:37 -0500775 xfs_free_buftarg(mp, mp->m_rtdev_targp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000776 out_free_ddev_targ:
Christoph Hellwigb7963132009-03-03 14:48:37 -0500777 xfs_free_buftarg(mp, mp->m_ddev_targp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000778 out_close_rtdev:
Markus Elfringd2a5e3c2014-12-01 08:24:20 +1100779 xfs_blkdev_put(rtdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000780 out_close_logdev:
781 if (logdev && logdev != ddev)
782 xfs_blkdev_put(logdev);
783 out:
784 return error;
785}
786
Christoph Hellwige34b5622008-05-20 15:10:36 +1000787/*
788 * Setup xfs_mount buffer target pointers based on superblock
789 */
790STATIC int
791xfs_setup_devices(
792 struct xfs_mount *mp)
793{
794 int error;
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000795
Eric Sandeena96c4152014-04-14 19:00:29 +1000796 error = xfs_setsize_buftarg(mp->m_ddev_targp, mp->m_sb.sb_sectsize);
Christoph Hellwige34b5622008-05-20 15:10:36 +1000797 if (error)
798 return error;
799
800 if (mp->m_logdev_targp && mp->m_logdev_targp != mp->m_ddev_targp) {
801 unsigned int log_sector_size = BBSIZE;
802
803 if (xfs_sb_version_hassector(&mp->m_sb))
804 log_sector_size = mp->m_sb.sb_logsectsize;
805 error = xfs_setsize_buftarg(mp->m_logdev_targp,
Christoph Hellwige34b5622008-05-20 15:10:36 +1000806 log_sector_size);
807 if (error)
808 return error;
809 }
810 if (mp->m_rtdev_targp) {
811 error = xfs_setsize_buftarg(mp->m_rtdev_targp,
Christoph Hellwige34b5622008-05-20 15:10:36 +1000812 mp->m_sb.sb_sectsize);
813 if (error)
814 return error;
815 }
816
817 return 0;
818}
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000819
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000820STATIC int
821xfs_init_mount_workqueues(
822 struct xfs_mount *mp)
823{
Brian Foster78c931b2014-11-28 13:59:58 +1100824 mp->m_buf_workqueue = alloc_workqueue("xfs-buf/%s",
Brian Fosterb29c70f2014-12-04 09:43:17 +1100825 WQ_MEM_RECLAIM|WQ_FREEZABLE, 1, mp->m_fsname);
Brian Foster78c931b2014-11-28 13:59:58 +1100826 if (!mp->m_buf_workqueue)
827 goto out;
828
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000829 mp->m_data_workqueue = alloc_workqueue("xfs-data/%s",
Brian Foster8018ec02014-09-09 11:44:46 +1000830 WQ_MEM_RECLAIM|WQ_FREEZABLE, 0, mp->m_fsname);
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000831 if (!mp->m_data_workqueue)
Brian Foster78c931b2014-11-28 13:59:58 +1100832 goto out_destroy_buf;
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000833
834 mp->m_unwritten_workqueue = alloc_workqueue("xfs-conv/%s",
Brian Foster8018ec02014-09-09 11:44:46 +1000835 WQ_MEM_RECLAIM|WQ_FREEZABLE, 0, mp->m_fsname);
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000836 if (!mp->m_unwritten_workqueue)
837 goto out_destroy_data_iodone_queue;
838
Dave Chinner4c2d5422012-04-23 17:54:32 +1000839 mp->m_cil_workqueue = alloc_workqueue("xfs-cil/%s",
Brian Foster8018ec02014-09-09 11:44:46 +1000840 WQ_MEM_RECLAIM|WQ_FREEZABLE, 0, mp->m_fsname);
Dave Chinner4c2d5422012-04-23 17:54:32 +1000841 if (!mp->m_cil_workqueue)
842 goto out_destroy_unwritten;
Dave Chinner58896082012-10-08 21:56:05 +1100843
844 mp->m_reclaim_workqueue = alloc_workqueue("xfs-reclaim/%s",
Chris Mason7a29ac42015-11-10 10:10:34 +1100845 WQ_MEM_RECLAIM|WQ_FREEZABLE, 0, mp->m_fsname);
Dave Chinner58896082012-10-08 21:56:05 +1100846 if (!mp->m_reclaim_workqueue)
847 goto out_destroy_cil;
848
849 mp->m_log_workqueue = alloc_workqueue("xfs-log/%s",
Chris Mason7a29ac42015-11-10 10:10:34 +1100850 WQ_MEM_RECLAIM|WQ_FREEZABLE|WQ_HIGHPRI, 0,
851 mp->m_fsname);
Dave Chinner58896082012-10-08 21:56:05 +1100852 if (!mp->m_log_workqueue)
853 goto out_destroy_reclaim;
854
Brian Foster579b62f2012-11-06 09:50:47 -0500855 mp->m_eofblocks_workqueue = alloc_workqueue("xfs-eofblocks/%s",
Chris Mason7a29ac42015-11-10 10:10:34 +1100856 WQ_MEM_RECLAIM|WQ_FREEZABLE, 0, mp->m_fsname);
Brian Foster579b62f2012-11-06 09:50:47 -0500857 if (!mp->m_eofblocks_workqueue)
858 goto out_destroy_log;
859
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000860 return 0;
861
Brian Foster579b62f2012-11-06 09:50:47 -0500862out_destroy_log:
863 destroy_workqueue(mp->m_log_workqueue);
Dave Chinner58896082012-10-08 21:56:05 +1100864out_destroy_reclaim:
865 destroy_workqueue(mp->m_reclaim_workqueue);
866out_destroy_cil:
867 destroy_workqueue(mp->m_cil_workqueue);
Dave Chinner4c2d5422012-04-23 17:54:32 +1000868out_destroy_unwritten:
869 destroy_workqueue(mp->m_unwritten_workqueue);
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000870out_destroy_data_iodone_queue:
871 destroy_workqueue(mp->m_data_workqueue);
Brian Foster78c931b2014-11-28 13:59:58 +1100872out_destroy_buf:
873 destroy_workqueue(mp->m_buf_workqueue);
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000874out:
875 return -ENOMEM;
876}
877
878STATIC void
879xfs_destroy_mount_workqueues(
880 struct xfs_mount *mp)
881{
Brian Foster579b62f2012-11-06 09:50:47 -0500882 destroy_workqueue(mp->m_eofblocks_workqueue);
Dave Chinner58896082012-10-08 21:56:05 +1100883 destroy_workqueue(mp->m_log_workqueue);
884 destroy_workqueue(mp->m_reclaim_workqueue);
Dave Chinner4c2d5422012-04-23 17:54:32 +1000885 destroy_workqueue(mp->m_cil_workqueue);
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000886 destroy_workqueue(mp->m_data_workqueue);
887 destroy_workqueue(mp->m_unwritten_workqueue);
Brian Foster78c931b2014-11-28 13:59:58 +1100888 destroy_workqueue(mp->m_buf_workqueue);
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000889}
890
Dave Chinner9aa05002012-10-08 21:56:04 +1100891/*
892 * Flush all dirty data to disk. Must not be called while holding an XFS_ILOCK
893 * or a page lock. We use sync_inodes_sb() here to ensure we block while waiting
894 * for IO to complete so that we effectively throttle multiple callers to the
895 * rate at which IO is completing.
896 */
897void
898xfs_flush_inodes(
899 struct xfs_mount *mp)
900{
901 struct super_block *sb = mp->m_super;
902
903 if (down_read_trylock(&sb->s_umount)) {
Jan Kara0dc83bd2014-02-21 11:19:04 +0100904 sync_inodes_sb(sb);
Dave Chinner9aa05002012-10-08 21:56:04 +1100905 up_read(&sb->s_umount);
906 }
907}
908
David Chinnerbf904242008-10-30 17:36:14 +1100909/* Catch misguided souls that try to use this interface on XFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910STATIC struct inode *
Nathan Scotta50cd262006-03-14 14:06:18 +1100911xfs_fs_alloc_inode(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 struct super_block *sb)
913{
David Chinnerbf904242008-10-30 17:36:14 +1100914 BUG();
Lachlan McIlroy493dca62008-10-30 17:36:52 +1100915 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916}
917
David Chinnerbf904242008-10-30 17:36:14 +1100918/*
David Chinner99fa8cb2008-10-30 17:36:40 +1100919 * Now that the generic code is guaranteed not to be accessing
920 * the linux inode, we can reclaim the inode.
David Chinnerbf904242008-10-30 17:36:14 +1100921 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922STATIC void
Nathan Scotta50cd262006-03-14 14:06:18 +1100923xfs_fs_destroy_inode(
Christoph Hellwig848ce8f2009-09-29 13:48:56 +0000924 struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925{
Christoph Hellwig848ce8f2009-09-29 13:48:56 +0000926 struct xfs_inode *ip = XFS_I(inode);
927
Christoph Hellwigcca28fb2010-06-24 11:57:09 +1000928 trace_xfs_destroy_inode(ip);
David Chinner99fa8cb2008-10-30 17:36:40 +1100929
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100930 XFS_STATS_INC(ip->i_mount, vn_reclaim);
Christoph Hellwig848ce8f2009-09-29 13:48:56 +0000931
Christoph Hellwig848ce8f2009-09-29 13:48:56 +0000932 ASSERT(XFS_FORCED_SHUTDOWN(ip->i_mount) || ip->i_delayed_blks == 0);
933
934 /*
935 * We should never get here with one of the reclaim flags already set.
936 */
937 ASSERT_ALWAYS(!xfs_iflags_test(ip, XFS_IRECLAIMABLE));
938 ASSERT_ALWAYS(!xfs_iflags_test(ip, XFS_IRECLAIM));
939
940 /*
Dave Chinner57817c62010-01-10 23:51:47 +0000941 * We always use background reclaim here because even if the
942 * inode is clean, it still may be under IO and hence we have
943 * to take the flush lock. The background reclaim path handles
944 * this more efficiently than we can here, so simply let background
945 * reclaim tear down all inodes.
Christoph Hellwig848ce8f2009-09-29 13:48:56 +0000946 */
Dave Chinner57817c62010-01-10 23:51:47 +0000947 xfs_inode_set_reclaim_tag(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948}
949
David Chinner07c8f672008-10-30 16:11:59 +1100950/*
951 * Slab object creation initialisation for the XFS inode.
952 * This covers only the idempotent fields in the XFS inode;
953 * all other fields need to be initialised on allocation
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400954 * from the slab. This avoids the need to repeatedly initialise
David Chinner07c8f672008-10-30 16:11:59 +1100955 * fields in the xfs inode that left in the initialise state
956 * when freeing the inode.
957 */
David Chinnerbf904242008-10-30 17:36:14 +1100958STATIC void
959xfs_fs_inode_init_once(
David Chinner07c8f672008-10-30 16:11:59 +1100960 void *inode)
961{
962 struct xfs_inode *ip = inode;
963
964 memset(ip, 0, sizeof(struct xfs_inode));
David Chinnerbf904242008-10-30 17:36:14 +1100965
966 /* vfs inode */
967 inode_init_once(VFS_I(ip));
968
969 /* xfs inode */
David Chinner07c8f672008-10-30 16:11:59 +1100970 atomic_set(&ip->i_pincount, 0);
971 spin_lock_init(&ip->i_flags_lock);
David Chinner07c8f672008-10-30 16:11:59 +1100972
Dave Chinner653c60b2015-02-23 21:43:37 +1100973 mrlock_init(&ip->i_mmaplock, MRLOCK_ALLOW_EQUAL_PRI|MRLOCK_BARRIER,
974 "xfsino", ip->i_ino);
David Chinner07c8f672008-10-30 16:11:59 +1100975 mrlock_init(&ip->i_lock, MRLOCK_ALLOW_EQUAL_PRI|MRLOCK_BARRIER,
976 "xfsino", ip->i_ino);
David Chinner07c8f672008-10-30 16:11:59 +1100977}
978
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979STATIC void
Al Virob57922d2010-06-07 14:34:48 -0400980xfs_fs_evict_inode(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 struct inode *inode)
982{
Christoph Hellwig1543d792007-08-29 11:46:47 +1000983 xfs_inode_t *ip = XFS_I(inode);
Christoph Hellwig56d433e2005-09-05 08:23:54 +1000984
Christoph Hellwig4f59af72012-07-04 11:13:33 -0400985 ASSERT(!rwsem_is_locked(&ip->i_iolock.mr_lock));
986
Al Virob57922d2010-06-07 14:34:48 -0400987 trace_xfs_evict_inode(ip);
Christoph Hellwigcca28fb2010-06-24 11:57:09 +1000988
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700989 truncate_inode_pages_final(&inode->i_data);
Jan Karadbd57682012-05-03 14:48:02 +0200990 clear_inode(inode);
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100991 XFS_STATS_INC(ip->i_mount, vn_rele);
992 XFS_STATS_INC(ip->i_mount, vn_remove);
Christoph Hellwig56d433e2005-09-05 08:23:54 +1000993
David Chinner99fa8cb2008-10-30 17:36:40 +1100994 xfs_inactive(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995}
996
Dave Chinner5132ba82012-03-22 05:15:10 +0000997/*
998 * We do an unlocked check for XFS_IDONTCACHE here because we are already
999 * serialised against cache hits here via the inode->i_lock and igrab() in
1000 * xfs_iget_cache_hit(). Hence a lookup that might clear this flag will not be
1001 * racing with us, and it avoids needing to grab a spinlock here for every inode
1002 * we drop the final reference on.
1003 */
1004STATIC int
1005xfs_fs_drop_inode(
1006 struct inode *inode)
1007{
1008 struct xfs_inode *ip = XFS_I(inode);
1009
1010 return generic_drop_inode(inode) || (ip->i_flags & XFS_IDONTCACHE);
1011}
1012
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013STATIC void
Christoph Hellwiga7381592008-08-13 16:04:05 +10001014xfs_free_fsname(
1015 struct xfs_mount *mp)
1016{
1017 kfree(mp->m_fsname);
1018 kfree(mp->m_rtname);
1019 kfree(mp->m_logname);
1020}
1021
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022STATIC int
Christoph Hellwig69961a22009-10-06 20:29:28 +00001023xfs_fs_sync_fs(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 struct super_block *sb,
1025 int wait)
1026{
Christoph Hellwig745f6912007-08-30 17:20:39 +10001027 struct xfs_mount *mp = XFS_M(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
Lachlan McIlroye893bff2007-10-12 11:13:35 +10001029 /*
Christoph Hellwig34625c62011-12-06 21:58:12 +00001030 * Doing anything during the async pass would be counterproductive.
Lachlan McIlroye893bff2007-10-12 11:13:35 +10001031 */
Christoph Hellwig34625c62011-12-06 21:58:12 +00001032 if (!wait)
Christoph Hellwig69961a22009-10-06 20:29:28 +00001033 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
Dave Chinner34061f52012-10-08 21:56:06 +11001035 xfs_log_force(mp, XFS_LOG_SYNC);
Christoph Hellwig69961a22009-10-06 20:29:28 +00001036 if (laptop_mode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 /*
1038 * The disk must be active because we're syncing.
Dave Chinnerf661f1e2012-10-08 21:56:02 +11001039 * We schedule log work now (now that the disk is
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 * active) instead of later (when it might not be).
1041 */
Dave Chinnerf661f1e2012-10-08 21:56:02 +11001042 flush_delayed_work(&mp->m_log->l_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 }
1044
Christoph Hellwig69961a22009-10-06 20:29:28 +00001045 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046}
1047
1048STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001049xfs_fs_statfs(
David Howells726c3342006-06-23 02:02:58 -07001050 struct dentry *dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 struct kstatfs *statp)
1052{
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001053 struct xfs_mount *mp = XFS_M(dentry->d_sb);
1054 xfs_sb_t *sbp = &mp->m_sb;
David Howells2b0143b2015-03-17 22:25:59 +00001055 struct xfs_inode *ip = XFS_I(d_inode(dentry));
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001056 __uint64_t fakeinos, id;
Dave Chinner501ab322015-02-23 21:19:28 +11001057 __uint64_t icount;
Dave Chinnere88b64e2015-02-23 21:19:53 +11001058 __uint64_t ifree;
Dave Chinner0d485ad2015-02-23 21:22:03 +11001059 __uint64_t fdblocks;
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001060 xfs_extlen_t lsize;
Stuart Brodsky2fe33662010-08-24 11:46:05 +10001061 __int64_t ffree;
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001062
1063 statp->f_type = XFS_SB_MAGIC;
1064 statp->f_namelen = MAXNAMELEN - 1;
1065
1066 id = huge_encode_dev(mp->m_ddev_targp->bt_dev);
1067 statp->f_fsid.val[0] = (u32)id;
1068 statp->f_fsid.val[1] = (u32)(id >> 32);
1069
Dave Chinner501ab322015-02-23 21:19:28 +11001070 icount = percpu_counter_sum(&mp->m_icount);
Dave Chinnere88b64e2015-02-23 21:19:53 +11001071 ifree = percpu_counter_sum(&mp->m_ifree);
Dave Chinner0d485ad2015-02-23 21:22:03 +11001072 fdblocks = percpu_counter_sum(&mp->m_fdblocks);
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001073
1074 spin_lock(&mp->m_sb_lock);
1075 statp->f_bsize = sbp->sb_blocksize;
1076 lsize = sbp->sb_logstart ? sbp->sb_logblocks : 0;
1077 statp->f_blocks = sbp->sb_dblocks - lsize;
Dave Chinner0d485ad2015-02-23 21:22:03 +11001078 spin_unlock(&mp->m_sb_lock);
1079
1080 statp->f_bfree = fdblocks - XFS_ALLOC_SET_ASIDE(mp);
1081 statp->f_bavail = statp->f_bfree;
1082
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001083 fakeinos = statp->f_bfree << sbp->sb_inopblog;
Dave Chinner501ab322015-02-23 21:19:28 +11001084 statp->f_files = MIN(icount + fakeinos, (__uint64_t)XFS_MAXINUMBER);
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001085 if (mp->m_maxicount)
Christoph Hellwiga19d9f82009-03-29 09:51:08 +02001086 statp->f_files = min_t(typeof(statp->f_files),
1087 statp->f_files,
1088 mp->m_maxicount);
Stuart Brodsky2fe33662010-08-24 11:46:05 +10001089
Eric Sandeen01f98822015-02-06 09:53:02 +11001090 /* If sb_icount overshot maxicount, report actual allocation */
1091 statp->f_files = max_t(typeof(statp->f_files),
1092 statp->f_files,
1093 sbp->sb_icount);
1094
Stuart Brodsky2fe33662010-08-24 11:46:05 +10001095 /* make sure statp->f_ffree does not underflow */
Dave Chinnere88b64e2015-02-23 21:19:53 +11001096 ffree = statp->f_files - (icount - ifree);
Stuart Brodsky2fe33662010-08-24 11:46:05 +10001097 statp->f_ffree = max_t(__int64_t, ffree, 0);
1098
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001099
Jie Liuda5bf952012-04-12 03:59:57 +00001100 if ((ip->i_d.di_flags & XFS_DIFLAG_PROJINHERIT) &&
Chandra Seetharaman83e782e2013-06-27 17:25:10 -05001101 ((mp->m_qflags & (XFS_PQUOTA_ACCT|XFS_PQUOTA_ENFD))) ==
1102 (XFS_PQUOTA_ACCT|XFS_PQUOTA_ENFD))
Christoph Hellwig7d095252009-06-08 15:33:32 +02001103 xfs_qm_statvfs(ip, statp);
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001104 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105}
1106
Eric Sandeend5db0f92010-02-05 22:59:53 +00001107STATIC void
1108xfs_save_resvblks(struct xfs_mount *mp)
1109{
1110 __uint64_t resblks = 0;
1111
1112 mp->m_resblks_save = mp->m_resblks;
1113 xfs_reserve_blocks(mp, &resblks, NULL);
1114}
1115
1116STATIC void
1117xfs_restore_resvblks(struct xfs_mount *mp)
1118{
1119 __uint64_t resblks;
1120
1121 if (mp->m_resblks_save) {
1122 resblks = mp->m_resblks_save;
1123 mp->m_resblks_save = 0;
1124 } else
1125 resblks = xfs_default_resblks(mp);
1126
1127 xfs_reserve_blocks(mp, &resblks, NULL);
1128}
1129
Dave Chinnerc7eea6f2012-10-08 21:56:07 +11001130/*
1131 * Trigger writeback of all the dirty metadata in the file system.
1132 *
1133 * This ensures that the metadata is written to their location on disk rather
1134 * than just existing in transactions in the log. This means after a quiesce
Dave Chinnerc75921a2012-10-08 21:56:08 +11001135 * there is no log replay required to write the inodes to disk - this is the
1136 * primary difference between a sync and a quiesce.
Dave Chinnerc7eea6f2012-10-08 21:56:07 +11001137 *
Dave Chinnerc75921a2012-10-08 21:56:08 +11001138 * Note: xfs_log_quiesce() stops background log work - the callers must ensure
1139 * it is started again when appropriate.
Dave Chinnerc7eea6f2012-10-08 21:56:07 +11001140 */
Dave Chinner632b89e2013-10-29 22:11:58 +11001141static void
Dave Chinnerc7eea6f2012-10-08 21:56:07 +11001142xfs_quiesce_attr(
1143 struct xfs_mount *mp)
1144{
1145 int error = 0;
1146
1147 /* wait for all modifications to complete */
1148 while (atomic_read(&mp->m_active_trans) > 0)
1149 delay(100);
1150
1151 /* force the log to unpin objects from the now complete transactions */
1152 xfs_log_force(mp, XFS_LOG_SYNC);
1153
1154 /* reclaim inodes to do any IO before the freeze completes */
1155 xfs_reclaim_inodes(mp, 0);
1156 xfs_reclaim_inodes(mp, SYNC_WAIT);
1157
Dave Chinnerc75921a2012-10-08 21:56:08 +11001158 /* Push the superblock and write an unmount record */
1159 error = xfs_log_sbcount(mp);
1160 if (error)
1161 xfs_warn(mp, "xfs_attr_quiesce: failed to log sb changes. "
1162 "Frozen image may not be consistent.");
Dave Chinnerc7eea6f2012-10-08 21:56:07 +11001163 /*
1164 * Just warn here till VFS can correctly support
1165 * read-only remount without racing.
1166 */
1167 WARN_ON(atomic_read(&mp->m_active_trans) != 0);
1168
Dave Chinnerc75921a2012-10-08 21:56:08 +11001169 xfs_log_quiesce(mp);
Dave Chinnerc7eea6f2012-10-08 21:56:07 +11001170}
1171
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001173xfs_fs_remount(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 struct super_block *sb,
1175 int *flags,
1176 char *options)
1177{
Christoph Hellwig745f6912007-08-30 17:20:39 +10001178 struct xfs_mount *mp = XFS_M(sb);
Eric Sandeen9de67c32014-07-24 20:51:54 +10001179 xfs_sb_t *sbp = &mp->m_sb;
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001180 substring_t args[MAX_OPT_ARGS];
1181 char *p;
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001182 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183
Theodore Ts'o02b99842014-03-13 10:14:33 -04001184 sync_filesystem(sb);
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001185 while ((p = strsep(&options, ",")) != NULL) {
1186 int token;
Christoph Hellwigbdd907b2008-05-20 15:10:44 +10001187
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001188 if (!*p)
1189 continue;
Christoph Hellwig48b62a12008-05-20 11:30:39 +10001190
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001191 token = match_token(p, tokens, args);
1192 switch (token) {
1193 case Opt_barrier:
Christoph Hellwig48b62a12008-05-20 11:30:39 +10001194 mp->m_flags |= XFS_MOUNT_BARRIER;
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001195 break;
1196 case Opt_nobarrier:
Christoph Hellwig48b62a12008-05-20 11:30:39 +10001197 mp->m_flags &= ~XFS_MOUNT_BARRIER;
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001198 break;
Carlos Maiolinoc3a58fe2012-08-17 18:19:38 -03001199 case Opt_inode64:
Eric Sandeen9de67c32014-07-24 20:51:54 +10001200 mp->m_maxagi = xfs_set_inode64(mp, sbp->sb_agcount);
Carlos Maiolinoc3a58fe2012-08-17 18:19:38 -03001201 break;
Carlos Maiolino2ea03922012-09-20 10:32:41 -03001202 case Opt_inode32:
Eric Sandeen9de67c32014-07-24 20:51:54 +10001203 mp->m_maxagi = xfs_set_inode32(mp, sbp->sb_agcount);
Carlos Maiolino2ea03922012-09-20 10:32:41 -03001204 break;
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001205 default:
Christoph Hellwig6efdf282008-09-17 16:49:33 +10001206 /*
1207 * Logically we would return an error here to prevent
1208 * users from believing they might have changed
1209 * mount options using remount which can't be changed.
1210 *
1211 * But unfortunately mount(8) adds all options from
1212 * mtab and fstab to the mount arguments in some cases
1213 * so we can't blindly reject options, but have to
1214 * check for each specified option if it actually
1215 * differs from the currently set option and only
1216 * reject it if that's the case.
1217 *
1218 * Until that is implemented we return success for
1219 * every remount request, and silently ignore all
1220 * options that we can't actually change.
1221 */
1222#if 0
Dave Chinner4f107002011-03-07 10:00:35 +11001223 xfs_info(mp,
Eric Sandeen08e96e12013-10-11 20:59:05 -05001224 "mount option \"%s\" not supported for remount", p);
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001225 return -EINVAL;
Christoph Hellwig6efdf282008-09-17 16:49:33 +10001226#else
Christoph Hellwig6c5e51d2008-10-12 14:30:44 +02001227 break;
Christoph Hellwig6efdf282008-09-17 16:49:33 +10001228#endif
Christoph Hellwig48b62a12008-05-20 11:30:39 +10001229 }
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001230 }
1231
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001232 /* ro -> rw */
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001233 if ((mp->m_flags & XFS_MOUNT_RDONLY) && !(*flags & MS_RDONLY)) {
Eric Sandeenbbe051c2015-04-13 11:25:41 +10001234 if (mp->m_flags & XFS_MOUNT_NORECOVERY) {
1235 xfs_warn(mp,
1236 "ro->rw transition prohibited on norecovery mount");
1237 return -EINVAL;
1238 }
1239
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001240 mp->m_flags &= ~XFS_MOUNT_RDONLY;
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001241
1242 /*
1243 * If this is the first remount to writeable state we
1244 * might have some superblock changes to update.
1245 */
Dave Chinner61e63ec2015-01-22 09:10:31 +11001246 if (mp->m_update_sb) {
1247 error = xfs_sync_sb(mp, false);
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001248 if (error) {
Dave Chinner4f107002011-03-07 10:00:35 +11001249 xfs_warn(mp, "failed to write sb changes");
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001250 return error;
1251 }
Dave Chinner61e63ec2015-01-22 09:10:31 +11001252 mp->m_update_sb = false;
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001253 }
Dave Chinnercbe132a2010-01-26 15:08:49 +11001254
1255 /*
1256 * Fill out the reserve pool if it is empty. Use the stashed
1257 * value if it is non-zero, otherwise go with the default.
1258 */
Eric Sandeend5db0f92010-02-05 22:59:53 +00001259 xfs_restore_resvblks(mp);
Dave Chinnerf661f1e2012-10-08 21:56:02 +11001260 xfs_log_work_queue(mp);
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001261 }
1262
1263 /* rw -> ro */
1264 if (!(mp->m_flags & XFS_MOUNT_RDONLY) && (*flags & MS_RDONLY)) {
Dave Chinnercbe132a2010-01-26 15:08:49 +11001265 /*
Dave Chinner34061f52012-10-08 21:56:06 +11001266 * Before we sync the metadata, we need to free up the reserve
1267 * block pool so that the used block count in the superblock on
1268 * disk is correct at the end of the remount. Stash the current
1269 * reserve pool size so that if we get remounted rw, we can
1270 * return it to the same size.
Dave Chinnercbe132a2010-01-26 15:08:49 +11001271 */
Eric Sandeend5db0f92010-02-05 22:59:53 +00001272 xfs_save_resvblks(mp);
David Chinner76bf1052008-10-30 17:16:21 +11001273 xfs_quiesce_attr(mp);
Christoph Hellwig48b62a12008-05-20 11:30:39 +10001274 mp->m_flags |= XFS_MOUNT_RDONLY;
1275 }
1276
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001277 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278}
1279
Christoph Hellwig9909c4a2007-10-11 18:11:14 +10001280/*
1281 * Second stage of a freeze. The data is already frozen so we only
Dave Chinner61e63ec2015-01-22 09:10:31 +11001282 * need to take care of the metadata. Once that's done sync the superblock
1283 * to the log to dirty it in case of a crash while frozen. This ensures that we
1284 * will recover the unlinked inode lists on the next mount.
Christoph Hellwig9909c4a2007-10-11 18:11:14 +10001285 */
Takashi Satoc4be0c12009-01-09 16:40:58 -08001286STATIC int
1287xfs_fs_freeze(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 struct super_block *sb)
1289{
Christoph Hellwig9909c4a2007-10-11 18:11:14 +10001290 struct xfs_mount *mp = XFS_M(sb);
1291
Eric Sandeend5db0f92010-02-05 22:59:53 +00001292 xfs_save_resvblks(mp);
David Chinner76bf1052008-10-30 17:16:21 +11001293 xfs_quiesce_attr(mp);
Dave Chinner61e63ec2015-01-22 09:10:31 +11001294 return xfs_sync_sb(mp, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295}
1296
1297STATIC int
Eric Sandeend5db0f92010-02-05 22:59:53 +00001298xfs_fs_unfreeze(
1299 struct super_block *sb)
1300{
1301 struct xfs_mount *mp = XFS_M(sb);
1302
1303 xfs_restore_resvblks(mp);
Dave Chinnerf661f1e2012-10-08 21:56:02 +11001304 xfs_log_work_queue(mp);
Eric Sandeend5db0f92010-02-05 22:59:53 +00001305 return 0;
1306}
1307
1308STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001309xfs_fs_show_options(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 struct seq_file *m,
Al Viro34c80b12011-12-08 21:32:45 -05001311 struct dentry *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312{
Dave Chinner24513372014-06-25 14:58:08 +10001313 return xfs_showargs(XFS_M(root->d_sb), m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314}
1315
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001316/*
1317 * This function fills in xfs_mount_t fields based on mount args.
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001318 * Note: the superblock _has_ now been read in.
1319 */
1320STATIC int
1321xfs_finish_flags(
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001322 struct xfs_mount *mp)
1323{
1324 int ronly = (mp->m_flags & XFS_MOUNT_RDONLY);
1325
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02001326 /* Fail a mount where the logbuf is smaller than the log stripe */
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001327 if (xfs_sb_version_haslogv2(&mp->m_sb)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001328 if (mp->m_logbsize <= 0 &&
1329 mp->m_sb.sb_logsunit > XLOG_BIG_RECORD_BSIZE) {
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001330 mp->m_logbsize = mp->m_sb.sb_logsunit;
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001331 } else if (mp->m_logbsize > 0 &&
1332 mp->m_logbsize < mp->m_sb.sb_logsunit) {
Dave Chinner4f107002011-03-07 10:00:35 +11001333 xfs_warn(mp,
1334 "logbuf size must be greater than or equal to log stripe size");
Dave Chinner24513372014-06-25 14:58:08 +10001335 return -EINVAL;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001336 }
1337 } else {
1338 /* Fail a mount if the logbuf is larger than 32K */
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001339 if (mp->m_logbsize > XLOG_BIG_RECORD_BSIZE) {
Dave Chinner4f107002011-03-07 10:00:35 +11001340 xfs_warn(mp,
1341 "logbuf size for version 1 logs must be 16K or 32K");
Dave Chinner24513372014-06-25 14:58:08 +10001342 return -EINVAL;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001343 }
1344 }
1345
1346 /*
Dave Chinnerd3eaace2013-06-05 12:09:09 +10001347 * V5 filesystems always use attr2 format for attributes.
1348 */
1349 if (xfs_sb_version_hascrc(&mp->m_sb) &&
1350 (mp->m_flags & XFS_MOUNT_NOATTR2)) {
Eric Sandeen2e74af02016-03-02 09:55:38 +11001351 xfs_warn(mp, "Cannot mount a V5 filesystem as noattr2. "
1352 "attr2 is always enabled for V5 filesystems.");
Dave Chinner24513372014-06-25 14:58:08 +10001353 return -EINVAL;
Dave Chinnerd3eaace2013-06-05 12:09:09 +10001354 }
1355
1356 /*
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001357 * mkfs'ed attr2 will turn on attr2 mount unless explicitly
1358 * told by noattr2 to turn it off
1359 */
1360 if (xfs_sb_version_hasattr2(&mp->m_sb) &&
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001361 !(mp->m_flags & XFS_MOUNT_NOATTR2))
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001362 mp->m_flags |= XFS_MOUNT_ATTR2;
1363
1364 /*
1365 * prohibit r/w mounts of read-only filesystems
1366 */
1367 if ((mp->m_sb.sb_flags & XFS_SBF_READONLY) && !ronly) {
Dave Chinner4f107002011-03-07 10:00:35 +11001368 xfs_warn(mp,
1369 "cannot mount a read-only filesystem as read-write");
Dave Chinner24513372014-06-25 14:58:08 +10001370 return -EROFS;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001371 }
1372
Chandra Seetharamand892d582013-07-19 17:36:02 -05001373 if ((mp->m_qflags & (XFS_GQUOTA_ACCT | XFS_GQUOTA_ACTIVE)) &&
1374 (mp->m_qflags & (XFS_PQUOTA_ACCT | XFS_PQUOTA_ACTIVE)) &&
1375 !xfs_sb_version_has_pquotino(&mp->m_sb)) {
1376 xfs_warn(mp,
1377 "Super block does not support project and group quota together");
Dave Chinner24513372014-06-25 14:58:08 +10001378 return -EINVAL;
Chandra Seetharamand892d582013-07-19 17:36:02 -05001379 }
1380
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001381 return 0;
1382}
1383
Dave Chinner5681ca42015-02-23 21:22:31 +11001384static int
1385xfs_init_percpu_counters(
1386 struct xfs_mount *mp)
1387{
1388 int error;
1389
1390 error = percpu_counter_init(&mp->m_icount, 0, GFP_KERNEL);
1391 if (error)
Joe Perches5e9383f2015-03-25 15:00:24 +11001392 return -ENOMEM;
Dave Chinner5681ca42015-02-23 21:22:31 +11001393
1394 error = percpu_counter_init(&mp->m_ifree, 0, GFP_KERNEL);
1395 if (error)
1396 goto free_icount;
1397
1398 error = percpu_counter_init(&mp->m_fdblocks, 0, GFP_KERNEL);
1399 if (error)
1400 goto free_ifree;
1401
1402 return 0;
1403
1404free_ifree:
1405 percpu_counter_destroy(&mp->m_ifree);
1406free_icount:
1407 percpu_counter_destroy(&mp->m_icount);
1408 return -ENOMEM;
1409}
1410
1411void
1412xfs_reinit_percpu_counters(
1413 struct xfs_mount *mp)
1414{
1415 percpu_counter_set(&mp->m_icount, mp->m_sb.sb_icount);
1416 percpu_counter_set(&mp->m_ifree, mp->m_sb.sb_ifree);
1417 percpu_counter_set(&mp->m_fdblocks, mp->m_sb.sb_fdblocks);
1418}
1419
1420static void
1421xfs_destroy_percpu_counters(
1422 struct xfs_mount *mp)
1423{
1424 percpu_counter_destroy(&mp->m_icount);
1425 percpu_counter_destroy(&mp->m_ifree);
1426 percpu_counter_destroy(&mp->m_fdblocks);
1427}
1428
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001430xfs_fs_fill_super(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 struct super_block *sb,
1432 void *data,
1433 int silent)
1434{
Christoph Hellwigf3dcc132008-03-27 18:00:54 +11001435 struct inode *root;
Christoph Hellwig745f6912007-08-30 17:20:39 +10001436 struct xfs_mount *mp = NULL;
Dave Chinner24513372014-06-25 14:58:08 +10001437 int flags = 0, error = -ENOMEM;
Christoph Hellwigbdd907b2008-05-20 15:10:44 +10001438
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001439 mp = kzalloc(sizeof(struct xfs_mount), GFP_KERNEL);
1440 if (!mp)
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001441 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001443 spin_lock_init(&mp->m_sb_lock);
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001444 mutex_init(&mp->m_growlock);
1445 atomic_set(&mp->m_active_trans, 0);
Dave Chinner7e185302012-10-08 21:56:00 +11001446 INIT_DELAYED_WORK(&mp->m_reclaim_work, xfs_reclaim_worker);
Brian Foster579b62f2012-11-06 09:50:47 -05001447 INIT_DELAYED_WORK(&mp->m_eofblocks_work, xfs_eofblocks_worker);
Dave Chinnere3aed1a2014-09-29 10:46:08 +10001448 mp->m_kobj.kobject.kset = xfs_kset;
Christoph Hellwig74394492007-08-30 17:21:22 +10001449
Christoph Hellwigb267ce92007-08-30 17:21:30 +10001450 mp->m_super = sb;
1451 sb->s_fs_info = mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452
Christoph Hellwig288699f2010-06-23 18:11:15 +10001453 error = xfs_parseargs(mp, (char *)data);
Christoph Hellwig745f6912007-08-30 17:20:39 +10001454 if (error)
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001455 goto out_free_fsname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
1457 sb_min_blocksize(sb, BBSIZE);
Lachlan McIlroy0ec58512008-06-23 13:23:01 +10001458 sb->s_xattr = xfs_xattr_handlers;
Nathan Scotta50cd262006-03-14 14:06:18 +11001459 sb->s_export_op = &xfs_export_operations;
Christoph Hellwigfcafb712009-02-09 08:47:34 +01001460#ifdef CONFIG_XFS_QUOTA
Nathan Scotta50cd262006-03-14 14:06:18 +11001461 sb->s_qcop = &xfs_quotactl_operations;
Jan Kara17ef4fd2014-09-30 22:35:33 +02001462 sb->s_quota_types = QTYPE_MASK_USR | QTYPE_MASK_GRP | QTYPE_MASK_PRJ;
Christoph Hellwigfcafb712009-02-09 08:47:34 +01001463#endif
Nathan Scotta50cd262006-03-14 14:06:18 +11001464 sb->s_op = &xfs_super_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001466 if (silent)
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001467 flags |= XFS_MFSI_QUIET;
1468
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001469 error = xfs_open_devices(mp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001470 if (error)
Christoph Hellwig288699f2010-06-23 18:11:15 +10001471 goto out_free_fsname;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001472
Dave Chinner24513372014-06-25 14:58:08 +10001473 error = xfs_init_mount_workqueues(mp);
Christoph Hellwig61ba35d2010-09-30 02:25:54 +00001474 if (error)
1475 goto out_close_devices;
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001476
Dave Chinner5681ca42015-02-23 21:22:31 +11001477 error = xfs_init_percpu_counters(mp);
Christoph Hellwigaa6bf012012-02-29 09:53:48 +00001478 if (error)
1479 goto out_destroy_workqueues;
1480
Bill O'Donnell225e4632015-10-12 18:21:19 +11001481 /* Allocate stats memory before we do operations that might use it */
1482 mp->m_stats.xs_stats = alloc_percpu(struct xfsstats);
1483 if (!mp->m_stats.xs_stats) {
Dan Carpenterf9d460b2015-10-19 08:42:47 +11001484 error = -ENOMEM;
Bill O'Donnell225e4632015-10-12 18:21:19 +11001485 goto out_destroy_counters;
1486 }
1487
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001488 error = xfs_readsb(mp, flags);
1489 if (error)
Bill O'Donnell225e4632015-10-12 18:21:19 +11001490 goto out_free_stats;
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001491
1492 error = xfs_finish_flags(mp);
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001493 if (error)
Christoph Hellwigeffa2ed2008-05-20 15:11:05 +10001494 goto out_free_sb;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001495
Christoph Hellwige34b5622008-05-20 15:10:36 +10001496 error = xfs_setup_devices(mp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001497 if (error)
Christoph Hellwigeffa2ed2008-05-20 15:11:05 +10001498 goto out_free_sb;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001499
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001500 error = xfs_filestream_mount(mp);
1501 if (error)
Christoph Hellwigeffa2ed2008-05-20 15:11:05 +10001502 goto out_free_sb;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001503
Dave Chinner704b2902011-03-26 09:14:57 +11001504 /*
1505 * we must configure the block size in the superblock before we run the
1506 * full mount process as the mount process can lookup and cache inodes.
Dave Chinner704b2902011-03-26 09:14:57 +11001507 */
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001508 sb->s_magic = XFS_SB_MAGIC;
1509 sb->s_blocksize = mp->m_sb.sb_blocksize;
1510 sb->s_blocksize_bits = ffs(sb->s_blocksize) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 sb->s_maxbytes = xfs_max_file_offset(sb->s_blocksize_bits);
Al Viro8de52772012-02-06 12:45:27 -05001512 sb->s_max_links = XFS_MAXLINK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 sb->s_time_gran = 1;
1514 set_posix_acl_flag(sb);
1515
Dave Chinnerdc037ad2013-06-27 16:04:59 +10001516 /* version 5 superblocks support inode version counters. */
1517 if (XFS_SB_VERSION_NUM(&mp->m_sb) == XFS_SB_VERSION_5)
1518 sb->s_flags |= MS_I_VERSION;
1519
Dave Chinnercbe4dab2015-06-04 09:19:18 +10001520 if (mp->m_flags & XFS_MOUNT_DAX) {
1521 xfs_warn(mp,
1522 "DAX enabled. Warning: EXPERIMENTAL, use at your own risk");
1523 if (sb->s_blocksize != PAGE_SIZE) {
1524 xfs_alert(mp,
1525 "Filesystem block size invalid for DAX Turning DAX off.");
1526 mp->m_flags &= ~XFS_MOUNT_DAX;
1527 } else if (!sb->s_bdev->bd_disk->fops->direct_access) {
1528 xfs_alert(mp,
1529 "Block device does not support DAX Turning DAX off.");
1530 mp->m_flags &= ~XFS_MOUNT_DAX;
1531 }
1532 }
1533
Brian Foster1b867d32015-08-19 10:32:14 +10001534 if (xfs_sb_version_hassparseinodes(&mp->m_sb))
1535 xfs_alert(mp,
1536 "EXPERIMENTAL sparse inode feature enabled. Use at your own risk!");
1537
Dave Chinner8a00ebe2012-04-13 12:10:44 +00001538 error = xfs_mountfs(mp);
Christoph Hellwig2bcf6e92011-07-13 13:43:48 +02001539 if (error)
Dave Chinner7e185302012-10-08 21:56:00 +11001540 goto out_filestream_unmount;
Dave Chinner704b2902011-03-26 09:14:57 +11001541
David Chinner01651642008-08-13 15:45:15 +10001542 root = igrab(VFS_I(mp->m_rootip));
Christoph Hellwigf3dcc132008-03-27 18:00:54 +11001543 if (!root) {
Dave Chinner24513372014-06-25 14:58:08 +10001544 error = -ENOENT;
Dave Chinner8a00ebe2012-04-13 12:10:44 +00001545 goto out_unmount;
Christoph Hellwigcbc89dc2008-02-05 12:14:01 +11001546 }
Al Viro48fde702012-01-08 22:15:13 -05001547 sb->s_root = d_make_root(root);
Christoph Hellwigf3dcc132008-03-27 18:00:54 +11001548 if (!sb->s_root) {
Dave Chinner24513372014-06-25 14:58:08 +10001549 error = -ENOMEM;
Dave Chinner8a00ebe2012-04-13 12:10:44 +00001550 goto out_unmount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 }
Christoph Hellwig74394492007-08-30 17:21:22 +10001552
Dave Chinner7e185302012-10-08 21:56:00 +11001553 return 0;
1554
1555 out_filestream_unmount:
Christoph Hellwig120226c2008-05-20 15:11:11 +10001556 xfs_filestream_unmount(mp);
Christoph Hellwigeffa2ed2008-05-20 15:11:05 +10001557 out_free_sb:
1558 xfs_freesb(mp);
Bill O'Donnell225e4632015-10-12 18:21:19 +11001559 out_free_stats:
1560 free_percpu(mp->m_stats.xs_stats);
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001561 out_destroy_counters:
Dave Chinner5681ca42015-02-23 21:22:31 +11001562 xfs_destroy_percpu_counters(mp);
Bill O'Donnell225e4632015-10-12 18:21:19 +11001563 out_destroy_workqueues:
Christoph Hellwigaa6bf012012-02-29 09:53:48 +00001564 xfs_destroy_mount_workqueues(mp);
Christoph Hellwig61ba35d2010-09-30 02:25:54 +00001565 out_close_devices:
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001566 xfs_close_devices(mp);
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001567 out_free_fsname:
1568 xfs_free_fsname(mp);
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001569 kfree(mp);
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001570 out:
Dave Chinner24513372014-06-25 14:58:08 +10001571 return error;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001572
Christoph Hellwig2bcf6e92011-07-13 13:43:48 +02001573 out_unmount:
Christoph Hellwige48ad312008-05-20 11:30:52 +10001574 xfs_filestream_unmount(mp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001575 xfs_unmountfs(mp);
Christoph Hellwig62033002008-08-13 16:50:21 +10001576 goto out_free_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577}
1578
Dave Chinner5681ca42015-02-23 21:22:31 +11001579STATIC void
1580xfs_fs_put_super(
1581 struct super_block *sb)
1582{
1583 struct xfs_mount *mp = XFS_M(sb);
1584
Dave Chinner42254412015-02-24 10:27:28 +11001585 xfs_notice(mp, "Unmounting Filesystem");
Dave Chinner5681ca42015-02-23 21:22:31 +11001586 xfs_filestream_unmount(mp);
1587 xfs_unmountfs(mp);
1588
1589 xfs_freesb(mp);
Bill O'Donnell225e4632015-10-12 18:21:19 +11001590 free_percpu(mp->m_stats.xs_stats);
Dave Chinner5681ca42015-02-23 21:22:31 +11001591 xfs_destroy_percpu_counters(mp);
1592 xfs_destroy_mount_workqueues(mp);
1593 xfs_close_devices(mp);
1594 xfs_free_fsname(mp);
1595 kfree(mp);
1596}
1597
Al Viro152a0832010-07-25 00:46:55 +04001598STATIC struct dentry *
1599xfs_fs_mount(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 struct file_system_type *fs_type,
1601 int flags,
1602 const char *dev_name,
Al Viro152a0832010-07-25 00:46:55 +04001603 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604{
Al Viro152a0832010-07-25 00:46:55 +04001605 return mount_bdev(fs_type, flags, dev_name, data, xfs_fs_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606}
1607
Dave Chinner0a234c62013-08-28 10:17:57 +10001608static long
Dave Chinner8daaa832011-07-08 14:14:46 +10001609xfs_fs_nr_cached_objects(
Dave Chinner9b17c622013-08-28 10:18:05 +10001610 struct super_block *sb,
Vladimir Davydov4101b622015-02-12 14:58:51 -08001611 struct shrink_control *sc)
Dave Chinner8daaa832011-07-08 14:14:46 +10001612{
1613 return xfs_reclaim_inodes_count(XFS_M(sb));
1614}
1615
Dave Chinner0a234c62013-08-28 10:17:57 +10001616static long
Dave Chinner8daaa832011-07-08 14:14:46 +10001617xfs_fs_free_cached_objects(
1618 struct super_block *sb,
Vladimir Davydov4101b622015-02-12 14:58:51 -08001619 struct shrink_control *sc)
Dave Chinner8daaa832011-07-08 14:14:46 +10001620{
Vladimir Davydov4101b622015-02-12 14:58:51 -08001621 return xfs_reclaim_inodes_nr(XFS_M(sb), sc->nr_to_scan);
Dave Chinner8daaa832011-07-08 14:14:46 +10001622}
1623
Alexey Dobriyanb87221d2009-09-21 17:01:09 -07001624static const struct super_operations xfs_super_operations = {
Nathan Scotta50cd262006-03-14 14:06:18 +11001625 .alloc_inode = xfs_fs_alloc_inode,
1626 .destroy_inode = xfs_fs_destroy_inode,
Al Virob57922d2010-06-07 14:34:48 -04001627 .evict_inode = xfs_fs_evict_inode,
Dave Chinner5132ba82012-03-22 05:15:10 +00001628 .drop_inode = xfs_fs_drop_inode,
Nathan Scotta50cd262006-03-14 14:06:18 +11001629 .put_super = xfs_fs_put_super,
Christoph Hellwig69961a22009-10-06 20:29:28 +00001630 .sync_fs = xfs_fs_sync_fs,
Takashi Satoc4be0c12009-01-09 16:40:58 -08001631 .freeze_fs = xfs_fs_freeze,
Eric Sandeend5db0f92010-02-05 22:59:53 +00001632 .unfreeze_fs = xfs_fs_unfreeze,
Nathan Scotta50cd262006-03-14 14:06:18 +11001633 .statfs = xfs_fs_statfs,
1634 .remount_fs = xfs_fs_remount,
1635 .show_options = xfs_fs_show_options,
Dave Chinner8daaa832011-07-08 14:14:46 +10001636 .nr_cached_objects = xfs_fs_nr_cached_objects,
1637 .free_cached_objects = xfs_fs_free_cached_objects,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638};
1639
Andrew Morton5085b602007-02-20 13:57:47 -08001640static struct file_system_type xfs_fs_type = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 .owner = THIS_MODULE,
1642 .name = "xfs",
Al Viro152a0832010-07-25 00:46:55 +04001643 .mount = xfs_fs_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 .kill_sb = kill_block_super,
1645 .fs_flags = FS_REQUIRES_DEV,
1646};
Eric W. Biederman7f78e032013-03-02 19:39:14 -08001647MODULE_ALIAS_FS("xfs");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001649STATIC int __init
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001650xfs_init_zones(void)
1651{
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001652
1653 xfs_ioend_zone = kmem_zone_init(sizeof(xfs_ioend_t), "xfs_ioend");
1654 if (!xfs_ioend_zone)
David Chinnerbf904242008-10-30 17:36:14 +11001655 goto out;
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001656
1657 xfs_ioend_pool = mempool_create_slab_pool(4 * MAX_BUF_PER_PAGE,
1658 xfs_ioend_zone);
1659 if (!xfs_ioend_pool)
1660 goto out_destroy_ioend_zone;
1661
1662 xfs_log_ticket_zone = kmem_zone_init(sizeof(xlog_ticket_t),
1663 "xfs_log_ticket");
1664 if (!xfs_log_ticket_zone)
1665 goto out_destroy_ioend_pool;
1666
1667 xfs_bmap_free_item_zone = kmem_zone_init(sizeof(xfs_bmap_free_item_t),
1668 "xfs_bmap_free_item");
1669 if (!xfs_bmap_free_item_zone)
1670 goto out_destroy_log_ticket_zone;
David Chinnerbf904242008-10-30 17:36:14 +11001671
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001672 xfs_btree_cur_zone = kmem_zone_init(sizeof(xfs_btree_cur_t),
1673 "xfs_btree_cur");
1674 if (!xfs_btree_cur_zone)
1675 goto out_destroy_bmap_free_item_zone;
1676
1677 xfs_da_state_zone = kmem_zone_init(sizeof(xfs_da_state_t),
1678 "xfs_da_state");
1679 if (!xfs_da_state_zone)
1680 goto out_destroy_btree_cur_zone;
1681
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001682 xfs_ifork_zone = kmem_zone_init(sizeof(xfs_ifork_t), "xfs_ifork");
1683 if (!xfs_ifork_zone)
Dave Chinner1d9025e2012-06-22 18:50:14 +10001684 goto out_destroy_da_state_zone;
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001685
1686 xfs_trans_zone = kmem_zone_init(sizeof(xfs_trans_t), "xfs_trans");
1687 if (!xfs_trans_zone)
1688 goto out_destroy_ifork_zone;
1689
Christoph Hellwige98c4142010-06-23 18:11:15 +10001690 xfs_log_item_desc_zone =
1691 kmem_zone_init(sizeof(struct xfs_log_item_desc),
1692 "xfs_log_item_desc");
1693 if (!xfs_log_item_desc_zone)
1694 goto out_destroy_trans_zone;
1695
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001696 /*
1697 * The size of the zone allocated buf log item is the maximum
1698 * size possible under XFS. This wastes a little bit of memory,
1699 * but it is much faster.
1700 */
Dave Chinner77c1a082012-06-22 18:50:07 +10001701 xfs_buf_item_zone = kmem_zone_init(sizeof(struct xfs_buf_log_item),
1702 "xfs_buf_item");
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001703 if (!xfs_buf_item_zone)
Christoph Hellwige98c4142010-06-23 18:11:15 +10001704 goto out_destroy_log_item_desc_zone;
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001705
1706 xfs_efd_zone = kmem_zone_init((sizeof(xfs_efd_log_item_t) +
1707 ((XFS_EFD_MAX_FAST_EXTENTS - 1) *
1708 sizeof(xfs_extent_t))), "xfs_efd_item");
1709 if (!xfs_efd_zone)
1710 goto out_destroy_buf_item_zone;
1711
1712 xfs_efi_zone = kmem_zone_init((sizeof(xfs_efi_log_item_t) +
1713 ((XFS_EFI_MAX_FAST_EXTENTS - 1) *
1714 sizeof(xfs_extent_t))), "xfs_efi_item");
1715 if (!xfs_efi_zone)
1716 goto out_destroy_efd_zone;
1717
1718 xfs_inode_zone =
1719 kmem_zone_init_flags(sizeof(xfs_inode_t), "xfs_inode",
Vladimir Davydov5d097052016-01-14 15:18:21 -08001720 KM_ZONE_HWALIGN | KM_ZONE_RECLAIM | KM_ZONE_SPREAD |
1721 KM_ZONE_ACCOUNT, xfs_fs_inode_init_once);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001722 if (!xfs_inode_zone)
1723 goto out_destroy_efi_zone;
1724
1725 xfs_ili_zone =
1726 kmem_zone_init_flags(sizeof(xfs_inode_log_item_t), "xfs_ili",
1727 KM_ZONE_SPREAD, NULL);
1728 if (!xfs_ili_zone)
1729 goto out_destroy_inode_zone;
Dave Chinner3ebe7d22013-06-27 16:04:53 +10001730 xfs_icreate_zone = kmem_zone_init(sizeof(struct xfs_icreate_item),
1731 "xfs_icr");
1732 if (!xfs_icreate_zone)
1733 goto out_destroy_ili_zone;
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001734
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001735 return 0;
1736
Dave Chinner3ebe7d22013-06-27 16:04:53 +10001737 out_destroy_ili_zone:
1738 kmem_zone_destroy(xfs_ili_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001739 out_destroy_inode_zone:
1740 kmem_zone_destroy(xfs_inode_zone);
1741 out_destroy_efi_zone:
1742 kmem_zone_destroy(xfs_efi_zone);
1743 out_destroy_efd_zone:
1744 kmem_zone_destroy(xfs_efd_zone);
1745 out_destroy_buf_item_zone:
1746 kmem_zone_destroy(xfs_buf_item_zone);
Christoph Hellwige98c4142010-06-23 18:11:15 +10001747 out_destroy_log_item_desc_zone:
1748 kmem_zone_destroy(xfs_log_item_desc_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001749 out_destroy_trans_zone:
1750 kmem_zone_destroy(xfs_trans_zone);
1751 out_destroy_ifork_zone:
1752 kmem_zone_destroy(xfs_ifork_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001753 out_destroy_da_state_zone:
1754 kmem_zone_destroy(xfs_da_state_zone);
1755 out_destroy_btree_cur_zone:
1756 kmem_zone_destroy(xfs_btree_cur_zone);
1757 out_destroy_bmap_free_item_zone:
1758 kmem_zone_destroy(xfs_bmap_free_item_zone);
1759 out_destroy_log_ticket_zone:
1760 kmem_zone_destroy(xfs_log_ticket_zone);
1761 out_destroy_ioend_pool:
1762 mempool_destroy(xfs_ioend_pool);
1763 out_destroy_ioend_zone:
1764 kmem_zone_destroy(xfs_ioend_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001765 out:
1766 return -ENOMEM;
1767}
1768
1769STATIC void
1770xfs_destroy_zones(void)
1771{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +10001772 /*
1773 * Make sure all delayed rcu free are flushed before we
1774 * destroy caches.
1775 */
1776 rcu_barrier();
Dave Chinner3ebe7d22013-06-27 16:04:53 +10001777 kmem_zone_destroy(xfs_icreate_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001778 kmem_zone_destroy(xfs_ili_zone);
1779 kmem_zone_destroy(xfs_inode_zone);
1780 kmem_zone_destroy(xfs_efi_zone);
1781 kmem_zone_destroy(xfs_efd_zone);
1782 kmem_zone_destroy(xfs_buf_item_zone);
Christoph Hellwige98c4142010-06-23 18:11:15 +10001783 kmem_zone_destroy(xfs_log_item_desc_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001784 kmem_zone_destroy(xfs_trans_zone);
1785 kmem_zone_destroy(xfs_ifork_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001786 kmem_zone_destroy(xfs_da_state_zone);
1787 kmem_zone_destroy(xfs_btree_cur_zone);
1788 kmem_zone_destroy(xfs_bmap_free_item_zone);
1789 kmem_zone_destroy(xfs_log_ticket_zone);
1790 mempool_destroy(xfs_ioend_pool);
1791 kmem_zone_destroy(xfs_ioend_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001792
1793}
1794
1795STATIC int __init
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10001796xfs_init_workqueues(void)
1797{
1798 /*
Dave Chinnerc999a222012-03-22 05:15:07 +00001799 * The allocation workqueue can be used in memory reclaim situations
1800 * (writepage path), and parallelism is only limited by the number of
1801 * AGs in all the filesystems mounted. Hence use the default large
1802 * max_active value for this workqueue.
1803 */
Brian Foster8018ec02014-09-09 11:44:46 +10001804 xfs_alloc_wq = alloc_workqueue("xfsalloc",
1805 WQ_MEM_RECLAIM|WQ_FREEZABLE, 0);
Dave Chinnerc999a222012-03-22 05:15:07 +00001806 if (!xfs_alloc_wq)
Dave Chinner58896082012-10-08 21:56:05 +11001807 return -ENOMEM;
Dave Chinnerc999a222012-03-22 05:15:07 +00001808
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10001809 return 0;
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10001810}
1811
Luck, Tony39411f82011-04-11 12:06:12 -07001812STATIC void
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10001813xfs_destroy_workqueues(void)
1814{
Dave Chinnerc999a222012-03-22 05:15:07 +00001815 destroy_workqueue(xfs_alloc_wq);
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10001816}
1817
1818STATIC int __init
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001819init_xfs_fs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820{
1821 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
Christoph Hellwig65795912008-11-28 14:23:33 +11001823 printk(KERN_INFO XFS_VERSION_STRING " with "
1824 XFS_BUILD_OPTIONS " enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001826 xfs_dir_startup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
Nathan Scott87582802006-03-14 13:18:19 +11001828 error = xfs_init_zones();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001829 if (error)
1830 goto out;
1831
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10001832 error = xfs_init_workqueues();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001833 if (error)
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001834 goto out_destroy_zones;
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001835
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10001836 error = xfs_mru_cache_init();
1837 if (error)
1838 goto out_destroy_wq;
1839
Nathan Scottce8e9222006-01-11 15:39:08 +11001840 error = xfs_buf_init();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001841 if (error)
Christoph Hellwig1919add2014-04-23 07:11:51 +10001842 goto out_mru_cache_uninit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001844 error = xfs_init_procfs();
1845 if (error)
1846 goto out_buf_terminate;
1847
1848 error = xfs_sysctl_register();
1849 if (error)
1850 goto out_cleanup_procfs;
1851
Brian Foster3d871222014-07-15 07:41:37 +10001852 xfs_kset = kset_create_and_add("xfs", NULL, fs_kobj);
1853 if (!xfs_kset) {
1854 error = -ENOMEM;
Bill O'Donnellbb230c12015-10-12 05:15:45 +11001855 goto out_sysctl_unregister;
Brian Foster3d871222014-07-15 07:41:37 +10001856 }
1857
Bill O'Donnell80529c42015-10-12 05:19:45 +11001858 xfsstats.xs_kobj.kobject.kset = xfs_kset;
1859
1860 xfsstats.xs_stats = alloc_percpu(struct xfsstats);
1861 if (!xfsstats.xs_stats) {
1862 error = -ENOMEM;
1863 goto out_kset_unregister;
1864 }
1865
1866 error = xfs_sysfs_init(&xfsstats.xs_kobj, &xfs_stats_ktype, NULL,
Bill O'Donnellbb230c12015-10-12 05:15:45 +11001867 "stats");
1868 if (error)
Bill O'Donnell80529c42015-10-12 05:19:45 +11001869 goto out_free_stats;
Bill O'Donnellbb230c12015-10-12 05:15:45 +11001870
Brian Foster65b65732014-09-09 11:52:42 +10001871#ifdef DEBUG
1872 xfs_dbg_kobj.kobject.kset = xfs_kset;
1873 error = xfs_sysfs_init(&xfs_dbg_kobj, &xfs_dbg_ktype, NULL, "debug");
Christoph Hellwiga05931c2012-03-13 08:52:37 +00001874 if (error)
Bill O'Donnellbb230c12015-10-12 05:15:45 +11001875 goto out_remove_stats_kobj;
Brian Foster65b65732014-09-09 11:52:42 +10001876#endif
1877
1878 error = xfs_qm_init();
1879 if (error)
Bill O'Donnellbb230c12015-10-12 05:15:45 +11001880 goto out_remove_dbg_kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881
1882 error = register_filesystem(&xfs_fs_type);
1883 if (error)
Christoph Hellwiga05931c2012-03-13 08:52:37 +00001884 goto out_qm_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 return 0;
1886
Christoph Hellwiga05931c2012-03-13 08:52:37 +00001887 out_qm_exit:
1888 xfs_qm_exit();
Bill O'Donnellbb230c12015-10-12 05:15:45 +11001889 out_remove_dbg_kobj:
Brian Foster65b65732014-09-09 11:52:42 +10001890#ifdef DEBUG
1891 xfs_sysfs_del(&xfs_dbg_kobj);
Bill O'Donnellbb230c12015-10-12 05:15:45 +11001892 out_remove_stats_kobj:
Brian Foster65b65732014-09-09 11:52:42 +10001893#endif
Bill O'Donnell80529c42015-10-12 05:19:45 +11001894 xfs_sysfs_del(&xfsstats.xs_kobj);
1895 out_free_stats:
1896 free_percpu(xfsstats.xs_stats);
Bill O'Donnellbb230c12015-10-12 05:15:45 +11001897 out_kset_unregister:
Brian Foster3d871222014-07-15 07:41:37 +10001898 kset_unregister(xfs_kset);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001899 out_sysctl_unregister:
1900 xfs_sysctl_unregister();
1901 out_cleanup_procfs:
1902 xfs_cleanup_procfs();
1903 out_buf_terminate:
Nathan Scottce8e9222006-01-11 15:39:08 +11001904 xfs_buf_terminate();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001905 out_mru_cache_uninit:
1906 xfs_mru_cache_uninit();
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10001907 out_destroy_wq:
1908 xfs_destroy_workqueues();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001909 out_destroy_zones:
Nathan Scott87582802006-03-14 13:18:19 +11001910 xfs_destroy_zones();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001911 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 return error;
1913}
1914
1915STATIC void __exit
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001916exit_xfs_fs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917{
Christoph Hellwiga05931c2012-03-13 08:52:37 +00001918 xfs_qm_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 unregister_filesystem(&xfs_fs_type);
Brian Foster65b65732014-09-09 11:52:42 +10001920#ifdef DEBUG
1921 xfs_sysfs_del(&xfs_dbg_kobj);
1922#endif
Bill O'Donnell80529c42015-10-12 05:19:45 +11001923 xfs_sysfs_del(&xfsstats.xs_kobj);
1924 free_percpu(xfsstats.xs_stats);
Brian Foster3d871222014-07-15 07:41:37 +10001925 kset_unregister(xfs_kset);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001926 xfs_sysctl_unregister();
1927 xfs_cleanup_procfs();
Nathan Scottce8e9222006-01-11 15:39:08 +11001928 xfs_buf_terminate();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001929 xfs_mru_cache_uninit();
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10001930 xfs_destroy_workqueues();
Nathan Scott87582802006-03-14 13:18:19 +11001931 xfs_destroy_zones();
Darrick J. Wongaf3b6382015-11-03 13:06:34 +11001932 xfs_uuid_table_free();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933}
1934
1935module_init(init_xfs_fs);
1936module_exit(exit_xfs_fs);
1937
1938MODULE_AUTHOR("Silicon Graphics, Inc.");
1939MODULE_DESCRIPTION(XFS_VERSION_STRING " with " XFS_BUILD_OPTIONS " enabled");
1940MODULE_LICENSE("GPL");