blob: d85087bc0c406d6f36e4a90ade3a76f45753229c [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 Chinner70a9883c2013-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.
Eric Sandeena08ee402016-03-02 09:56:31 +1100175 *
176 * *sb is const because this is also used to test options on the remount
177 * path, and we don't want this to have any side effects at remount time.
178 * Today this function does not change *sb, but just to future-proof...
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100179 */
David Chinnera67d7c52007-11-23 16:29:32 +1100180STATIC int
181xfs_parseargs(
182 struct xfs_mount *mp,
Christoph Hellwig288699f2010-06-23 18:11:15 +1000183 char *options)
David Chinnera67d7c52007-11-23 16:29:32 +1100184{
Eric Sandeena08ee402016-03-02 09:56:31 +1100185 const struct super_block *sb = mp->m_super;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100186 char *p;
187 substring_t args[MAX_OPT_ARGS];
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100188 int dsunit = 0;
189 int dswidth = 0;
190 int iosize = 0;
Christoph Hellwiga5687782009-02-09 08:37:39 +0100191 __uint8_t iosizelog = 0;
David Chinnera67d7c52007-11-23 16:29:32 +1100192
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100193 /*
Dave Chinner4f107002011-03-07 10:00:35 +1100194 * set up the mount name first so all the errors will refer to the
195 * correct device.
196 */
197 mp->m_fsname = kstrndup(sb->s_id, MAXNAMELEN, GFP_KERNEL);
198 if (!mp->m_fsname)
Dave Chinner24513372014-06-25 14:58:08 +1000199 return -ENOMEM;
Dave Chinner4f107002011-03-07 10:00:35 +1100200 mp->m_fsname_len = strlen(mp->m_fsname) + 1;
201
202 /*
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100203 * Copy binary VFS mount flags we are interested in.
204 */
205 if (sb->s_flags & MS_RDONLY)
206 mp->m_flags |= XFS_MOUNT_RDONLY;
207 if (sb->s_flags & MS_DIRSYNC)
208 mp->m_flags |= XFS_MOUNT_DIRSYNC;
209 if (sb->s_flags & MS_SYNCHRONOUS)
210 mp->m_flags |= XFS_MOUNT_WSYNC;
211
212 /*
213 * Set some default flags that could be cleared by the mount option
214 * parsing.
215 */
216 mp->m_flags |= XFS_MOUNT_BARRIER;
217 mp->m_flags |= XFS_MOUNT_COMPAT_IOSIZE;
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100218
219 /*
220 * These can be overridden by the mount option parsing.
221 */
222 mp->m_logbufs = -1;
223 mp->m_logbsize = -1;
David Chinnera67d7c52007-11-23 16:29:32 +1100224
225 if (!options)
226 goto done;
227
Eric Sandeen2e74af02016-03-02 09:55:38 +1100228 while ((p = strsep(&options, ",")) != NULL) {
229 int token;
David Chinnera67d7c52007-11-23 16:29:32 +1100230
Eric Sandeen2e74af02016-03-02 09:55:38 +1100231 if (!*p)
232 continue;
233
234 token = match_token(p, tokens, args);
235 switch (token) {
236 case Opt_logbufs:
237 if (match_int(args, &mp->m_logbufs))
Dave Chinner24513372014-06-25 14:58:08 +1000238 return -EINVAL;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100239 break;
240 case Opt_logbsize:
241 if (suffix_kstrtoint(args, 10, &mp->m_logbsize))
Dave Chinner24513372014-06-25 14:58:08 +1000242 return -EINVAL;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100243 break;
244 case Opt_logdev:
245 mp->m_logname = match_strdup(args);
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100246 if (!mp->m_logname)
Dave Chinner24513372014-06-25 14:58:08 +1000247 return -ENOMEM;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100248 break;
249 case Opt_mtpt:
250 xfs_warn(mp, "%s option not allowed on this system", p);
Dave Chinner24513372014-06-25 14:58:08 +1000251 return -EINVAL;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100252 case Opt_rtdev:
253 mp->m_rtname = match_strdup(args);
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100254 if (!mp->m_rtname)
Dave Chinner24513372014-06-25 14:58:08 +1000255 return -ENOMEM;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100256 break;
257 case Opt_allocsize:
258 case Opt_biosize:
259 if (suffix_kstrtoint(args, 10, &iosize))
Dave Chinner24513372014-06-25 14:58:08 +1000260 return -EINVAL;
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100261 iosizelog = ffs(iosize) - 1;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100262 break;
263 case Opt_grpid:
264 case Opt_bsdgroups:
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_nogrpid:
268 case Opt_sysvgroups:
David Chinnera67d7c52007-11-23 16:29:32 +1100269 mp->m_flags &= ~XFS_MOUNT_GRPID;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100270 break;
271 case Opt_wsync:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100272 mp->m_flags |= XFS_MOUNT_WSYNC;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100273 break;
274 case Opt_norecovery:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100275 mp->m_flags |= XFS_MOUNT_NORECOVERY;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100276 break;
277 case Opt_noalign:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100278 mp->m_flags |= XFS_MOUNT_NOALIGN;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100279 break;
280 case Opt_swalloc:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100281 mp->m_flags |= XFS_MOUNT_SWALLOC;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100282 break;
283 case Opt_sunit:
284 if (match_int(args, &dsunit))
Dave Chinner24513372014-06-25 14:58:08 +1000285 return -EINVAL;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100286 break;
287 case Opt_swidth:
288 if (match_int(args, &dswidth))
Dave Chinner24513372014-06-25 14:58:08 +1000289 return -EINVAL;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100290 break;
291 case Opt_inode32:
Carlos Maiolino08bf5402012-09-20 10:32:37 -0300292 mp->m_flags |= XFS_MOUNT_SMALL_INUMS;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100293 break;
294 case Opt_inode64:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100295 mp->m_flags &= ~XFS_MOUNT_SMALL_INUMS;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100296 break;
297 case Opt_nouuid:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100298 mp->m_flags |= XFS_MOUNT_NOUUID;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100299 break;
300 case Opt_barrier:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100301 mp->m_flags |= XFS_MOUNT_BARRIER;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100302 break;
303 case Opt_nobarrier:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100304 mp->m_flags &= ~XFS_MOUNT_BARRIER;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100305 break;
306 case Opt_ikeep:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100307 mp->m_flags |= XFS_MOUNT_IKEEP;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100308 break;
309 case Opt_noikeep:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100310 mp->m_flags &= ~XFS_MOUNT_IKEEP;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100311 break;
312 case Opt_largeio:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100313 mp->m_flags &= ~XFS_MOUNT_COMPAT_IOSIZE;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100314 break;
315 case Opt_nolargeio:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100316 mp->m_flags |= XFS_MOUNT_COMPAT_IOSIZE;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100317 break;
318 case Opt_attr2:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100319 mp->m_flags |= XFS_MOUNT_ATTR2;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100320 break;
321 case Opt_noattr2:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100322 mp->m_flags &= ~XFS_MOUNT_ATTR2;
323 mp->m_flags |= XFS_MOUNT_NOATTR2;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100324 break;
325 case Opt_filestreams:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100326 mp->m_flags |= XFS_MOUNT_FILESTREAMS;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100327 break;
328 case Opt_noquota:
Chandra Seetharaman4177af32012-01-23 17:31:43 +0000329 mp->m_qflags &= ~XFS_ALL_QUOTA_ACCT;
330 mp->m_qflags &= ~XFS_ALL_QUOTA_ENFD;
331 mp->m_qflags &= ~XFS_ALL_QUOTA_ACTIVE;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100332 break;
333 case Opt_quota:
334 case Opt_uquota:
335 case Opt_usrquota:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100336 mp->m_qflags |= (XFS_UQUOTA_ACCT | XFS_UQUOTA_ACTIVE |
337 XFS_UQUOTA_ENFD);
Eric Sandeen2e74af02016-03-02 09:55:38 +1100338 break;
339 case Opt_qnoenforce:
340 case Opt_uqnoenforce:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100341 mp->m_qflags |= (XFS_UQUOTA_ACCT | XFS_UQUOTA_ACTIVE);
342 mp->m_qflags &= ~XFS_UQUOTA_ENFD;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100343 break;
344 case Opt_pquota:
345 case Opt_prjquota:
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 XFS_PQUOTA_ENFD);
Eric Sandeen2e74af02016-03-02 09:55:38 +1100348 break;
349 case Opt_pqnoenforce:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100350 mp->m_qflags |= (XFS_PQUOTA_ACCT | XFS_PQUOTA_ACTIVE);
Chandra Seetharaman83e782e2013-06-27 17:25:10 -0500351 mp->m_qflags &= ~XFS_PQUOTA_ENFD;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100352 case Opt_gquota:
353 case Opt_grpquota:
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 XFS_GQUOTA_ENFD);
Eric Sandeen2e74af02016-03-02 09:55:38 +1100356 break;
357 case Opt_gqnoenforce:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100358 mp->m_qflags |= (XFS_GQUOTA_ACCT | XFS_GQUOTA_ACTIVE);
Chandra Seetharaman83e782e2013-06-27 17:25:10 -0500359 mp->m_qflags &= ~XFS_GQUOTA_ENFD;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100360 break;
361 case Opt_discard:
Christoph Hellwige84661a2011-05-20 13:45:32 +0000362 mp->m_flags |= XFS_MOUNT_DISCARD;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100363 break;
364 case Opt_nodiscard:
Christoph Hellwige84661a2011-05-20 13:45:32 +0000365 mp->m_flags &= ~XFS_MOUNT_DISCARD;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100366 break;
Dave Chinnercbe4dab2015-06-04 09:19:18 +1000367#ifdef CONFIG_FS_DAX
Eric Sandeen2e74af02016-03-02 09:55:38 +1100368 case Opt_dax:
Dave Chinnercbe4dab2015-06-04 09:19:18 +1000369 mp->m_flags |= XFS_MOUNT_DAX;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100370 break;
Dave Chinnercbe4dab2015-06-04 09:19:18 +1000371#endif
Eric Sandeen2e74af02016-03-02 09:55:38 +1100372 default:
373 xfs_warn(mp, "unknown mount option [%s].", p);
Dave Chinner24513372014-06-25 14:58:08 +1000374 return -EINVAL;
David Chinnera67d7c52007-11-23 16:29:32 +1100375 }
376 }
377
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100378 /*
379 * no recovery flag requires a read-only mount
380 */
381 if ((mp->m_flags & XFS_MOUNT_NORECOVERY) &&
382 !(mp->m_flags & XFS_MOUNT_RDONLY)) {
Dave Chinner4f107002011-03-07 10:00:35 +1100383 xfs_warn(mp, "no-recovery mounts must be read-only.");
Dave Chinner24513372014-06-25 14:58:08 +1000384 return -EINVAL;
David Chinnera67d7c52007-11-23 16:29:32 +1100385 }
386
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100387 if ((mp->m_flags & XFS_MOUNT_NOALIGN) && (dsunit || dswidth)) {
Dave Chinner4f107002011-03-07 10:00:35 +1100388 xfs_warn(mp,
389 "sunit and swidth options incompatible with the noalign option");
Dave Chinner24513372014-06-25 14:58:08 +1000390 return -EINVAL;
David Chinnera67d7c52007-11-23 16:29:32 +1100391 }
392
Christoph Hellwig7d095252009-06-08 15:33:32 +0200393#ifndef CONFIG_XFS_QUOTA
394 if (XFS_IS_QUOTA_RUNNING(mp)) {
Dave Chinner4f107002011-03-07 10:00:35 +1100395 xfs_warn(mp, "quota support not available in this kernel.");
Dave Chinner24513372014-06-25 14:58:08 +1000396 return -EINVAL;
Christoph Hellwig7d095252009-06-08 15:33:32 +0200397 }
398#endif
399
David Chinnera67d7c52007-11-23 16:29:32 +1100400 if ((dsunit && !dswidth) || (!dsunit && dswidth)) {
Dave Chinner4f107002011-03-07 10:00:35 +1100401 xfs_warn(mp, "sunit and swidth must be specified together");
Dave Chinner24513372014-06-25 14:58:08 +1000402 return -EINVAL;
David Chinnera67d7c52007-11-23 16:29:32 +1100403 }
404
405 if (dsunit && (dswidth % dsunit != 0)) {
Dave Chinner4f107002011-03-07 10:00:35 +1100406 xfs_warn(mp,
407 "stripe width (%d) must be a multiple of the stripe unit (%d)",
David Chinnera67d7c52007-11-23 16:29:32 +1100408 dswidth, dsunit);
Dave Chinner24513372014-06-25 14:58:08 +1000409 return -EINVAL;
David Chinnera67d7c52007-11-23 16:29:32 +1100410 }
411
David Chinnera67d7c52007-11-23 16:29:32 +1100412done:
Jie Liu39a45d82013-05-02 19:27:47 +0800413 if (dsunit && !(mp->m_flags & XFS_MOUNT_NOALIGN)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100414 /*
415 * At this point the superblock has not been read
416 * in, therefore we do not know the block size.
417 * Before the mount call ends we will convert
418 * these to FSBs.
419 */
Jie Liu39a45d82013-05-02 19:27:47 +0800420 mp->m_dalign = dsunit;
421 mp->m_swidth = dswidth;
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100422 }
423
424 if (mp->m_logbufs != -1 &&
425 mp->m_logbufs != 0 &&
426 (mp->m_logbufs < XLOG_MIN_ICLOGS ||
427 mp->m_logbufs > XLOG_MAX_ICLOGS)) {
Dave Chinner4f107002011-03-07 10:00:35 +1100428 xfs_warn(mp, "invalid logbufs value: %d [not %d-%d]",
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100429 mp->m_logbufs, XLOG_MIN_ICLOGS, XLOG_MAX_ICLOGS);
Dave Chinner24513372014-06-25 14:58:08 +1000430 return -EINVAL;
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100431 }
432 if (mp->m_logbsize != -1 &&
433 mp->m_logbsize != 0 &&
434 (mp->m_logbsize < XLOG_MIN_RECORD_BSIZE ||
435 mp->m_logbsize > XLOG_MAX_RECORD_BSIZE ||
436 !is_power_of_2(mp->m_logbsize))) {
Dave Chinner4f107002011-03-07 10:00:35 +1100437 xfs_warn(mp,
438 "invalid logbufsize: %d [not 16k,32k,64k,128k or 256k]",
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100439 mp->m_logbsize);
Dave Chinner24513372014-06-25 14:58:08 +1000440 return -EINVAL;
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100441 }
442
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100443 if (iosizelog) {
444 if (iosizelog > XFS_MAX_IO_LOG ||
445 iosizelog < XFS_MIN_IO_LOG) {
Dave Chinner4f107002011-03-07 10:00:35 +1100446 xfs_warn(mp, "invalid log iosize: %d [not %d-%d]",
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100447 iosizelog, XFS_MIN_IO_LOG,
448 XFS_MAX_IO_LOG);
Dave Chinner24513372014-06-25 14:58:08 +1000449 return -EINVAL;
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100450 }
451
452 mp->m_flags |= XFS_MOUNT_DFLT_IOSIZE;
453 mp->m_readio_log = iosizelog;
454 mp->m_writeio_log = iosizelog;
455 }
456
David Chinnera67d7c52007-11-23 16:29:32 +1100457 return 0;
458}
459
460struct proc_xfs_info {
Dave Chinnercbe4dab2015-06-04 09:19:18 +1000461 uint64_t flag;
462 char *str;
David Chinnera67d7c52007-11-23 16:29:32 +1100463};
464
465STATIC int
466xfs_showargs(
467 struct xfs_mount *mp,
468 struct seq_file *m)
469{
470 static struct proc_xfs_info xfs_info_set[] = {
471 /* the few simple ones we can get from the mount struct */
Eric Sandeen2e74af02016-03-02 09:55:38 +1100472 { XFS_MOUNT_IKEEP, ",ikeep" },
473 { XFS_MOUNT_WSYNC, ",wsync" },
474 { XFS_MOUNT_NOALIGN, ",noalign" },
475 { XFS_MOUNT_SWALLOC, ",swalloc" },
476 { XFS_MOUNT_NOUUID, ",nouuid" },
477 { XFS_MOUNT_NORECOVERY, ",norecovery" },
478 { XFS_MOUNT_ATTR2, ",attr2" },
479 { XFS_MOUNT_FILESTREAMS, ",filestreams" },
480 { XFS_MOUNT_GRPID, ",grpid" },
481 { XFS_MOUNT_DISCARD, ",discard" },
482 { XFS_MOUNT_SMALL_INUMS, ",inode32" },
483 { XFS_MOUNT_DAX, ",dax" },
David Chinnera67d7c52007-11-23 16:29:32 +1100484 { 0, NULL }
485 };
486 static struct proc_xfs_info xfs_info_unset[] = {
487 /* the few simple ones we can get from the mount struct */
Eric Sandeen2e74af02016-03-02 09:55:38 +1100488 { XFS_MOUNT_COMPAT_IOSIZE, ",largeio" },
489 { XFS_MOUNT_BARRIER, ",nobarrier" },
490 { XFS_MOUNT_SMALL_INUMS, ",inode64" },
David Chinnera67d7c52007-11-23 16:29:32 +1100491 { 0, NULL }
492 };
493 struct proc_xfs_info *xfs_infop;
494
495 for (xfs_infop = xfs_info_set; xfs_infop->flag; xfs_infop++) {
496 if (mp->m_flags & xfs_infop->flag)
497 seq_puts(m, xfs_infop->str);
498 }
499 for (xfs_infop = xfs_info_unset; xfs_infop->flag; xfs_infop++) {
500 if (!(mp->m_flags & xfs_infop->flag))
501 seq_puts(m, xfs_infop->str);
502 }
503
504 if (mp->m_flags & XFS_MOUNT_DFLT_IOSIZE)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100505 seq_printf(m, ",allocsize=%dk",
David Chinnera67d7c52007-11-23 16:29:32 +1100506 (int)(1 << mp->m_writeio_log) >> 10);
507
508 if (mp->m_logbufs > 0)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100509 seq_printf(m, ",logbufs=%d", mp->m_logbufs);
David Chinnera67d7c52007-11-23 16:29:32 +1100510 if (mp->m_logbsize > 0)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100511 seq_printf(m, ",logbsize=%dk", mp->m_logbsize >> 10);
David Chinnera67d7c52007-11-23 16:29:32 +1100512
513 if (mp->m_logname)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100514 seq_show_option(m, "logdev", mp->m_logname);
David Chinnera67d7c52007-11-23 16:29:32 +1100515 if (mp->m_rtname)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100516 seq_show_option(m, "rtdev", mp->m_rtname);
David Chinnera67d7c52007-11-23 16:29:32 +1100517
518 if (mp->m_dalign > 0)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100519 seq_printf(m, ",sunit=%d",
David Chinnera67d7c52007-11-23 16:29:32 +1100520 (int)XFS_FSB_TO_BB(mp, mp->m_dalign));
521 if (mp->m_swidth > 0)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100522 seq_printf(m, ",swidth=%d",
David Chinnera67d7c52007-11-23 16:29:32 +1100523 (int)XFS_FSB_TO_BB(mp, mp->m_swidth));
524
525 if (mp->m_qflags & (XFS_UQUOTA_ACCT|XFS_UQUOTA_ENFD))
Eric Sandeen2e74af02016-03-02 09:55:38 +1100526 seq_puts(m, ",usrquota");
David Chinnera67d7c52007-11-23 16:29:32 +1100527 else if (mp->m_qflags & XFS_UQUOTA_ACCT)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100528 seq_puts(m, ",uqnoenforce");
David Chinnera67d7c52007-11-23 16:29:32 +1100529
Alex Elder988abe42009-09-02 17:02:24 -0500530 if (mp->m_qflags & XFS_PQUOTA_ACCT) {
Chandra Seetharaman83e782e2013-06-27 17:25:10 -0500531 if (mp->m_qflags & XFS_PQUOTA_ENFD)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100532 seq_puts(m, ",prjquota");
Alex Elder988abe42009-09-02 17:02:24 -0500533 else
Eric Sandeen2e74af02016-03-02 09:55:38 +1100534 seq_puts(m, ",pqnoenforce");
Chandra Seetharamand892d582013-07-19 17:36:02 -0500535 }
536 if (mp->m_qflags & XFS_GQUOTA_ACCT) {
Chandra Seetharaman83e782e2013-06-27 17:25:10 -0500537 if (mp->m_qflags & XFS_GQUOTA_ENFD)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100538 seq_puts(m, ",grpquota");
Alex Elder988abe42009-09-02 17:02:24 -0500539 else
Eric Sandeen2e74af02016-03-02 09:55:38 +1100540 seq_puts(m, ",gqnoenforce");
Alex Elder988abe42009-09-02 17:02:24 -0500541 }
David Chinnera67d7c52007-11-23 16:29:32 +1100542
543 if (!(mp->m_qflags & XFS_ALL_QUOTA_ACCT))
Eric Sandeen2e74af02016-03-02 09:55:38 +1100544 seq_puts(m, ",noquota");
David Chinnera67d7c52007-11-23 16:29:32 +1100545
546 return 0;
547}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548__uint64_t
549xfs_max_file_offset(
550 unsigned int blockshift)
551{
552 unsigned int pagefactor = 1;
553 unsigned int bitshift = BITS_PER_LONG - 1;
554
555 /* Figure out maximum filesize, on Linux this can depend on
556 * the filesystem blocksize (on 32 bit platforms).
Christoph Hellwigebdec242010-10-06 10:47:23 +0200557 * __block_write_begin does this in an [unsigned] long...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 * page->index << (PAGE_CACHE_SHIFT - bbits)
559 * So, for page sized blocks (4K on 32 bit platforms),
560 * this wraps at around 8Tb (hence MAX_LFS_FILESIZE which is
561 * (((u64)PAGE_CACHE_SIZE << (BITS_PER_LONG-1))-1)
562 * but for smaller blocksizes it is less (bbits = log2 bsize).
563 * Note1: get_block_t takes a long (implicit cast from above)
564 * Note2: The Large Block Device (LBD and HAVE_SECTOR_T) patch
565 * can optionally convert the [unsigned] long from above into
566 * an [unsigned] long long.
567 */
568
569#if BITS_PER_LONG == 32
Bartlomiej Zolnierkiewicz90c699a2009-06-19 08:08:50 +0200570# if defined(CONFIG_LBDAF)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 ASSERT(sizeof(sector_t) == 8);
572 pagefactor = PAGE_CACHE_SIZE;
573 bitshift = BITS_PER_LONG;
574# else
575 pagefactor = PAGE_CACHE_SIZE >> (PAGE_CACHE_SHIFT - blockshift);
576# endif
577#endif
578
579 return (((__uint64_t)pagefactor) << bitshift) - 1;
580}
581
Eric Sandeen9de67c32014-07-24 20:51:54 +1000582/*
Eric Sandeen12c3f052016-03-02 09:58:09 +1100583 * Set parameters for inode allocation heuristics, taking into account
584 * filesystem size and inode32/inode64 mount options; i.e. specifically
585 * whether or not XFS_MOUNT_SMALL_INUMS is set.
586 *
587 * Inode allocation patterns are altered only if inode32 is requested
588 * (XFS_MOUNT_SMALL_INUMS), and the filesystem is sufficiently large.
589 * If altered, XFS_MOUNT_32BITINODES is set as well.
590 *
591 * An agcount independent of that in the mount structure is provided
592 * because in the growfs case, mp->m_sb.sb_agcount is not yet updated
593 * to the potentially higher ag count.
594 *
595 * Returns the maximum AG index which may contain inodes.
Eric Sandeen9de67c32014-07-24 20:51:54 +1000596 */
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300597xfs_agnumber_t
Eric Sandeen12c3f052016-03-02 09:58:09 +1100598xfs_set_inode_alloc(
599 struct xfs_mount *mp,
600 xfs_agnumber_t agcount)
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300601{
Eric Sandeen12c3f052016-03-02 09:58:09 +1100602 xfs_agnumber_t index;
Carlos Maiolino4056c1d2012-09-20 10:32:40 -0300603 xfs_agnumber_t maxagi = 0;
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300604 xfs_sb_t *sbp = &mp->m_sb;
605 xfs_agnumber_t max_metadata;
Eric Sandeen54aa61f2014-07-24 20:53:10 +1000606 xfs_agino_t agino;
607 xfs_ino_t ino;
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300608
Eric Sandeen12c3f052016-03-02 09:58:09 +1100609 /*
610 * Calculate how much should be reserved for inodes to meet
611 * the max inode percentage. Used only for inode32.
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300612 */
613 if (mp->m_maxicount) {
614 __uint64_t icount;
615
616 icount = sbp->sb_dblocks * sbp->sb_imax_pct;
617 do_div(icount, 100);
618 icount += sbp->sb_agblocks - 1;
619 do_div(icount, sbp->sb_agblocks);
620 max_metadata = icount;
621 } else {
Eric Sandeen9de67c32014-07-24 20:51:54 +1000622 max_metadata = agcount;
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300623 }
624
Eric Sandeen12c3f052016-03-02 09:58:09 +1100625 /* Get the last possible inode in the filesystem */
Eric Sandeen54aa61f2014-07-24 20:53:10 +1000626 agino = XFS_OFFBNO_TO_AGINO(mp, sbp->sb_agblocks - 1, 0);
Eric Sandeen12c3f052016-03-02 09:58:09 +1100627 ino = XFS_AGINO_TO_INO(mp, agcount - 1, agino);
Eric Sandeen54aa61f2014-07-24 20:53:10 +1000628
Eric Sandeen12c3f052016-03-02 09:58:09 +1100629 /*
630 * If user asked for no more than 32-bit inodes, and the fs is
631 * sufficiently large, set XFS_MOUNT_32BITINODES if we must alter
632 * the allocator to accommodate the request.
633 */
634 if ((mp->m_flags & XFS_MOUNT_SMALL_INUMS) && ino > XFS_MAXINUMBER_32)
635 mp->m_flags |= XFS_MOUNT_32BITINODES;
636 else
637 mp->m_flags &= ~XFS_MOUNT_32BITINODES;
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300638
Eric Sandeen9de67c32014-07-24 20:51:54 +1000639 for (index = 0; index < agcount; index++) {
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300640 struct xfs_perag *pag;
641
Eric Sandeen12c3f052016-03-02 09:58:09 +1100642 ino = XFS_AGINO_TO_INO(mp, index, agino);
643
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300644 pag = xfs_perag_get(mp, index);
Eric Sandeen12c3f052016-03-02 09:58:09 +1100645
646 if (mp->m_flags & XFS_MOUNT_32BITINODES) {
647 if (ino > XFS_MAXINUMBER_32) {
648 pag->pagi_inodeok = 0;
649 pag->pagf_metadata = 0;
650 } else {
651 pag->pagi_inodeok = 1;
652 maxagi++;
653 if (index < max_metadata)
654 pag->pagf_metadata = 1;
655 else
656 pag->pagf_metadata = 0;
657 }
658 } else {
659 pag->pagi_inodeok = 1;
660 pag->pagf_metadata = 0;
661 }
662
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300663 xfs_perag_put(pag);
664 }
665
Eric Sandeen12c3f052016-03-02 09:58:09 +1100666 return (mp->m_flags & XFS_MOUNT_32BITINODES) ? maxagi : agcount;
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300667}
668
Hannes Eder3180e662009-03-04 19:34:10 +0100669STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670xfs_blkdev_get(
671 xfs_mount_t *mp,
672 const char *name,
673 struct block_device **bdevp)
674{
675 int error = 0;
676
Tejun Heod4d77622010-11-13 11:55:18 +0100677 *bdevp = blkdev_get_by_path(name, FMODE_READ|FMODE_WRITE|FMODE_EXCL,
678 mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 if (IS_ERR(*bdevp)) {
680 error = PTR_ERR(*bdevp);
Eric Sandeen77af5742014-12-24 09:47:27 +1100681 xfs_warn(mp, "Invalid device [%s], error=%d", name, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 }
683
Dave Chinner24513372014-06-25 14:58:08 +1000684 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685}
686
Hannes Eder3180e662009-03-04 19:34:10 +0100687STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688xfs_blkdev_put(
689 struct block_device *bdev)
690{
691 if (bdev)
Tejun Heoe525fd82010-11-13 11:55:17 +0100692 blkdev_put(bdev, FMODE_READ|FMODE_WRITE|FMODE_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693}
694
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100695void
696xfs_blkdev_issue_flush(
697 xfs_buftarg_t *buftarg)
698{
Shaohua Li7582df52012-04-24 21:23:46 +0800699 blkdev_issue_flush(buftarg->bt_bdev, GFP_NOFS, NULL);
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100700}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000702STATIC void
703xfs_close_devices(
704 struct xfs_mount *mp)
705{
706 if (mp->m_logdev_targp && mp->m_logdev_targp != mp->m_ddev_targp) {
Lachlan McIlroyc032bfc2008-07-18 17:13:12 +1000707 struct block_device *logdev = mp->m_logdev_targp->bt_bdev;
Christoph Hellwigb7963132009-03-03 14:48:37 -0500708 xfs_free_buftarg(mp, mp->m_logdev_targp);
Lachlan McIlroyc032bfc2008-07-18 17:13:12 +1000709 xfs_blkdev_put(logdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000710 }
711 if (mp->m_rtdev_targp) {
Lachlan McIlroyc032bfc2008-07-18 17:13:12 +1000712 struct block_device *rtdev = mp->m_rtdev_targp->bt_bdev;
Christoph Hellwigb7963132009-03-03 14:48:37 -0500713 xfs_free_buftarg(mp, mp->m_rtdev_targp);
Lachlan McIlroyc032bfc2008-07-18 17:13:12 +1000714 xfs_blkdev_put(rtdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000715 }
Christoph Hellwigb7963132009-03-03 14:48:37 -0500716 xfs_free_buftarg(mp, mp->m_ddev_targp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000717}
718
719/*
720 * The file system configurations are:
721 * (1) device (partition) with data and internal log
722 * (2) logical volume with data and log subvolumes.
723 * (3) logical volume with data, log, and realtime subvolumes.
724 *
725 * We only have to handle opening the log and realtime volumes here if
726 * they are present. The data subvolume has already been opened by
727 * get_sb_bdev() and is stored in sb->s_bdev.
728 */
729STATIC int
730xfs_open_devices(
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100731 struct xfs_mount *mp)
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000732{
733 struct block_device *ddev = mp->m_super->s_bdev;
734 struct block_device *logdev = NULL, *rtdev = NULL;
735 int error;
736
737 /*
738 * Open real time and log devices - order is important.
739 */
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100740 if (mp->m_logname) {
741 error = xfs_blkdev_get(mp, mp->m_logname, &logdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000742 if (error)
743 goto out;
744 }
745
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100746 if (mp->m_rtname) {
747 error = xfs_blkdev_get(mp, mp->m_rtname, &rtdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000748 if (error)
749 goto out_close_logdev;
750
751 if (rtdev == ddev || rtdev == logdev) {
Dave Chinner4f107002011-03-07 10:00:35 +1100752 xfs_warn(mp,
753 "Cannot mount filesystem with identical rtdev and ddev/logdev.");
Dave Chinner24513372014-06-25 14:58:08 +1000754 error = -EINVAL;
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000755 goto out_close_rtdev;
756 }
757 }
758
759 /*
760 * Setup xfs_mount buffer target pointers
761 */
Dave Chinner24513372014-06-25 14:58:08 +1000762 error = -ENOMEM;
Eric Sandeen34dcefd2014-04-14 19:01:00 +1000763 mp->m_ddev_targp = xfs_alloc_buftarg(mp, ddev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000764 if (!mp->m_ddev_targp)
765 goto out_close_rtdev;
766
767 if (rtdev) {
Eric Sandeen34dcefd2014-04-14 19:01:00 +1000768 mp->m_rtdev_targp = xfs_alloc_buftarg(mp, rtdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000769 if (!mp->m_rtdev_targp)
770 goto out_free_ddev_targ;
771 }
772
773 if (logdev && logdev != ddev) {
Eric Sandeen34dcefd2014-04-14 19:01:00 +1000774 mp->m_logdev_targp = xfs_alloc_buftarg(mp, logdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000775 if (!mp->m_logdev_targp)
776 goto out_free_rtdev_targ;
777 } else {
778 mp->m_logdev_targp = mp->m_ddev_targp;
779 }
780
781 return 0;
782
783 out_free_rtdev_targ:
784 if (mp->m_rtdev_targp)
Christoph Hellwigb7963132009-03-03 14:48:37 -0500785 xfs_free_buftarg(mp, mp->m_rtdev_targp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000786 out_free_ddev_targ:
Christoph Hellwigb7963132009-03-03 14:48:37 -0500787 xfs_free_buftarg(mp, mp->m_ddev_targp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000788 out_close_rtdev:
Markus Elfringd2a5e3c2014-12-01 08:24:20 +1100789 xfs_blkdev_put(rtdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000790 out_close_logdev:
791 if (logdev && logdev != ddev)
792 xfs_blkdev_put(logdev);
793 out:
794 return error;
795}
796
Christoph Hellwige34b5622008-05-20 15:10:36 +1000797/*
798 * Setup xfs_mount buffer target pointers based on superblock
799 */
800STATIC int
801xfs_setup_devices(
802 struct xfs_mount *mp)
803{
804 int error;
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000805
Eric Sandeena96c4152014-04-14 19:00:29 +1000806 error = xfs_setsize_buftarg(mp->m_ddev_targp, mp->m_sb.sb_sectsize);
Christoph Hellwige34b5622008-05-20 15:10:36 +1000807 if (error)
808 return error;
809
810 if (mp->m_logdev_targp && mp->m_logdev_targp != mp->m_ddev_targp) {
811 unsigned int log_sector_size = BBSIZE;
812
813 if (xfs_sb_version_hassector(&mp->m_sb))
814 log_sector_size = mp->m_sb.sb_logsectsize;
815 error = xfs_setsize_buftarg(mp->m_logdev_targp,
Christoph Hellwige34b5622008-05-20 15:10:36 +1000816 log_sector_size);
817 if (error)
818 return error;
819 }
820 if (mp->m_rtdev_targp) {
821 error = xfs_setsize_buftarg(mp->m_rtdev_targp,
Christoph Hellwige34b5622008-05-20 15:10:36 +1000822 mp->m_sb.sb_sectsize);
823 if (error)
824 return error;
825 }
826
827 return 0;
828}
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000829
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000830STATIC int
831xfs_init_mount_workqueues(
832 struct xfs_mount *mp)
833{
Brian Foster78c931b2014-11-28 13:59:58 +1100834 mp->m_buf_workqueue = alloc_workqueue("xfs-buf/%s",
Brian Fosterb29c70f2014-12-04 09:43:17 +1100835 WQ_MEM_RECLAIM|WQ_FREEZABLE, 1, mp->m_fsname);
Brian Foster78c931b2014-11-28 13:59:58 +1100836 if (!mp->m_buf_workqueue)
837 goto out;
838
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000839 mp->m_data_workqueue = alloc_workqueue("xfs-data/%s",
Brian Foster8018ec02014-09-09 11:44:46 +1000840 WQ_MEM_RECLAIM|WQ_FREEZABLE, 0, mp->m_fsname);
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000841 if (!mp->m_data_workqueue)
Brian Foster78c931b2014-11-28 13:59:58 +1100842 goto out_destroy_buf;
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000843
844 mp->m_unwritten_workqueue = alloc_workqueue("xfs-conv/%s",
Brian Foster8018ec02014-09-09 11:44:46 +1000845 WQ_MEM_RECLAIM|WQ_FREEZABLE, 0, mp->m_fsname);
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000846 if (!mp->m_unwritten_workqueue)
847 goto out_destroy_data_iodone_queue;
848
Dave Chinner4c2d5422012-04-23 17:54:32 +1000849 mp->m_cil_workqueue = alloc_workqueue("xfs-cil/%s",
Brian Foster8018ec02014-09-09 11:44:46 +1000850 WQ_MEM_RECLAIM|WQ_FREEZABLE, 0, mp->m_fsname);
Dave Chinner4c2d5422012-04-23 17:54:32 +1000851 if (!mp->m_cil_workqueue)
852 goto out_destroy_unwritten;
Dave Chinner58896082012-10-08 21:56:05 +1100853
854 mp->m_reclaim_workqueue = alloc_workqueue("xfs-reclaim/%s",
Chris Mason7a29ac42015-11-10 10:10:34 +1100855 WQ_MEM_RECLAIM|WQ_FREEZABLE, 0, mp->m_fsname);
Dave Chinner58896082012-10-08 21:56:05 +1100856 if (!mp->m_reclaim_workqueue)
857 goto out_destroy_cil;
858
859 mp->m_log_workqueue = alloc_workqueue("xfs-log/%s",
Chris Mason7a29ac42015-11-10 10:10:34 +1100860 WQ_MEM_RECLAIM|WQ_FREEZABLE|WQ_HIGHPRI, 0,
861 mp->m_fsname);
Dave Chinner58896082012-10-08 21:56:05 +1100862 if (!mp->m_log_workqueue)
863 goto out_destroy_reclaim;
864
Brian Foster579b62f2012-11-06 09:50:47 -0500865 mp->m_eofblocks_workqueue = alloc_workqueue("xfs-eofblocks/%s",
Chris Mason7a29ac42015-11-10 10:10:34 +1100866 WQ_MEM_RECLAIM|WQ_FREEZABLE, 0, mp->m_fsname);
Brian Foster579b62f2012-11-06 09:50:47 -0500867 if (!mp->m_eofblocks_workqueue)
868 goto out_destroy_log;
869
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000870 return 0;
871
Brian Foster579b62f2012-11-06 09:50:47 -0500872out_destroy_log:
873 destroy_workqueue(mp->m_log_workqueue);
Dave Chinner58896082012-10-08 21:56:05 +1100874out_destroy_reclaim:
875 destroy_workqueue(mp->m_reclaim_workqueue);
876out_destroy_cil:
877 destroy_workqueue(mp->m_cil_workqueue);
Dave Chinner4c2d5422012-04-23 17:54:32 +1000878out_destroy_unwritten:
879 destroy_workqueue(mp->m_unwritten_workqueue);
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000880out_destroy_data_iodone_queue:
881 destroy_workqueue(mp->m_data_workqueue);
Brian Foster78c931b2014-11-28 13:59:58 +1100882out_destroy_buf:
883 destroy_workqueue(mp->m_buf_workqueue);
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000884out:
885 return -ENOMEM;
886}
887
888STATIC void
889xfs_destroy_mount_workqueues(
890 struct xfs_mount *mp)
891{
Brian Foster579b62f2012-11-06 09:50:47 -0500892 destroy_workqueue(mp->m_eofblocks_workqueue);
Dave Chinner58896082012-10-08 21:56:05 +1100893 destroy_workqueue(mp->m_log_workqueue);
894 destroy_workqueue(mp->m_reclaim_workqueue);
Dave Chinner4c2d5422012-04-23 17:54:32 +1000895 destroy_workqueue(mp->m_cil_workqueue);
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000896 destroy_workqueue(mp->m_data_workqueue);
897 destroy_workqueue(mp->m_unwritten_workqueue);
Brian Foster78c931b2014-11-28 13:59:58 +1100898 destroy_workqueue(mp->m_buf_workqueue);
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000899}
900
Dave Chinner9aa05002012-10-08 21:56:04 +1100901/*
902 * Flush all dirty data to disk. Must not be called while holding an XFS_ILOCK
903 * or a page lock. We use sync_inodes_sb() here to ensure we block while waiting
904 * for IO to complete so that we effectively throttle multiple callers to the
905 * rate at which IO is completing.
906 */
907void
908xfs_flush_inodes(
909 struct xfs_mount *mp)
910{
911 struct super_block *sb = mp->m_super;
912
913 if (down_read_trylock(&sb->s_umount)) {
Jan Kara0dc83bd2014-02-21 11:19:04 +0100914 sync_inodes_sb(sb);
Dave Chinner9aa05002012-10-08 21:56:04 +1100915 up_read(&sb->s_umount);
916 }
917}
918
David Chinnerbf904242008-10-30 17:36:14 +1100919/* Catch misguided souls that try to use this interface on XFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920STATIC struct inode *
Nathan Scotta50cd262006-03-14 14:06:18 +1100921xfs_fs_alloc_inode(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 struct super_block *sb)
923{
David Chinnerbf904242008-10-30 17:36:14 +1100924 BUG();
Lachlan McIlroy493dca62008-10-30 17:36:52 +1100925 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926}
927
David Chinnerbf904242008-10-30 17:36:14 +1100928/*
David Chinner99fa8cb2008-10-30 17:36:40 +1100929 * Now that the generic code is guaranteed not to be accessing
930 * the linux inode, we can reclaim the inode.
David Chinnerbf904242008-10-30 17:36:14 +1100931 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932STATIC void
Nathan Scotta50cd262006-03-14 14:06:18 +1100933xfs_fs_destroy_inode(
Christoph Hellwig848ce8f2009-09-29 13:48:56 +0000934 struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935{
Christoph Hellwig848ce8f2009-09-29 13:48:56 +0000936 struct xfs_inode *ip = XFS_I(inode);
937
Christoph Hellwigcca28fb2010-06-24 11:57:09 +1000938 trace_xfs_destroy_inode(ip);
David Chinner99fa8cb2008-10-30 17:36:40 +1100939
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100940 XFS_STATS_INC(ip->i_mount, vn_reclaim);
Christoph Hellwig848ce8f2009-09-29 13:48:56 +0000941
Christoph Hellwig848ce8f2009-09-29 13:48:56 +0000942 ASSERT(XFS_FORCED_SHUTDOWN(ip->i_mount) || ip->i_delayed_blks == 0);
943
944 /*
945 * We should never get here with one of the reclaim flags already set.
946 */
947 ASSERT_ALWAYS(!xfs_iflags_test(ip, XFS_IRECLAIMABLE));
948 ASSERT_ALWAYS(!xfs_iflags_test(ip, XFS_IRECLAIM));
949
950 /*
Dave Chinner57817c62010-01-10 23:51:47 +0000951 * We always use background reclaim here because even if the
952 * inode is clean, it still may be under IO and hence we have
953 * to take the flush lock. The background reclaim path handles
954 * this more efficiently than we can here, so simply let background
955 * reclaim tear down all inodes.
Christoph Hellwig848ce8f2009-09-29 13:48:56 +0000956 */
Dave Chinner57817c62010-01-10 23:51:47 +0000957 xfs_inode_set_reclaim_tag(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958}
959
David Chinner07c8f672008-10-30 16:11:59 +1100960/*
961 * Slab object creation initialisation for the XFS inode.
962 * This covers only the idempotent fields in the XFS inode;
963 * all other fields need to be initialised on allocation
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400964 * from the slab. This avoids the need to repeatedly initialise
David Chinner07c8f672008-10-30 16:11:59 +1100965 * fields in the xfs inode that left in the initialise state
966 * when freeing the inode.
967 */
David Chinnerbf904242008-10-30 17:36:14 +1100968STATIC void
969xfs_fs_inode_init_once(
David Chinner07c8f672008-10-30 16:11:59 +1100970 void *inode)
971{
972 struct xfs_inode *ip = inode;
973
974 memset(ip, 0, sizeof(struct xfs_inode));
David Chinnerbf904242008-10-30 17:36:14 +1100975
976 /* vfs inode */
977 inode_init_once(VFS_I(ip));
978
979 /* xfs inode */
David Chinner07c8f672008-10-30 16:11:59 +1100980 atomic_set(&ip->i_pincount, 0);
981 spin_lock_init(&ip->i_flags_lock);
David Chinner07c8f672008-10-30 16:11:59 +1100982
Dave Chinner653c60b2015-02-23 21:43:37 +1100983 mrlock_init(&ip->i_mmaplock, MRLOCK_ALLOW_EQUAL_PRI|MRLOCK_BARRIER,
984 "xfsino", ip->i_ino);
David Chinner07c8f672008-10-30 16:11:59 +1100985 mrlock_init(&ip->i_lock, MRLOCK_ALLOW_EQUAL_PRI|MRLOCK_BARRIER,
986 "xfsino", ip->i_ino);
David Chinner07c8f672008-10-30 16:11:59 +1100987}
988
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989STATIC void
Al Virob57922d2010-06-07 14:34:48 -0400990xfs_fs_evict_inode(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 struct inode *inode)
992{
Christoph Hellwig1543d792007-08-29 11:46:47 +1000993 xfs_inode_t *ip = XFS_I(inode);
Christoph Hellwig56d433e2005-09-05 08:23:54 +1000994
Christoph Hellwig4f59af72012-07-04 11:13:33 -0400995 ASSERT(!rwsem_is_locked(&ip->i_iolock.mr_lock));
996
Al Virob57922d2010-06-07 14:34:48 -0400997 trace_xfs_evict_inode(ip);
Christoph Hellwigcca28fb2010-06-24 11:57:09 +1000998
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700999 truncate_inode_pages_final(&inode->i_data);
Jan Karadbd57682012-05-03 14:48:02 +02001000 clear_inode(inode);
Bill O'Donnellff6d6af2015-10-12 18:21:22 +11001001 XFS_STATS_INC(ip->i_mount, vn_rele);
1002 XFS_STATS_INC(ip->i_mount, vn_remove);
Christoph Hellwig56d433e2005-09-05 08:23:54 +10001003
David Chinner99fa8cb2008-10-30 17:36:40 +11001004 xfs_inactive(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005}
1006
Dave Chinner5132ba82012-03-22 05:15:10 +00001007/*
1008 * We do an unlocked check for XFS_IDONTCACHE here because we are already
1009 * serialised against cache hits here via the inode->i_lock and igrab() in
1010 * xfs_iget_cache_hit(). Hence a lookup that might clear this flag will not be
1011 * racing with us, and it avoids needing to grab a spinlock here for every inode
1012 * we drop the final reference on.
1013 */
1014STATIC int
1015xfs_fs_drop_inode(
1016 struct inode *inode)
1017{
1018 struct xfs_inode *ip = XFS_I(inode);
1019
1020 return generic_drop_inode(inode) || (ip->i_flags & XFS_IDONTCACHE);
1021}
1022
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023STATIC void
Christoph Hellwiga7381592008-08-13 16:04:05 +10001024xfs_free_fsname(
1025 struct xfs_mount *mp)
1026{
1027 kfree(mp->m_fsname);
1028 kfree(mp->m_rtname);
1029 kfree(mp->m_logname);
1030}
1031
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032STATIC int
Christoph Hellwig69961a22009-10-06 20:29:28 +00001033xfs_fs_sync_fs(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 struct super_block *sb,
1035 int wait)
1036{
Christoph Hellwig745f6912007-08-30 17:20:39 +10001037 struct xfs_mount *mp = XFS_M(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
Lachlan McIlroye893bff2007-10-12 11:13:35 +10001039 /*
Christoph Hellwig34625c62011-12-06 21:58:12 +00001040 * Doing anything during the async pass would be counterproductive.
Lachlan McIlroye893bff2007-10-12 11:13:35 +10001041 */
Christoph Hellwig34625c62011-12-06 21:58:12 +00001042 if (!wait)
Christoph Hellwig69961a22009-10-06 20:29:28 +00001043 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
Dave Chinner34061f52012-10-08 21:56:06 +11001045 xfs_log_force(mp, XFS_LOG_SYNC);
Christoph Hellwig69961a22009-10-06 20:29:28 +00001046 if (laptop_mode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 /*
1048 * The disk must be active because we're syncing.
Dave Chinnerf661f1e2012-10-08 21:56:02 +11001049 * We schedule log work now (now that the disk is
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 * active) instead of later (when it might not be).
1051 */
Dave Chinnerf661f1e2012-10-08 21:56:02 +11001052 flush_delayed_work(&mp->m_log->l_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 }
1054
Christoph Hellwig69961a22009-10-06 20:29:28 +00001055 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056}
1057
1058STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001059xfs_fs_statfs(
David Howells726c3342006-06-23 02:02:58 -07001060 struct dentry *dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 struct kstatfs *statp)
1062{
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001063 struct xfs_mount *mp = XFS_M(dentry->d_sb);
1064 xfs_sb_t *sbp = &mp->m_sb;
David Howells2b0143b2015-03-17 22:25:59 +00001065 struct xfs_inode *ip = XFS_I(d_inode(dentry));
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001066 __uint64_t fakeinos, id;
Dave Chinner501ab322015-02-23 21:19:28 +11001067 __uint64_t icount;
Dave Chinnere88b64e2015-02-23 21:19:53 +11001068 __uint64_t ifree;
Dave Chinner0d485ad2015-02-23 21:22:03 +11001069 __uint64_t fdblocks;
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001070 xfs_extlen_t lsize;
Stuart Brodsky2fe33662010-08-24 11:46:05 +10001071 __int64_t ffree;
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001072
1073 statp->f_type = XFS_SB_MAGIC;
1074 statp->f_namelen = MAXNAMELEN - 1;
1075
1076 id = huge_encode_dev(mp->m_ddev_targp->bt_dev);
1077 statp->f_fsid.val[0] = (u32)id;
1078 statp->f_fsid.val[1] = (u32)(id >> 32);
1079
Dave Chinner501ab322015-02-23 21:19:28 +11001080 icount = percpu_counter_sum(&mp->m_icount);
Dave Chinnere88b64e2015-02-23 21:19:53 +11001081 ifree = percpu_counter_sum(&mp->m_ifree);
Dave Chinner0d485ad2015-02-23 21:22:03 +11001082 fdblocks = percpu_counter_sum(&mp->m_fdblocks);
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001083
1084 spin_lock(&mp->m_sb_lock);
1085 statp->f_bsize = sbp->sb_blocksize;
1086 lsize = sbp->sb_logstart ? sbp->sb_logblocks : 0;
1087 statp->f_blocks = sbp->sb_dblocks - lsize;
Dave Chinner0d485ad2015-02-23 21:22:03 +11001088 spin_unlock(&mp->m_sb_lock);
1089
1090 statp->f_bfree = fdblocks - XFS_ALLOC_SET_ASIDE(mp);
1091 statp->f_bavail = statp->f_bfree;
1092
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001093 fakeinos = statp->f_bfree << sbp->sb_inopblog;
Dave Chinner501ab322015-02-23 21:19:28 +11001094 statp->f_files = MIN(icount + fakeinos, (__uint64_t)XFS_MAXINUMBER);
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001095 if (mp->m_maxicount)
Christoph Hellwiga19d9f82009-03-29 09:51:08 +02001096 statp->f_files = min_t(typeof(statp->f_files),
1097 statp->f_files,
1098 mp->m_maxicount);
Stuart Brodsky2fe33662010-08-24 11:46:05 +10001099
Eric Sandeen01f98822015-02-06 09:53:02 +11001100 /* If sb_icount overshot maxicount, report actual allocation */
1101 statp->f_files = max_t(typeof(statp->f_files),
1102 statp->f_files,
1103 sbp->sb_icount);
1104
Stuart Brodsky2fe33662010-08-24 11:46:05 +10001105 /* make sure statp->f_ffree does not underflow */
Dave Chinnere88b64e2015-02-23 21:19:53 +11001106 ffree = statp->f_files - (icount - ifree);
Stuart Brodsky2fe33662010-08-24 11:46:05 +10001107 statp->f_ffree = max_t(__int64_t, ffree, 0);
1108
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001109
Jie Liuda5bf952012-04-12 03:59:57 +00001110 if ((ip->i_d.di_flags & XFS_DIFLAG_PROJINHERIT) &&
Chandra Seetharaman83e782e2013-06-27 17:25:10 -05001111 ((mp->m_qflags & (XFS_PQUOTA_ACCT|XFS_PQUOTA_ENFD))) ==
1112 (XFS_PQUOTA_ACCT|XFS_PQUOTA_ENFD))
Christoph Hellwig7d095252009-06-08 15:33:32 +02001113 xfs_qm_statvfs(ip, statp);
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001114 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115}
1116
Eric Sandeend5db0f92010-02-05 22:59:53 +00001117STATIC void
1118xfs_save_resvblks(struct xfs_mount *mp)
1119{
1120 __uint64_t resblks = 0;
1121
1122 mp->m_resblks_save = mp->m_resblks;
1123 xfs_reserve_blocks(mp, &resblks, NULL);
1124}
1125
1126STATIC void
1127xfs_restore_resvblks(struct xfs_mount *mp)
1128{
1129 __uint64_t resblks;
1130
1131 if (mp->m_resblks_save) {
1132 resblks = mp->m_resblks_save;
1133 mp->m_resblks_save = 0;
1134 } else
1135 resblks = xfs_default_resblks(mp);
1136
1137 xfs_reserve_blocks(mp, &resblks, NULL);
1138}
1139
Dave Chinnerc7eea6f2012-10-08 21:56:07 +11001140/*
1141 * Trigger writeback of all the dirty metadata in the file system.
1142 *
1143 * This ensures that the metadata is written to their location on disk rather
1144 * than just existing in transactions in the log. This means after a quiesce
Dave Chinnerc75921a2012-10-08 21:56:08 +11001145 * there is no log replay required to write the inodes to disk - this is the
1146 * primary difference between a sync and a quiesce.
Dave Chinnerc7eea6f2012-10-08 21:56:07 +11001147 *
Dave Chinnerc75921a2012-10-08 21:56:08 +11001148 * Note: xfs_log_quiesce() stops background log work - the callers must ensure
1149 * it is started again when appropriate.
Dave Chinnerc7eea6f2012-10-08 21:56:07 +11001150 */
Dave Chinner632b89e2013-10-29 22:11:58 +11001151static void
Dave Chinnerc7eea6f2012-10-08 21:56:07 +11001152xfs_quiesce_attr(
1153 struct xfs_mount *mp)
1154{
1155 int error = 0;
1156
1157 /* wait for all modifications to complete */
1158 while (atomic_read(&mp->m_active_trans) > 0)
1159 delay(100);
1160
1161 /* force the log to unpin objects from the now complete transactions */
1162 xfs_log_force(mp, XFS_LOG_SYNC);
1163
1164 /* reclaim inodes to do any IO before the freeze completes */
1165 xfs_reclaim_inodes(mp, 0);
1166 xfs_reclaim_inodes(mp, SYNC_WAIT);
1167
Dave Chinnerc75921a2012-10-08 21:56:08 +11001168 /* Push the superblock and write an unmount record */
1169 error = xfs_log_sbcount(mp);
1170 if (error)
1171 xfs_warn(mp, "xfs_attr_quiesce: failed to log sb changes. "
1172 "Frozen image may not be consistent.");
Dave Chinnerc7eea6f2012-10-08 21:56:07 +11001173 /*
1174 * Just warn here till VFS can correctly support
1175 * read-only remount without racing.
1176 */
1177 WARN_ON(atomic_read(&mp->m_active_trans) != 0);
1178
Dave Chinnerc75921a2012-10-08 21:56:08 +11001179 xfs_log_quiesce(mp);
Dave Chinnerc7eea6f2012-10-08 21:56:07 +11001180}
1181
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182STATIC int
Eric Sandeena08ee402016-03-02 09:56:31 +11001183xfs_test_remount_options(
1184 struct super_block *sb,
1185 struct xfs_mount *mp,
1186 char *options)
1187{
1188 int error = 0;
1189 struct xfs_mount *tmp_mp;
1190
1191 tmp_mp = kmem_zalloc(sizeof(*tmp_mp), KM_MAYFAIL);
1192 if (!tmp_mp)
1193 return -ENOMEM;
1194
1195 tmp_mp->m_super = sb;
1196 error = xfs_parseargs(tmp_mp, options);
1197 xfs_free_fsname(tmp_mp);
1198 kfree(tmp_mp);
1199
1200 return error;
1201}
1202
1203STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001204xfs_fs_remount(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 struct super_block *sb,
1206 int *flags,
1207 char *options)
1208{
Christoph Hellwig745f6912007-08-30 17:20:39 +10001209 struct xfs_mount *mp = XFS_M(sb);
Eric Sandeen9de67c32014-07-24 20:51:54 +10001210 xfs_sb_t *sbp = &mp->m_sb;
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001211 substring_t args[MAX_OPT_ARGS];
1212 char *p;
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001213 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
Eric Sandeena08ee402016-03-02 09:56:31 +11001215 /* First, check for complete junk; i.e. invalid options */
1216 error = xfs_test_remount_options(sb, mp, options);
1217 if (error)
1218 return error;
1219
Theodore Ts'o02b99842014-03-13 10:14:33 -04001220 sync_filesystem(sb);
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001221 while ((p = strsep(&options, ",")) != NULL) {
1222 int token;
Christoph Hellwigbdd907b2008-05-20 15:10:44 +10001223
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001224 if (!*p)
1225 continue;
Christoph Hellwig48b62a12008-05-20 11:30:39 +10001226
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001227 token = match_token(p, tokens, args);
1228 switch (token) {
1229 case Opt_barrier:
Christoph Hellwig48b62a12008-05-20 11:30:39 +10001230 mp->m_flags |= XFS_MOUNT_BARRIER;
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001231 break;
1232 case Opt_nobarrier:
Christoph Hellwig48b62a12008-05-20 11:30:39 +10001233 mp->m_flags &= ~XFS_MOUNT_BARRIER;
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001234 break;
Carlos Maiolinoc3a58fe2012-08-17 18:19:38 -03001235 case Opt_inode64:
Eric Sandeen12c3f052016-03-02 09:58:09 +11001236 mp->m_flags &= ~XFS_MOUNT_SMALL_INUMS;
1237 mp->m_maxagi = xfs_set_inode_alloc(mp, sbp->sb_agcount);
Carlos Maiolinoc3a58fe2012-08-17 18:19:38 -03001238 break;
Carlos Maiolino2ea03922012-09-20 10:32:41 -03001239 case Opt_inode32:
Eric Sandeen12c3f052016-03-02 09:58:09 +11001240 mp->m_flags |= XFS_MOUNT_SMALL_INUMS;
1241 mp->m_maxagi = xfs_set_inode_alloc(mp, sbp->sb_agcount);
Carlos Maiolino2ea03922012-09-20 10:32:41 -03001242 break;
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001243 default:
Christoph Hellwig6efdf282008-09-17 16:49:33 +10001244 /*
1245 * Logically we would return an error here to prevent
1246 * users from believing they might have changed
1247 * mount options using remount which can't be changed.
1248 *
1249 * But unfortunately mount(8) adds all options from
1250 * mtab and fstab to the mount arguments in some cases
1251 * so we can't blindly reject options, but have to
1252 * check for each specified option if it actually
1253 * differs from the currently set option and only
1254 * reject it if that's the case.
1255 *
1256 * Until that is implemented we return success for
1257 * every remount request, and silently ignore all
1258 * options that we can't actually change.
1259 */
1260#if 0
Dave Chinner4f107002011-03-07 10:00:35 +11001261 xfs_info(mp,
Eric Sandeen08e96e12013-10-11 20:59:05 -05001262 "mount option \"%s\" not supported for remount", p);
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001263 return -EINVAL;
Christoph Hellwig6efdf282008-09-17 16:49:33 +10001264#else
Christoph Hellwig6c5e51d2008-10-12 14:30:44 +02001265 break;
Christoph Hellwig6efdf282008-09-17 16:49:33 +10001266#endif
Christoph Hellwig48b62a12008-05-20 11:30:39 +10001267 }
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001268 }
1269
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001270 /* ro -> rw */
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001271 if ((mp->m_flags & XFS_MOUNT_RDONLY) && !(*flags & MS_RDONLY)) {
Eric Sandeenbbe051c2015-04-13 11:25:41 +10001272 if (mp->m_flags & XFS_MOUNT_NORECOVERY) {
1273 xfs_warn(mp,
1274 "ro->rw transition prohibited on norecovery mount");
1275 return -EINVAL;
1276 }
1277
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001278 mp->m_flags &= ~XFS_MOUNT_RDONLY;
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001279
1280 /*
1281 * If this is the first remount to writeable state we
1282 * might have some superblock changes to update.
1283 */
Dave Chinner61e63ec2015-01-22 09:10:31 +11001284 if (mp->m_update_sb) {
1285 error = xfs_sync_sb(mp, false);
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001286 if (error) {
Dave Chinner4f107002011-03-07 10:00:35 +11001287 xfs_warn(mp, "failed to write sb changes");
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001288 return error;
1289 }
Dave Chinner61e63ec2015-01-22 09:10:31 +11001290 mp->m_update_sb = false;
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001291 }
Dave Chinnercbe132a2010-01-26 15:08:49 +11001292
1293 /*
1294 * Fill out the reserve pool if it is empty. Use the stashed
1295 * value if it is non-zero, otherwise go with the default.
1296 */
Eric Sandeend5db0f92010-02-05 22:59:53 +00001297 xfs_restore_resvblks(mp);
Dave Chinnerf661f1e2012-10-08 21:56:02 +11001298 xfs_log_work_queue(mp);
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001299 }
1300
1301 /* rw -> ro */
1302 if (!(mp->m_flags & XFS_MOUNT_RDONLY) && (*flags & MS_RDONLY)) {
Dave Chinnercbe132a2010-01-26 15:08:49 +11001303 /*
Dave Chinner34061f52012-10-08 21:56:06 +11001304 * Before we sync the metadata, we need to free up the reserve
1305 * block pool so that the used block count in the superblock on
1306 * disk is correct at the end of the remount. Stash the current
1307 * reserve pool size so that if we get remounted rw, we can
1308 * return it to the same size.
Dave Chinnercbe132a2010-01-26 15:08:49 +11001309 */
Eric Sandeend5db0f92010-02-05 22:59:53 +00001310 xfs_save_resvblks(mp);
David Chinner76bf1052008-10-30 17:16:21 +11001311 xfs_quiesce_attr(mp);
Christoph Hellwig48b62a12008-05-20 11:30:39 +10001312 mp->m_flags |= XFS_MOUNT_RDONLY;
1313 }
1314
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001315 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316}
1317
Christoph Hellwig9909c4a2007-10-11 18:11:14 +10001318/*
1319 * Second stage of a freeze. The data is already frozen so we only
Dave Chinner61e63ec2015-01-22 09:10:31 +11001320 * need to take care of the metadata. Once that's done sync the superblock
1321 * to the log to dirty it in case of a crash while frozen. This ensures that we
1322 * will recover the unlinked inode lists on the next mount.
Christoph Hellwig9909c4a2007-10-11 18:11:14 +10001323 */
Takashi Satoc4be0c12009-01-09 16:40:58 -08001324STATIC int
1325xfs_fs_freeze(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 struct super_block *sb)
1327{
Christoph Hellwig9909c4a2007-10-11 18:11:14 +10001328 struct xfs_mount *mp = XFS_M(sb);
1329
Eric Sandeend5db0f92010-02-05 22:59:53 +00001330 xfs_save_resvblks(mp);
David Chinner76bf1052008-10-30 17:16:21 +11001331 xfs_quiesce_attr(mp);
Dave Chinner61e63ec2015-01-22 09:10:31 +11001332 return xfs_sync_sb(mp, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333}
1334
1335STATIC int
Eric Sandeend5db0f92010-02-05 22:59:53 +00001336xfs_fs_unfreeze(
1337 struct super_block *sb)
1338{
1339 struct xfs_mount *mp = XFS_M(sb);
1340
1341 xfs_restore_resvblks(mp);
Dave Chinnerf661f1e2012-10-08 21:56:02 +11001342 xfs_log_work_queue(mp);
Eric Sandeend5db0f92010-02-05 22:59:53 +00001343 return 0;
1344}
1345
1346STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001347xfs_fs_show_options(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 struct seq_file *m,
Al Viro34c80b12011-12-08 21:32:45 -05001349 struct dentry *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350{
Dave Chinner24513372014-06-25 14:58:08 +10001351 return xfs_showargs(XFS_M(root->d_sb), m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352}
1353
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001354/*
1355 * This function fills in xfs_mount_t fields based on mount args.
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001356 * Note: the superblock _has_ now been read in.
1357 */
1358STATIC int
1359xfs_finish_flags(
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001360 struct xfs_mount *mp)
1361{
1362 int ronly = (mp->m_flags & XFS_MOUNT_RDONLY);
1363
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02001364 /* Fail a mount where the logbuf is smaller than the log stripe */
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001365 if (xfs_sb_version_haslogv2(&mp->m_sb)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001366 if (mp->m_logbsize <= 0 &&
1367 mp->m_sb.sb_logsunit > XLOG_BIG_RECORD_BSIZE) {
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001368 mp->m_logbsize = mp->m_sb.sb_logsunit;
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001369 } else if (mp->m_logbsize > 0 &&
1370 mp->m_logbsize < mp->m_sb.sb_logsunit) {
Dave Chinner4f107002011-03-07 10:00:35 +11001371 xfs_warn(mp,
1372 "logbuf size must be greater than or equal to log stripe size");
Dave Chinner24513372014-06-25 14:58:08 +10001373 return -EINVAL;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001374 }
1375 } else {
1376 /* Fail a mount if the logbuf is larger than 32K */
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001377 if (mp->m_logbsize > XLOG_BIG_RECORD_BSIZE) {
Dave Chinner4f107002011-03-07 10:00:35 +11001378 xfs_warn(mp,
1379 "logbuf size for version 1 logs must be 16K or 32K");
Dave Chinner24513372014-06-25 14:58:08 +10001380 return -EINVAL;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001381 }
1382 }
1383
1384 /*
Dave Chinnerd3eaace2013-06-05 12:09:09 +10001385 * V5 filesystems always use attr2 format for attributes.
1386 */
1387 if (xfs_sb_version_hascrc(&mp->m_sb) &&
1388 (mp->m_flags & XFS_MOUNT_NOATTR2)) {
Eric Sandeen2e74af02016-03-02 09:55:38 +11001389 xfs_warn(mp, "Cannot mount a V5 filesystem as noattr2. "
1390 "attr2 is always enabled for V5 filesystems.");
Dave Chinner24513372014-06-25 14:58:08 +10001391 return -EINVAL;
Dave Chinnerd3eaace2013-06-05 12:09:09 +10001392 }
1393
1394 /*
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001395 * mkfs'ed attr2 will turn on attr2 mount unless explicitly
1396 * told by noattr2 to turn it off
1397 */
1398 if (xfs_sb_version_hasattr2(&mp->m_sb) &&
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001399 !(mp->m_flags & XFS_MOUNT_NOATTR2))
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001400 mp->m_flags |= XFS_MOUNT_ATTR2;
1401
1402 /*
1403 * prohibit r/w mounts of read-only filesystems
1404 */
1405 if ((mp->m_sb.sb_flags & XFS_SBF_READONLY) && !ronly) {
Dave Chinner4f107002011-03-07 10:00:35 +11001406 xfs_warn(mp,
1407 "cannot mount a read-only filesystem as read-write");
Dave Chinner24513372014-06-25 14:58:08 +10001408 return -EROFS;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001409 }
1410
Chandra Seetharamand892d582013-07-19 17:36:02 -05001411 if ((mp->m_qflags & (XFS_GQUOTA_ACCT | XFS_GQUOTA_ACTIVE)) &&
1412 (mp->m_qflags & (XFS_PQUOTA_ACCT | XFS_PQUOTA_ACTIVE)) &&
1413 !xfs_sb_version_has_pquotino(&mp->m_sb)) {
1414 xfs_warn(mp,
1415 "Super block does not support project and group quota together");
Dave Chinner24513372014-06-25 14:58:08 +10001416 return -EINVAL;
Chandra Seetharamand892d582013-07-19 17:36:02 -05001417 }
1418
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001419 return 0;
1420}
1421
Dave Chinner5681ca42015-02-23 21:22:31 +11001422static int
1423xfs_init_percpu_counters(
1424 struct xfs_mount *mp)
1425{
1426 int error;
1427
1428 error = percpu_counter_init(&mp->m_icount, 0, GFP_KERNEL);
1429 if (error)
Joe Perches5e9383f2015-03-25 15:00:24 +11001430 return -ENOMEM;
Dave Chinner5681ca42015-02-23 21:22:31 +11001431
1432 error = percpu_counter_init(&mp->m_ifree, 0, GFP_KERNEL);
1433 if (error)
1434 goto free_icount;
1435
1436 error = percpu_counter_init(&mp->m_fdblocks, 0, GFP_KERNEL);
1437 if (error)
1438 goto free_ifree;
1439
1440 return 0;
1441
1442free_ifree:
1443 percpu_counter_destroy(&mp->m_ifree);
1444free_icount:
1445 percpu_counter_destroy(&mp->m_icount);
1446 return -ENOMEM;
1447}
1448
1449void
1450xfs_reinit_percpu_counters(
1451 struct xfs_mount *mp)
1452{
1453 percpu_counter_set(&mp->m_icount, mp->m_sb.sb_icount);
1454 percpu_counter_set(&mp->m_ifree, mp->m_sb.sb_ifree);
1455 percpu_counter_set(&mp->m_fdblocks, mp->m_sb.sb_fdblocks);
1456}
1457
1458static void
1459xfs_destroy_percpu_counters(
1460 struct xfs_mount *mp)
1461{
1462 percpu_counter_destroy(&mp->m_icount);
1463 percpu_counter_destroy(&mp->m_ifree);
1464 percpu_counter_destroy(&mp->m_fdblocks);
1465}
1466
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001468xfs_fs_fill_super(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 struct super_block *sb,
1470 void *data,
1471 int silent)
1472{
Christoph Hellwigf3dcc132008-03-27 18:00:54 +11001473 struct inode *root;
Christoph Hellwig745f6912007-08-30 17:20:39 +10001474 struct xfs_mount *mp = NULL;
Dave Chinner24513372014-06-25 14:58:08 +10001475 int flags = 0, error = -ENOMEM;
Christoph Hellwigbdd907b2008-05-20 15:10:44 +10001476
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001477 mp = kzalloc(sizeof(struct xfs_mount), GFP_KERNEL);
1478 if (!mp)
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001479 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001481 spin_lock_init(&mp->m_sb_lock);
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001482 mutex_init(&mp->m_growlock);
1483 atomic_set(&mp->m_active_trans, 0);
Dave Chinner7e185302012-10-08 21:56:00 +11001484 INIT_DELAYED_WORK(&mp->m_reclaim_work, xfs_reclaim_worker);
Brian Foster579b62f2012-11-06 09:50:47 -05001485 INIT_DELAYED_WORK(&mp->m_eofblocks_work, xfs_eofblocks_worker);
Dave Chinnere3aed1a2014-09-29 10:46:08 +10001486 mp->m_kobj.kobject.kset = xfs_kset;
Christoph Hellwig74394492007-08-30 17:21:22 +10001487
Christoph Hellwigb267ce92007-08-30 17:21:30 +10001488 mp->m_super = sb;
1489 sb->s_fs_info = mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490
Christoph Hellwig288699f2010-06-23 18:11:15 +10001491 error = xfs_parseargs(mp, (char *)data);
Christoph Hellwig745f6912007-08-30 17:20:39 +10001492 if (error)
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001493 goto out_free_fsname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
1495 sb_min_blocksize(sb, BBSIZE);
Lachlan McIlroy0ec58512008-06-23 13:23:01 +10001496 sb->s_xattr = xfs_xattr_handlers;
Nathan Scotta50cd262006-03-14 14:06:18 +11001497 sb->s_export_op = &xfs_export_operations;
Christoph Hellwigfcafb712009-02-09 08:47:34 +01001498#ifdef CONFIG_XFS_QUOTA
Nathan Scotta50cd262006-03-14 14:06:18 +11001499 sb->s_qcop = &xfs_quotactl_operations;
Jan Kara17ef4fd2014-09-30 22:35:33 +02001500 sb->s_quota_types = QTYPE_MASK_USR | QTYPE_MASK_GRP | QTYPE_MASK_PRJ;
Christoph Hellwigfcafb712009-02-09 08:47:34 +01001501#endif
Nathan Scotta50cd262006-03-14 14:06:18 +11001502 sb->s_op = &xfs_super_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001504 if (silent)
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001505 flags |= XFS_MFSI_QUIET;
1506
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001507 error = xfs_open_devices(mp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001508 if (error)
Christoph Hellwig288699f2010-06-23 18:11:15 +10001509 goto out_free_fsname;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001510
Dave Chinner24513372014-06-25 14:58:08 +10001511 error = xfs_init_mount_workqueues(mp);
Christoph Hellwig61ba35d2010-09-30 02:25:54 +00001512 if (error)
1513 goto out_close_devices;
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001514
Dave Chinner5681ca42015-02-23 21:22:31 +11001515 error = xfs_init_percpu_counters(mp);
Christoph Hellwigaa6bf012012-02-29 09:53:48 +00001516 if (error)
1517 goto out_destroy_workqueues;
1518
Bill O'Donnell225e4632015-10-12 18:21:19 +11001519 /* Allocate stats memory before we do operations that might use it */
1520 mp->m_stats.xs_stats = alloc_percpu(struct xfsstats);
1521 if (!mp->m_stats.xs_stats) {
Dan Carpenterf9d460b2015-10-19 08:42:47 +11001522 error = -ENOMEM;
Bill O'Donnell225e4632015-10-12 18:21:19 +11001523 goto out_destroy_counters;
1524 }
1525
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001526 error = xfs_readsb(mp, flags);
1527 if (error)
Bill O'Donnell225e4632015-10-12 18:21:19 +11001528 goto out_free_stats;
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001529
1530 error = xfs_finish_flags(mp);
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001531 if (error)
Christoph Hellwigeffa2ed2008-05-20 15:11:05 +10001532 goto out_free_sb;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001533
Christoph Hellwige34b5622008-05-20 15:10:36 +10001534 error = xfs_setup_devices(mp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001535 if (error)
Christoph Hellwigeffa2ed2008-05-20 15:11:05 +10001536 goto out_free_sb;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001537
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001538 error = xfs_filestream_mount(mp);
1539 if (error)
Christoph Hellwigeffa2ed2008-05-20 15:11:05 +10001540 goto out_free_sb;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001541
Dave Chinner704b2902011-03-26 09:14:57 +11001542 /*
1543 * we must configure the block size in the superblock before we run the
1544 * full mount process as the mount process can lookup and cache inodes.
Dave Chinner704b2902011-03-26 09:14:57 +11001545 */
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001546 sb->s_magic = XFS_SB_MAGIC;
1547 sb->s_blocksize = mp->m_sb.sb_blocksize;
1548 sb->s_blocksize_bits = ffs(sb->s_blocksize) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 sb->s_maxbytes = xfs_max_file_offset(sb->s_blocksize_bits);
Al Viro8de52772012-02-06 12:45:27 -05001550 sb->s_max_links = XFS_MAXLINK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 sb->s_time_gran = 1;
1552 set_posix_acl_flag(sb);
1553
Dave Chinnerdc037ad2013-06-27 16:04:59 +10001554 /* version 5 superblocks support inode version counters. */
1555 if (XFS_SB_VERSION_NUM(&mp->m_sb) == XFS_SB_VERSION_5)
1556 sb->s_flags |= MS_I_VERSION;
1557
Dave Chinnercbe4dab2015-06-04 09:19:18 +10001558 if (mp->m_flags & XFS_MOUNT_DAX) {
1559 xfs_warn(mp,
1560 "DAX enabled. Warning: EXPERIMENTAL, use at your own risk");
1561 if (sb->s_blocksize != PAGE_SIZE) {
1562 xfs_alert(mp,
1563 "Filesystem block size invalid for DAX Turning DAX off.");
1564 mp->m_flags &= ~XFS_MOUNT_DAX;
1565 } else if (!sb->s_bdev->bd_disk->fops->direct_access) {
1566 xfs_alert(mp,
1567 "Block device does not support DAX Turning DAX off.");
1568 mp->m_flags &= ~XFS_MOUNT_DAX;
1569 }
1570 }
1571
Brian Foster1b867d32015-08-19 10:32:14 +10001572 if (xfs_sb_version_hassparseinodes(&mp->m_sb))
1573 xfs_alert(mp,
1574 "EXPERIMENTAL sparse inode feature enabled. Use at your own risk!");
1575
Dave Chinner8a00ebe2012-04-13 12:10:44 +00001576 error = xfs_mountfs(mp);
Christoph Hellwig2bcf6e92011-07-13 13:43:48 +02001577 if (error)
Dave Chinner7e185302012-10-08 21:56:00 +11001578 goto out_filestream_unmount;
Dave Chinner704b2902011-03-26 09:14:57 +11001579
David Chinner01651642008-08-13 15:45:15 +10001580 root = igrab(VFS_I(mp->m_rootip));
Christoph Hellwigf3dcc132008-03-27 18:00:54 +11001581 if (!root) {
Dave Chinner24513372014-06-25 14:58:08 +10001582 error = -ENOENT;
Dave Chinner8a00ebe2012-04-13 12:10:44 +00001583 goto out_unmount;
Christoph Hellwigcbc89dc2008-02-05 12:14:01 +11001584 }
Al Viro48fde702012-01-08 22:15:13 -05001585 sb->s_root = d_make_root(root);
Christoph Hellwigf3dcc132008-03-27 18:00:54 +11001586 if (!sb->s_root) {
Dave Chinner24513372014-06-25 14:58:08 +10001587 error = -ENOMEM;
Dave Chinner8a00ebe2012-04-13 12:10:44 +00001588 goto out_unmount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 }
Christoph Hellwig74394492007-08-30 17:21:22 +10001590
Dave Chinner7e185302012-10-08 21:56:00 +11001591 return 0;
1592
1593 out_filestream_unmount:
Christoph Hellwig120226c2008-05-20 15:11:11 +10001594 xfs_filestream_unmount(mp);
Christoph Hellwigeffa2ed2008-05-20 15:11:05 +10001595 out_free_sb:
1596 xfs_freesb(mp);
Bill O'Donnell225e4632015-10-12 18:21:19 +11001597 out_free_stats:
1598 free_percpu(mp->m_stats.xs_stats);
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001599 out_destroy_counters:
Dave Chinner5681ca42015-02-23 21:22:31 +11001600 xfs_destroy_percpu_counters(mp);
Bill O'Donnell225e4632015-10-12 18:21:19 +11001601 out_destroy_workqueues:
Christoph Hellwigaa6bf012012-02-29 09:53:48 +00001602 xfs_destroy_mount_workqueues(mp);
Christoph Hellwig61ba35d2010-09-30 02:25:54 +00001603 out_close_devices:
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001604 xfs_close_devices(mp);
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001605 out_free_fsname:
1606 xfs_free_fsname(mp);
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001607 kfree(mp);
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001608 out:
Dave Chinner24513372014-06-25 14:58:08 +10001609 return error;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001610
Christoph Hellwig2bcf6e92011-07-13 13:43:48 +02001611 out_unmount:
Christoph Hellwige48ad312008-05-20 11:30:52 +10001612 xfs_filestream_unmount(mp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001613 xfs_unmountfs(mp);
Christoph Hellwig62033002008-08-13 16:50:21 +10001614 goto out_free_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615}
1616
Dave Chinner5681ca42015-02-23 21:22:31 +11001617STATIC void
1618xfs_fs_put_super(
1619 struct super_block *sb)
1620{
1621 struct xfs_mount *mp = XFS_M(sb);
1622
Dave Chinner42254412015-02-24 10:27:28 +11001623 xfs_notice(mp, "Unmounting Filesystem");
Dave Chinner5681ca42015-02-23 21:22:31 +11001624 xfs_filestream_unmount(mp);
1625 xfs_unmountfs(mp);
1626
1627 xfs_freesb(mp);
Bill O'Donnell225e4632015-10-12 18:21:19 +11001628 free_percpu(mp->m_stats.xs_stats);
Dave Chinner5681ca42015-02-23 21:22:31 +11001629 xfs_destroy_percpu_counters(mp);
1630 xfs_destroy_mount_workqueues(mp);
1631 xfs_close_devices(mp);
1632 xfs_free_fsname(mp);
1633 kfree(mp);
1634}
1635
Al Viro152a0832010-07-25 00:46:55 +04001636STATIC struct dentry *
1637xfs_fs_mount(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 struct file_system_type *fs_type,
1639 int flags,
1640 const char *dev_name,
Al Viro152a0832010-07-25 00:46:55 +04001641 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642{
Al Viro152a0832010-07-25 00:46:55 +04001643 return mount_bdev(fs_type, flags, dev_name, data, xfs_fs_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644}
1645
Dave Chinner0a234c62013-08-28 10:17:57 +10001646static long
Dave Chinner8daaa832011-07-08 14:14:46 +10001647xfs_fs_nr_cached_objects(
Dave Chinner9b17c622013-08-28 10:18:05 +10001648 struct super_block *sb,
Vladimir Davydov4101b622015-02-12 14:58:51 -08001649 struct shrink_control *sc)
Dave Chinner8daaa832011-07-08 14:14:46 +10001650{
1651 return xfs_reclaim_inodes_count(XFS_M(sb));
1652}
1653
Dave Chinner0a234c62013-08-28 10:17:57 +10001654static long
Dave Chinner8daaa832011-07-08 14:14:46 +10001655xfs_fs_free_cached_objects(
1656 struct super_block *sb,
Vladimir Davydov4101b622015-02-12 14:58:51 -08001657 struct shrink_control *sc)
Dave Chinner8daaa832011-07-08 14:14:46 +10001658{
Vladimir Davydov4101b622015-02-12 14:58:51 -08001659 return xfs_reclaim_inodes_nr(XFS_M(sb), sc->nr_to_scan);
Dave Chinner8daaa832011-07-08 14:14:46 +10001660}
1661
Alexey Dobriyanb87221d2009-09-21 17:01:09 -07001662static const struct super_operations xfs_super_operations = {
Nathan Scotta50cd262006-03-14 14:06:18 +11001663 .alloc_inode = xfs_fs_alloc_inode,
1664 .destroy_inode = xfs_fs_destroy_inode,
Al Virob57922d2010-06-07 14:34:48 -04001665 .evict_inode = xfs_fs_evict_inode,
Dave Chinner5132ba82012-03-22 05:15:10 +00001666 .drop_inode = xfs_fs_drop_inode,
Nathan Scotta50cd262006-03-14 14:06:18 +11001667 .put_super = xfs_fs_put_super,
Christoph Hellwig69961a22009-10-06 20:29:28 +00001668 .sync_fs = xfs_fs_sync_fs,
Takashi Satoc4be0c12009-01-09 16:40:58 -08001669 .freeze_fs = xfs_fs_freeze,
Eric Sandeend5db0f92010-02-05 22:59:53 +00001670 .unfreeze_fs = xfs_fs_unfreeze,
Nathan Scotta50cd262006-03-14 14:06:18 +11001671 .statfs = xfs_fs_statfs,
1672 .remount_fs = xfs_fs_remount,
1673 .show_options = xfs_fs_show_options,
Dave Chinner8daaa832011-07-08 14:14:46 +10001674 .nr_cached_objects = xfs_fs_nr_cached_objects,
1675 .free_cached_objects = xfs_fs_free_cached_objects,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676};
1677
Andrew Morton5085b602007-02-20 13:57:47 -08001678static struct file_system_type xfs_fs_type = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 .owner = THIS_MODULE,
1680 .name = "xfs",
Al Viro152a0832010-07-25 00:46:55 +04001681 .mount = xfs_fs_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 .kill_sb = kill_block_super,
1683 .fs_flags = FS_REQUIRES_DEV,
1684};
Eric W. Biederman7f78e032013-03-02 19:39:14 -08001685MODULE_ALIAS_FS("xfs");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001687STATIC int __init
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001688xfs_init_zones(void)
1689{
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001690
1691 xfs_ioend_zone = kmem_zone_init(sizeof(xfs_ioend_t), "xfs_ioend");
1692 if (!xfs_ioend_zone)
David Chinnerbf904242008-10-30 17:36:14 +11001693 goto out;
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001694
1695 xfs_ioend_pool = mempool_create_slab_pool(4 * MAX_BUF_PER_PAGE,
1696 xfs_ioend_zone);
1697 if (!xfs_ioend_pool)
1698 goto out_destroy_ioend_zone;
1699
1700 xfs_log_ticket_zone = kmem_zone_init(sizeof(xlog_ticket_t),
1701 "xfs_log_ticket");
1702 if (!xfs_log_ticket_zone)
1703 goto out_destroy_ioend_pool;
1704
1705 xfs_bmap_free_item_zone = kmem_zone_init(sizeof(xfs_bmap_free_item_t),
1706 "xfs_bmap_free_item");
1707 if (!xfs_bmap_free_item_zone)
1708 goto out_destroy_log_ticket_zone;
David Chinnerbf904242008-10-30 17:36:14 +11001709
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001710 xfs_btree_cur_zone = kmem_zone_init(sizeof(xfs_btree_cur_t),
1711 "xfs_btree_cur");
1712 if (!xfs_btree_cur_zone)
1713 goto out_destroy_bmap_free_item_zone;
1714
1715 xfs_da_state_zone = kmem_zone_init(sizeof(xfs_da_state_t),
1716 "xfs_da_state");
1717 if (!xfs_da_state_zone)
1718 goto out_destroy_btree_cur_zone;
1719
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001720 xfs_ifork_zone = kmem_zone_init(sizeof(xfs_ifork_t), "xfs_ifork");
1721 if (!xfs_ifork_zone)
Dave Chinner1d9025e2012-06-22 18:50:14 +10001722 goto out_destroy_da_state_zone;
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001723
1724 xfs_trans_zone = kmem_zone_init(sizeof(xfs_trans_t), "xfs_trans");
1725 if (!xfs_trans_zone)
1726 goto out_destroy_ifork_zone;
1727
Christoph Hellwige98c4142010-06-23 18:11:15 +10001728 xfs_log_item_desc_zone =
1729 kmem_zone_init(sizeof(struct xfs_log_item_desc),
1730 "xfs_log_item_desc");
1731 if (!xfs_log_item_desc_zone)
1732 goto out_destroy_trans_zone;
1733
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001734 /*
1735 * The size of the zone allocated buf log item is the maximum
1736 * size possible under XFS. This wastes a little bit of memory,
1737 * but it is much faster.
1738 */
Dave Chinner77c1a082012-06-22 18:50:07 +10001739 xfs_buf_item_zone = kmem_zone_init(sizeof(struct xfs_buf_log_item),
1740 "xfs_buf_item");
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001741 if (!xfs_buf_item_zone)
Christoph Hellwige98c4142010-06-23 18:11:15 +10001742 goto out_destroy_log_item_desc_zone;
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001743
1744 xfs_efd_zone = kmem_zone_init((sizeof(xfs_efd_log_item_t) +
1745 ((XFS_EFD_MAX_FAST_EXTENTS - 1) *
1746 sizeof(xfs_extent_t))), "xfs_efd_item");
1747 if (!xfs_efd_zone)
1748 goto out_destroy_buf_item_zone;
1749
1750 xfs_efi_zone = kmem_zone_init((sizeof(xfs_efi_log_item_t) +
1751 ((XFS_EFI_MAX_FAST_EXTENTS - 1) *
1752 sizeof(xfs_extent_t))), "xfs_efi_item");
1753 if (!xfs_efi_zone)
1754 goto out_destroy_efd_zone;
1755
1756 xfs_inode_zone =
1757 kmem_zone_init_flags(sizeof(xfs_inode_t), "xfs_inode",
Vladimir Davydov5d097052016-01-14 15:18:21 -08001758 KM_ZONE_HWALIGN | KM_ZONE_RECLAIM | KM_ZONE_SPREAD |
1759 KM_ZONE_ACCOUNT, xfs_fs_inode_init_once);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001760 if (!xfs_inode_zone)
1761 goto out_destroy_efi_zone;
1762
1763 xfs_ili_zone =
1764 kmem_zone_init_flags(sizeof(xfs_inode_log_item_t), "xfs_ili",
1765 KM_ZONE_SPREAD, NULL);
1766 if (!xfs_ili_zone)
1767 goto out_destroy_inode_zone;
Dave Chinner3ebe7d22013-06-27 16:04:53 +10001768 xfs_icreate_zone = kmem_zone_init(sizeof(struct xfs_icreate_item),
1769 "xfs_icr");
1770 if (!xfs_icreate_zone)
1771 goto out_destroy_ili_zone;
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001772
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001773 return 0;
1774
Dave Chinner3ebe7d22013-06-27 16:04:53 +10001775 out_destroy_ili_zone:
1776 kmem_zone_destroy(xfs_ili_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001777 out_destroy_inode_zone:
1778 kmem_zone_destroy(xfs_inode_zone);
1779 out_destroy_efi_zone:
1780 kmem_zone_destroy(xfs_efi_zone);
1781 out_destroy_efd_zone:
1782 kmem_zone_destroy(xfs_efd_zone);
1783 out_destroy_buf_item_zone:
1784 kmem_zone_destroy(xfs_buf_item_zone);
Christoph Hellwige98c4142010-06-23 18:11:15 +10001785 out_destroy_log_item_desc_zone:
1786 kmem_zone_destroy(xfs_log_item_desc_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001787 out_destroy_trans_zone:
1788 kmem_zone_destroy(xfs_trans_zone);
1789 out_destroy_ifork_zone:
1790 kmem_zone_destroy(xfs_ifork_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001791 out_destroy_da_state_zone:
1792 kmem_zone_destroy(xfs_da_state_zone);
1793 out_destroy_btree_cur_zone:
1794 kmem_zone_destroy(xfs_btree_cur_zone);
1795 out_destroy_bmap_free_item_zone:
1796 kmem_zone_destroy(xfs_bmap_free_item_zone);
1797 out_destroy_log_ticket_zone:
1798 kmem_zone_destroy(xfs_log_ticket_zone);
1799 out_destroy_ioend_pool:
1800 mempool_destroy(xfs_ioend_pool);
1801 out_destroy_ioend_zone:
1802 kmem_zone_destroy(xfs_ioend_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001803 out:
1804 return -ENOMEM;
1805}
1806
1807STATIC void
1808xfs_destroy_zones(void)
1809{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +10001810 /*
1811 * Make sure all delayed rcu free are flushed before we
1812 * destroy caches.
1813 */
1814 rcu_barrier();
Dave Chinner3ebe7d22013-06-27 16:04:53 +10001815 kmem_zone_destroy(xfs_icreate_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001816 kmem_zone_destroy(xfs_ili_zone);
1817 kmem_zone_destroy(xfs_inode_zone);
1818 kmem_zone_destroy(xfs_efi_zone);
1819 kmem_zone_destroy(xfs_efd_zone);
1820 kmem_zone_destroy(xfs_buf_item_zone);
Christoph Hellwige98c4142010-06-23 18:11:15 +10001821 kmem_zone_destroy(xfs_log_item_desc_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001822 kmem_zone_destroy(xfs_trans_zone);
1823 kmem_zone_destroy(xfs_ifork_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001824 kmem_zone_destroy(xfs_da_state_zone);
1825 kmem_zone_destroy(xfs_btree_cur_zone);
1826 kmem_zone_destroy(xfs_bmap_free_item_zone);
1827 kmem_zone_destroy(xfs_log_ticket_zone);
1828 mempool_destroy(xfs_ioend_pool);
1829 kmem_zone_destroy(xfs_ioend_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001830
1831}
1832
1833STATIC int __init
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10001834xfs_init_workqueues(void)
1835{
1836 /*
Dave Chinnerc999a222012-03-22 05:15:07 +00001837 * The allocation workqueue can be used in memory reclaim situations
1838 * (writepage path), and parallelism is only limited by the number of
1839 * AGs in all the filesystems mounted. Hence use the default large
1840 * max_active value for this workqueue.
1841 */
Brian Foster8018ec02014-09-09 11:44:46 +10001842 xfs_alloc_wq = alloc_workqueue("xfsalloc",
1843 WQ_MEM_RECLAIM|WQ_FREEZABLE, 0);
Dave Chinnerc999a222012-03-22 05:15:07 +00001844 if (!xfs_alloc_wq)
Dave Chinner58896082012-10-08 21:56:05 +11001845 return -ENOMEM;
Dave Chinnerc999a222012-03-22 05:15:07 +00001846
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10001847 return 0;
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10001848}
1849
Luck, Tony39411f82011-04-11 12:06:12 -07001850STATIC void
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10001851xfs_destroy_workqueues(void)
1852{
Dave Chinnerc999a222012-03-22 05:15:07 +00001853 destroy_workqueue(xfs_alloc_wq);
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10001854}
1855
1856STATIC int __init
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001857init_xfs_fs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858{
1859 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
Christoph Hellwig65795912008-11-28 14:23:33 +11001861 printk(KERN_INFO XFS_VERSION_STRING " with "
1862 XFS_BUILD_OPTIONS " enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001864 xfs_dir_startup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
Nathan Scott87582802006-03-14 13:18:19 +11001866 error = xfs_init_zones();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001867 if (error)
1868 goto out;
1869
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10001870 error = xfs_init_workqueues();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001871 if (error)
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001872 goto out_destroy_zones;
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001873
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10001874 error = xfs_mru_cache_init();
1875 if (error)
1876 goto out_destroy_wq;
1877
Nathan Scottce8e9222006-01-11 15:39:08 +11001878 error = xfs_buf_init();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001879 if (error)
Christoph Hellwig1919add2014-04-23 07:11:51 +10001880 goto out_mru_cache_uninit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001882 error = xfs_init_procfs();
1883 if (error)
1884 goto out_buf_terminate;
1885
1886 error = xfs_sysctl_register();
1887 if (error)
1888 goto out_cleanup_procfs;
1889
Brian Foster3d871222014-07-15 07:41:37 +10001890 xfs_kset = kset_create_and_add("xfs", NULL, fs_kobj);
1891 if (!xfs_kset) {
1892 error = -ENOMEM;
Bill O'Donnellbb230c12015-10-12 05:15:45 +11001893 goto out_sysctl_unregister;
Brian Foster3d871222014-07-15 07:41:37 +10001894 }
1895
Bill O'Donnell80529c42015-10-12 05:19:45 +11001896 xfsstats.xs_kobj.kobject.kset = xfs_kset;
1897
1898 xfsstats.xs_stats = alloc_percpu(struct xfsstats);
1899 if (!xfsstats.xs_stats) {
1900 error = -ENOMEM;
1901 goto out_kset_unregister;
1902 }
1903
1904 error = xfs_sysfs_init(&xfsstats.xs_kobj, &xfs_stats_ktype, NULL,
Bill O'Donnellbb230c12015-10-12 05:15:45 +11001905 "stats");
1906 if (error)
Bill O'Donnell80529c42015-10-12 05:19:45 +11001907 goto out_free_stats;
Bill O'Donnellbb230c12015-10-12 05:15:45 +11001908
Brian Foster65b65732014-09-09 11:52:42 +10001909#ifdef DEBUG
1910 xfs_dbg_kobj.kobject.kset = xfs_kset;
1911 error = xfs_sysfs_init(&xfs_dbg_kobj, &xfs_dbg_ktype, NULL, "debug");
Christoph Hellwiga05931c2012-03-13 08:52:37 +00001912 if (error)
Bill O'Donnellbb230c12015-10-12 05:15:45 +11001913 goto out_remove_stats_kobj;
Brian Foster65b65732014-09-09 11:52:42 +10001914#endif
1915
1916 error = xfs_qm_init();
1917 if (error)
Bill O'Donnellbb230c12015-10-12 05:15:45 +11001918 goto out_remove_dbg_kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919
1920 error = register_filesystem(&xfs_fs_type);
1921 if (error)
Christoph Hellwiga05931c2012-03-13 08:52:37 +00001922 goto out_qm_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 return 0;
1924
Christoph Hellwiga05931c2012-03-13 08:52:37 +00001925 out_qm_exit:
1926 xfs_qm_exit();
Bill O'Donnellbb230c12015-10-12 05:15:45 +11001927 out_remove_dbg_kobj:
Brian Foster65b65732014-09-09 11:52:42 +10001928#ifdef DEBUG
1929 xfs_sysfs_del(&xfs_dbg_kobj);
Bill O'Donnellbb230c12015-10-12 05:15:45 +11001930 out_remove_stats_kobj:
Brian Foster65b65732014-09-09 11:52:42 +10001931#endif
Bill O'Donnell80529c42015-10-12 05:19:45 +11001932 xfs_sysfs_del(&xfsstats.xs_kobj);
1933 out_free_stats:
1934 free_percpu(xfsstats.xs_stats);
Bill O'Donnellbb230c12015-10-12 05:15:45 +11001935 out_kset_unregister:
Brian Foster3d871222014-07-15 07:41:37 +10001936 kset_unregister(xfs_kset);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001937 out_sysctl_unregister:
1938 xfs_sysctl_unregister();
1939 out_cleanup_procfs:
1940 xfs_cleanup_procfs();
1941 out_buf_terminate:
Nathan Scottce8e9222006-01-11 15:39:08 +11001942 xfs_buf_terminate();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001943 out_mru_cache_uninit:
1944 xfs_mru_cache_uninit();
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10001945 out_destroy_wq:
1946 xfs_destroy_workqueues();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001947 out_destroy_zones:
Nathan Scott87582802006-03-14 13:18:19 +11001948 xfs_destroy_zones();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001949 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 return error;
1951}
1952
1953STATIC void __exit
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001954exit_xfs_fs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955{
Christoph Hellwiga05931c2012-03-13 08:52:37 +00001956 xfs_qm_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 unregister_filesystem(&xfs_fs_type);
Brian Foster65b65732014-09-09 11:52:42 +10001958#ifdef DEBUG
1959 xfs_sysfs_del(&xfs_dbg_kobj);
1960#endif
Bill O'Donnell80529c42015-10-12 05:19:45 +11001961 xfs_sysfs_del(&xfsstats.xs_kobj);
1962 free_percpu(xfsstats.xs_stats);
Brian Foster3d871222014-07-15 07:41:37 +10001963 kset_unregister(xfs_kset);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001964 xfs_sysctl_unregister();
1965 xfs_cleanup_procfs();
Nathan Scottce8e9222006-01-11 15:39:08 +11001966 xfs_buf_terminate();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001967 xfs_mru_cache_uninit();
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10001968 xfs_destroy_workqueues();
Nathan Scott87582802006-03-14 13:18:19 +11001969 xfs_destroy_zones();
Darrick J. Wongaf3b6382015-11-03 13:06:34 +11001970 xfs_uuid_table_free();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971}
1972
1973module_init(init_xfs_fs);
1974module_exit(exit_xfs_fs);
1975
1976MODULE_AUTHOR("Silicon Graphics, Inc.");
1977MODULE_DESCRIPTION(XFS_VERSION_STRING " with " XFS_BUILD_OPTIONS " enabled");
1978MODULE_LICENSE("GPL");