blob: 207ee302b1bb9f4039b8963b7ae1a68ce8ac8487 [file] [log] [blame]
Dave Chinner0b61f8a2018-06-05 19:42:14 -07001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Nathan Scotta805bad2006-06-19 08:40:27 +10003 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
Nathan Scott7b718762005-11-02 14:58:39 +11004 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 */
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00006
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include "xfs.h"
Dave Chinner70a98832013-10-23 10:36:05 +11008#include "xfs_shared.h"
Dave Chinner6ca1c902013-08-12 20:49:26 +10009#include "xfs_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +110010#include "xfs_log_format.h"
11#include "xfs_trans_resv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include "xfs_sb.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include "xfs_mount.h"
Dave Chinner57062782013-10-15 09:17:51 +110014#include "xfs_da_format.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110016#include "xfs_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include "xfs_bmap.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110018#include "xfs_alloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include "xfs_error.h"
Christoph Hellwig9909c4a2007-10-11 18:11:14 +100020#include "xfs_fsops.h"
Dave Chinner239880e2013-10-23 10:50:10 +110021#include "xfs_trans.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "xfs_buf_item.h"
Dave Chinner239880e2013-10-23 10:50:10 +110023#include "xfs_log.h"
David Chinnera67d7c52007-11-23 16:29:32 +110024#include "xfs_log_priv.h"
Christoph Hellwig9f8868f2008-07-18 17:11:46 +100025#include "xfs_da_btree.h"
Dave Chinner2b9ab5a2013-08-12 20:49:37 +100026#include "xfs_dir2.h"
Christoph Hellwig9f8868f2008-07-18 17:11:46 +100027#include "xfs_extfree_item.h"
28#include "xfs_mru_cache.h"
29#include "xfs_inode_item.h"
Dave Chinner6d8b79c2012-10-08 21:56:09 +110030#include "xfs_icache.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000031#include "xfs_trace.h"
Dave Chinner3ebe7d22013-06-27 16:04:53 +100032#include "xfs_icreate_item.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110033#include "xfs_filestream.h"
34#include "xfs_quota.h"
Brian Foster65b65732014-09-09 11:52:42 +100035#include "xfs_sysfs.h"
Darrick J. Wong30cbc592016-03-09 08:15:14 +110036#include "xfs_ondisk.h"
Darrick J. Wong5880f2d72016-08-03 12:04:45 +100037#include "xfs_rmap_item.h"
Darrick J. Wongbaf4bcac2016-10-03 09:11:20 -070038#include "xfs_refcount_item.h"
Darrick J. Wong6413a012016-10-03 09:11:25 -070039#include "xfs_bmap_item.h"
Darrick J. Wong5e7e6052016-10-03 09:11:38 -070040#include "xfs_reflink.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#include <linux/namei.h>
Dan Williamsef5104242017-05-08 10:55:27 -070043#include <linux/dax.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090045#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/mount.h>
Christoph Hellwig0829c362005-09-02 16:58:49 +100047#include <linux/mempool.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/writeback.h>
Christoph Hellwig4df08c52005-09-05 08:34:18 +100049#include <linux/kthread.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080050#include <linux/freezer.h>
Christoph Hellwig62a877e2008-07-18 17:12:36 +100051#include <linux/parser.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Alexey Dobriyanb87221d2009-09-21 17:01:09 -070053static const struct super_operations xfs_super_operations;
Kent Overstreete292d7b2018-05-20 18:25:57 -040054struct bio_set xfs_ioend_bioset;
Brian Foster65b65732014-09-09 11:52:42 +100055
Dave Chinnere3aed1a2014-09-29 10:46:08 +100056static struct kset *xfs_kset; /* top-level xfs sysfs dir */
Brian Foster65b65732014-09-09 11:52:42 +100057#ifdef DEBUG
58static struct xfs_kobj xfs_dbg_kobj; /* global debug sysfs attrs */
59#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Christoph Hellwig62a877e2008-07-18 17:12:36 +100061/*
62 * Table driven mount option parser.
Christoph Hellwig62a877e2008-07-18 17:12:36 +100063 */
64enum {
Eric Sandeen2e74af02016-03-02 09:55:38 +110065 Opt_logbufs, Opt_logbsize, Opt_logdev, Opt_rtdev, Opt_biosize,
66 Opt_wsync, Opt_noalign, Opt_swalloc, Opt_sunit, Opt_swidth, Opt_nouuid,
67 Opt_mtpt, Opt_grpid, Opt_nogrpid, Opt_bsdgroups, Opt_sysvgroups,
Eric Sandeen1c02d502018-07-26 09:11:27 -070068 Opt_allocsize, Opt_norecovery, Opt_inode64, Opt_inode32, Opt_ikeep,
69 Opt_noikeep, Opt_largeio, Opt_nolargeio, Opt_attr2, Opt_noattr2,
70 Opt_filestreams, Opt_quota, Opt_noquota, Opt_usrquota, Opt_grpquota,
71 Opt_prjquota, Opt_uquota, Opt_gquota, Opt_pquota,
Eric Sandeen2e74af02016-03-02 09:55:38 +110072 Opt_uqnoenforce, Opt_gqnoenforce, Opt_pqnoenforce, Opt_qnoenforce,
73 Opt_discard, Opt_nodiscard, Opt_dax, Opt_err,
Christoph Hellwig62a877e2008-07-18 17:12:36 +100074};
75
Steven Whitehousea447c092008-10-13 10:46:57 +010076static const match_table_t tokens = {
Eric Sandeen2e74af02016-03-02 09:55:38 +110077 {Opt_logbufs, "logbufs=%u"}, /* number of XFS log buffers */
78 {Opt_logbsize, "logbsize=%s"}, /* size of XFS log buffers */
79 {Opt_logdev, "logdev=%s"}, /* log device */
80 {Opt_rtdev, "rtdev=%s"}, /* realtime I/O device */
81 {Opt_biosize, "biosize=%u"}, /* log2 of preferred buffered io size */
82 {Opt_wsync, "wsync"}, /* safe-mode nfs compatible mount */
83 {Opt_noalign, "noalign"}, /* turn off stripe alignment */
84 {Opt_swalloc, "swalloc"}, /* turn on stripe width allocation */
85 {Opt_sunit, "sunit=%u"}, /* data volume stripe unit */
86 {Opt_swidth, "swidth=%u"}, /* data volume stripe width */
87 {Opt_nouuid, "nouuid"}, /* ignore filesystem UUID */
88 {Opt_mtpt, "mtpt"}, /* filesystem mount point */
89 {Opt_grpid, "grpid"}, /* group-ID from parent directory */
90 {Opt_nogrpid, "nogrpid"}, /* group-ID from current process */
91 {Opt_bsdgroups, "bsdgroups"}, /* group-ID from parent directory */
92 {Opt_sysvgroups,"sysvgroups"}, /* group-ID from current process */
93 {Opt_allocsize, "allocsize=%s"},/* preferred allocation size */
94 {Opt_norecovery,"norecovery"}, /* don't run XFS recovery */
Eric Sandeen2e74af02016-03-02 09:55:38 +110095 {Opt_inode64, "inode64"}, /* inodes can be allocated anywhere */
96 {Opt_inode32, "inode32"}, /* inode allocation limited to
97 * XFS_MAXINUMBER_32 */
98 {Opt_ikeep, "ikeep"}, /* do not free empty inode clusters */
99 {Opt_noikeep, "noikeep"}, /* free empty inode clusters */
100 {Opt_largeio, "largeio"}, /* report large I/O sizes in stat() */
101 {Opt_nolargeio, "nolargeio"}, /* do not report large I/O sizes
102 * in stat(). */
103 {Opt_attr2, "attr2"}, /* do use attr2 attribute format */
104 {Opt_noattr2, "noattr2"}, /* do not use attr2 attribute format */
105 {Opt_filestreams,"filestreams"},/* use filestreams allocator */
106 {Opt_quota, "quota"}, /* disk quotas (user) */
107 {Opt_noquota, "noquota"}, /* no quotas */
108 {Opt_usrquota, "usrquota"}, /* user quota enabled */
109 {Opt_grpquota, "grpquota"}, /* group quota enabled */
110 {Opt_prjquota, "prjquota"}, /* project quota enabled */
111 {Opt_uquota, "uquota"}, /* user quota (IRIX variant) */
112 {Opt_gquota, "gquota"}, /* group quota (IRIX variant) */
113 {Opt_pquota, "pquota"}, /* project quota (IRIX variant) */
114 {Opt_uqnoenforce,"uqnoenforce"},/* user quota limit enforcement */
115 {Opt_gqnoenforce,"gqnoenforce"},/* group quota limit enforcement */
116 {Opt_pqnoenforce,"pqnoenforce"},/* project quota limit enforcement */
117 {Opt_qnoenforce, "qnoenforce"}, /* same as uqnoenforce */
118 {Opt_discard, "discard"}, /* Discard unused blocks */
119 {Opt_nodiscard, "nodiscard"}, /* Do not discard unused blocks */
Eric Sandeen2e74af02016-03-02 09:55:38 +1100120 {Opt_dax, "dax"}, /* Enable direct access to bdev pages */
121 {Opt_err, NULL},
Christoph Hellwig62a877e2008-07-18 17:12:36 +1000122};
123
124
Markus Elfringa841b642016-01-04 16:13:21 +1100125STATIC int
Eric Sandeen2e74af02016-03-02 09:55:38 +1100126suffix_kstrtoint(const substring_t *s, unsigned int base, int *res)
David Chinnera67d7c52007-11-23 16:29:32 +1100127{
Abhijit Pawara17164e2013-01-09 19:34:42 +0530128 int last, shift_left_factor = 0, _res;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100129 char *value;
130 int ret = 0;
131
132 value = match_strdup(s);
133 if (!value)
134 return -ENOMEM;
David Chinnera67d7c52007-11-23 16:29:32 +1100135
136 last = strlen(value) - 1;
137 if (value[last] == 'K' || value[last] == 'k') {
138 shift_left_factor = 10;
139 value[last] = '\0';
140 }
141 if (value[last] == 'M' || value[last] == 'm') {
142 shift_left_factor = 20;
143 value[last] = '\0';
144 }
145 if (value[last] == 'G' || value[last] == 'g') {
146 shift_left_factor = 30;
147 value[last] = '\0';
148 }
149
Eric Sandeen2e74af02016-03-02 09:55:38 +1100150 if (kstrtoint(value, base, &_res))
151 ret = -EINVAL;
152 kfree(value);
Abhijit Pawara17164e2013-01-09 19:34:42 +0530153 *res = _res << shift_left_factor;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100154 return ret;
David Chinnera67d7c52007-11-23 16:29:32 +1100155}
156
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100157/*
158 * This function fills in xfs_mount_t fields based on mount args.
159 * Note: the superblock has _not_ yet been read in.
160 *
161 * Note that this function leaks the various device name allocations on
162 * failure. The caller takes care of them.
Eric Sandeena08ee402016-03-02 09:56:31 +1100163 *
164 * *sb is const because this is also used to test options on the remount
165 * path, and we don't want this to have any side effects at remount time.
166 * Today this function does not change *sb, but just to future-proof...
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100167 */
David Chinnera67d7c52007-11-23 16:29:32 +1100168STATIC int
169xfs_parseargs(
170 struct xfs_mount *mp,
Christoph Hellwig288699f2010-06-23 18:11:15 +1000171 char *options)
David Chinnera67d7c52007-11-23 16:29:32 +1100172{
Eric Sandeena08ee402016-03-02 09:56:31 +1100173 const struct super_block *sb = mp->m_super;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100174 char *p;
175 substring_t args[MAX_OPT_ARGS];
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100176 int dsunit = 0;
177 int dswidth = 0;
178 int iosize = 0;
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700179 uint8_t iosizelog = 0;
David Chinnera67d7c52007-11-23 16:29:32 +1100180
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100181 /*
Dave Chinner4f107002011-03-07 10:00:35 +1100182 * set up the mount name first so all the errors will refer to the
183 * correct device.
184 */
185 mp->m_fsname = kstrndup(sb->s_id, MAXNAMELEN, GFP_KERNEL);
186 if (!mp->m_fsname)
Dave Chinner24513372014-06-25 14:58:08 +1000187 return -ENOMEM;
Dave Chinner4f107002011-03-07 10:00:35 +1100188 mp->m_fsname_len = strlen(mp->m_fsname) + 1;
189
190 /*
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100191 * Copy binary VFS mount flags we are interested in.
192 */
David Howellsbc98a422017-07-17 08:45:34 +0100193 if (sb_rdonly(sb))
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100194 mp->m_flags |= XFS_MOUNT_RDONLY;
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800195 if (sb->s_flags & SB_DIRSYNC)
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100196 mp->m_flags |= XFS_MOUNT_DIRSYNC;
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800197 if (sb->s_flags & SB_SYNCHRONOUS)
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100198 mp->m_flags |= XFS_MOUNT_WSYNC;
199
200 /*
201 * Set some default flags that could be cleared by the mount option
202 * parsing.
203 */
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100204 mp->m_flags |= XFS_MOUNT_COMPAT_IOSIZE;
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100205
206 /*
207 * These can be overridden by the mount option parsing.
208 */
209 mp->m_logbufs = -1;
210 mp->m_logbsize = -1;
David Chinnera67d7c52007-11-23 16:29:32 +1100211
212 if (!options)
213 goto done;
214
Eric Sandeen2e74af02016-03-02 09:55:38 +1100215 while ((p = strsep(&options, ",")) != NULL) {
216 int token;
David Chinnera67d7c52007-11-23 16:29:32 +1100217
Eric Sandeen2e74af02016-03-02 09:55:38 +1100218 if (!*p)
219 continue;
220
221 token = match_token(p, tokens, args);
222 switch (token) {
223 case Opt_logbufs:
224 if (match_int(args, &mp->m_logbufs))
Dave Chinner24513372014-06-25 14:58:08 +1000225 return -EINVAL;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100226 break;
227 case Opt_logbsize:
228 if (suffix_kstrtoint(args, 10, &mp->m_logbsize))
Dave Chinner24513372014-06-25 14:58:08 +1000229 return -EINVAL;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100230 break;
231 case Opt_logdev:
Chengguang Xu5b4c8452018-02-25 12:17:31 -0800232 kfree(mp->m_logname);
Eric Sandeen2e74af02016-03-02 09:55:38 +1100233 mp->m_logname = match_strdup(args);
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100234 if (!mp->m_logname)
Dave Chinner24513372014-06-25 14:58:08 +1000235 return -ENOMEM;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100236 break;
237 case Opt_mtpt:
238 xfs_warn(mp, "%s option not allowed on this system", p);
Dave Chinner24513372014-06-25 14:58:08 +1000239 return -EINVAL;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100240 case Opt_rtdev:
Chengguang Xu5b4c8452018-02-25 12:17:31 -0800241 kfree(mp->m_rtname);
Eric Sandeen2e74af02016-03-02 09:55:38 +1100242 mp->m_rtname = match_strdup(args);
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100243 if (!mp->m_rtname)
Dave Chinner24513372014-06-25 14:58:08 +1000244 return -ENOMEM;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100245 break;
246 case Opt_allocsize:
247 case Opt_biosize:
248 if (suffix_kstrtoint(args, 10, &iosize))
Dave Chinner24513372014-06-25 14:58:08 +1000249 return -EINVAL;
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100250 iosizelog = ffs(iosize) - 1;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100251 break;
252 case Opt_grpid:
253 case Opt_bsdgroups:
David Chinnera67d7c52007-11-23 16:29:32 +1100254 mp->m_flags |= XFS_MOUNT_GRPID;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100255 break;
256 case Opt_nogrpid:
257 case Opt_sysvgroups:
David Chinnera67d7c52007-11-23 16:29:32 +1100258 mp->m_flags &= ~XFS_MOUNT_GRPID;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100259 break;
260 case Opt_wsync:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100261 mp->m_flags |= XFS_MOUNT_WSYNC;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100262 break;
263 case Opt_norecovery:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100264 mp->m_flags |= XFS_MOUNT_NORECOVERY;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100265 break;
266 case Opt_noalign:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100267 mp->m_flags |= XFS_MOUNT_NOALIGN;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100268 break;
269 case Opt_swalloc:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100270 mp->m_flags |= XFS_MOUNT_SWALLOC;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100271 break;
272 case Opt_sunit:
273 if (match_int(args, &dsunit))
Dave Chinner24513372014-06-25 14:58:08 +1000274 return -EINVAL;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100275 break;
276 case Opt_swidth:
277 if (match_int(args, &dswidth))
Dave Chinner24513372014-06-25 14:58:08 +1000278 return -EINVAL;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100279 break;
280 case Opt_inode32:
Carlos Maiolino08bf5402012-09-20 10:32:37 -0300281 mp->m_flags |= XFS_MOUNT_SMALL_INUMS;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100282 break;
283 case Opt_inode64:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100284 mp->m_flags &= ~XFS_MOUNT_SMALL_INUMS;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100285 break;
286 case Opt_nouuid:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100287 mp->m_flags |= XFS_MOUNT_NOUUID;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100288 break;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100289 case Opt_ikeep:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100290 mp->m_flags |= XFS_MOUNT_IKEEP;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100291 break;
292 case Opt_noikeep:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100293 mp->m_flags &= ~XFS_MOUNT_IKEEP;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100294 break;
295 case Opt_largeio:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100296 mp->m_flags &= ~XFS_MOUNT_COMPAT_IOSIZE;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100297 break;
298 case Opt_nolargeio:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100299 mp->m_flags |= XFS_MOUNT_COMPAT_IOSIZE;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100300 break;
301 case Opt_attr2:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100302 mp->m_flags |= XFS_MOUNT_ATTR2;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100303 break;
304 case Opt_noattr2:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100305 mp->m_flags &= ~XFS_MOUNT_ATTR2;
306 mp->m_flags |= XFS_MOUNT_NOATTR2;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100307 break;
308 case Opt_filestreams:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100309 mp->m_flags |= XFS_MOUNT_FILESTREAMS;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100310 break;
311 case Opt_noquota:
Chandra Seetharaman4177af32012-01-23 17:31:43 +0000312 mp->m_qflags &= ~XFS_ALL_QUOTA_ACCT;
313 mp->m_qflags &= ~XFS_ALL_QUOTA_ENFD;
314 mp->m_qflags &= ~XFS_ALL_QUOTA_ACTIVE;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100315 break;
316 case Opt_quota:
317 case Opt_uquota:
318 case Opt_usrquota:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100319 mp->m_qflags |= (XFS_UQUOTA_ACCT | XFS_UQUOTA_ACTIVE |
320 XFS_UQUOTA_ENFD);
Eric Sandeen2e74af02016-03-02 09:55:38 +1100321 break;
322 case Opt_qnoenforce:
323 case Opt_uqnoenforce:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100324 mp->m_qflags |= (XFS_UQUOTA_ACCT | XFS_UQUOTA_ACTIVE);
325 mp->m_qflags &= ~XFS_UQUOTA_ENFD;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100326 break;
327 case Opt_pquota:
328 case Opt_prjquota:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100329 mp->m_qflags |= (XFS_PQUOTA_ACCT | XFS_PQUOTA_ACTIVE |
Chandra Seetharaman83e782e2013-06-27 17:25:10 -0500330 XFS_PQUOTA_ENFD);
Eric Sandeen2e74af02016-03-02 09:55:38 +1100331 break;
332 case Opt_pqnoenforce:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100333 mp->m_qflags |= (XFS_PQUOTA_ACCT | XFS_PQUOTA_ACTIVE);
Chandra Seetharaman83e782e2013-06-27 17:25:10 -0500334 mp->m_qflags &= ~XFS_PQUOTA_ENFD;
Eryu Guance5c7672016-04-06 07:19:40 +1000335 break;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100336 case Opt_gquota:
337 case Opt_grpquota:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100338 mp->m_qflags |= (XFS_GQUOTA_ACCT | XFS_GQUOTA_ACTIVE |
Chandra Seetharaman83e782e2013-06-27 17:25:10 -0500339 XFS_GQUOTA_ENFD);
Eric Sandeen2e74af02016-03-02 09:55:38 +1100340 break;
341 case Opt_gqnoenforce:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100342 mp->m_qflags |= (XFS_GQUOTA_ACCT | XFS_GQUOTA_ACTIVE);
Chandra Seetharaman83e782e2013-06-27 17:25:10 -0500343 mp->m_qflags &= ~XFS_GQUOTA_ENFD;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100344 break;
345 case Opt_discard:
Christoph Hellwige84661a2011-05-20 13:45:32 +0000346 mp->m_flags |= XFS_MOUNT_DISCARD;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100347 break;
348 case Opt_nodiscard:
Christoph Hellwige84661a2011-05-20 13:45:32 +0000349 mp->m_flags &= ~XFS_MOUNT_DISCARD;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100350 break;
Dave Chinnercbe4dab2015-06-04 09:19:18 +1000351#ifdef CONFIG_FS_DAX
Eric Sandeen2e74af02016-03-02 09:55:38 +1100352 case Opt_dax:
Dave Chinnercbe4dab2015-06-04 09:19:18 +1000353 mp->m_flags |= XFS_MOUNT_DAX;
Eric Sandeen2e74af02016-03-02 09:55:38 +1100354 break;
Dave Chinnercbe4dab2015-06-04 09:19:18 +1000355#endif
Eric Sandeen2e74af02016-03-02 09:55:38 +1100356 default:
357 xfs_warn(mp, "unknown mount option [%s].", p);
Dave Chinner24513372014-06-25 14:58:08 +1000358 return -EINVAL;
David Chinnera67d7c52007-11-23 16:29:32 +1100359 }
360 }
361
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100362 /*
363 * no recovery flag requires a read-only mount
364 */
365 if ((mp->m_flags & XFS_MOUNT_NORECOVERY) &&
366 !(mp->m_flags & XFS_MOUNT_RDONLY)) {
Dave Chinner4f107002011-03-07 10:00:35 +1100367 xfs_warn(mp, "no-recovery mounts must be read-only.");
Dave Chinner24513372014-06-25 14:58:08 +1000368 return -EINVAL;
David Chinnera67d7c52007-11-23 16:29:32 +1100369 }
370
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100371 if ((mp->m_flags & XFS_MOUNT_NOALIGN) && (dsunit || dswidth)) {
Dave Chinner4f107002011-03-07 10:00:35 +1100372 xfs_warn(mp,
373 "sunit and swidth options incompatible with the noalign option");
Dave Chinner24513372014-06-25 14:58:08 +1000374 return -EINVAL;
David Chinnera67d7c52007-11-23 16:29:32 +1100375 }
376
Christoph Hellwig7d095252009-06-08 15:33:32 +0200377#ifndef CONFIG_XFS_QUOTA
378 if (XFS_IS_QUOTA_RUNNING(mp)) {
Dave Chinner4f107002011-03-07 10:00:35 +1100379 xfs_warn(mp, "quota support not available in this kernel.");
Dave Chinner24513372014-06-25 14:58:08 +1000380 return -EINVAL;
Christoph Hellwig7d095252009-06-08 15:33:32 +0200381 }
382#endif
383
David Chinnera67d7c52007-11-23 16:29:32 +1100384 if ((dsunit && !dswidth) || (!dsunit && dswidth)) {
Dave Chinner4f107002011-03-07 10:00:35 +1100385 xfs_warn(mp, "sunit and swidth must be specified together");
Dave Chinner24513372014-06-25 14:58:08 +1000386 return -EINVAL;
David Chinnera67d7c52007-11-23 16:29:32 +1100387 }
388
389 if (dsunit && (dswidth % dsunit != 0)) {
Dave Chinner4f107002011-03-07 10:00:35 +1100390 xfs_warn(mp,
391 "stripe width (%d) must be a multiple of the stripe unit (%d)",
David Chinnera67d7c52007-11-23 16:29:32 +1100392 dswidth, dsunit);
Dave Chinner24513372014-06-25 14:58:08 +1000393 return -EINVAL;
David Chinnera67d7c52007-11-23 16:29:32 +1100394 }
395
David Chinnera67d7c52007-11-23 16:29:32 +1100396done:
Jie Liu39a45d82013-05-02 19:27:47 +0800397 if (dsunit && !(mp->m_flags & XFS_MOUNT_NOALIGN)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100398 /*
399 * At this point the superblock has not been read
400 * in, therefore we do not know the block size.
401 * Before the mount call ends we will convert
402 * these to FSBs.
403 */
Jie Liu39a45d82013-05-02 19:27:47 +0800404 mp->m_dalign = dsunit;
405 mp->m_swidth = dswidth;
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100406 }
407
408 if (mp->m_logbufs != -1 &&
409 mp->m_logbufs != 0 &&
410 (mp->m_logbufs < XLOG_MIN_ICLOGS ||
411 mp->m_logbufs > XLOG_MAX_ICLOGS)) {
Dave Chinner4f107002011-03-07 10:00:35 +1100412 xfs_warn(mp, "invalid logbufs value: %d [not %d-%d]",
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100413 mp->m_logbufs, XLOG_MIN_ICLOGS, XLOG_MAX_ICLOGS);
Dave Chinner24513372014-06-25 14:58:08 +1000414 return -EINVAL;
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100415 }
416 if (mp->m_logbsize != -1 &&
417 mp->m_logbsize != 0 &&
418 (mp->m_logbsize < XLOG_MIN_RECORD_BSIZE ||
419 mp->m_logbsize > XLOG_MAX_RECORD_BSIZE ||
420 !is_power_of_2(mp->m_logbsize))) {
Dave Chinner4f107002011-03-07 10:00:35 +1100421 xfs_warn(mp,
422 "invalid logbufsize: %d [not 16k,32k,64k,128k or 256k]",
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100423 mp->m_logbsize);
Dave Chinner24513372014-06-25 14:58:08 +1000424 return -EINVAL;
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100425 }
426
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100427 if (iosizelog) {
428 if (iosizelog > XFS_MAX_IO_LOG ||
429 iosizelog < XFS_MIN_IO_LOG) {
Dave Chinner4f107002011-03-07 10:00:35 +1100430 xfs_warn(mp, "invalid log iosize: %d [not %d-%d]",
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100431 iosizelog, XFS_MIN_IO_LOG,
432 XFS_MAX_IO_LOG);
Dave Chinner24513372014-06-25 14:58:08 +1000433 return -EINVAL;
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100434 }
435
436 mp->m_flags |= XFS_MOUNT_DFLT_IOSIZE;
437 mp->m_readio_log = iosizelog;
438 mp->m_writeio_log = iosizelog;
439 }
440
David Chinnera67d7c52007-11-23 16:29:32 +1100441 return 0;
442}
443
444struct proc_xfs_info {
Dave Chinnercbe4dab2015-06-04 09:19:18 +1000445 uint64_t flag;
446 char *str;
David Chinnera67d7c52007-11-23 16:29:32 +1100447};
448
449STATIC int
450xfs_showargs(
451 struct xfs_mount *mp,
452 struct seq_file *m)
453{
454 static struct proc_xfs_info xfs_info_set[] = {
455 /* the few simple ones we can get from the mount struct */
Eric Sandeen2e74af02016-03-02 09:55:38 +1100456 { XFS_MOUNT_IKEEP, ",ikeep" },
457 { XFS_MOUNT_WSYNC, ",wsync" },
458 { XFS_MOUNT_NOALIGN, ",noalign" },
459 { XFS_MOUNT_SWALLOC, ",swalloc" },
460 { XFS_MOUNT_NOUUID, ",nouuid" },
461 { XFS_MOUNT_NORECOVERY, ",norecovery" },
462 { XFS_MOUNT_ATTR2, ",attr2" },
463 { XFS_MOUNT_FILESTREAMS, ",filestreams" },
464 { XFS_MOUNT_GRPID, ",grpid" },
465 { XFS_MOUNT_DISCARD, ",discard" },
466 { XFS_MOUNT_SMALL_INUMS, ",inode32" },
467 { XFS_MOUNT_DAX, ",dax" },
David Chinnera67d7c52007-11-23 16:29:32 +1100468 { 0, NULL }
469 };
470 static struct proc_xfs_info xfs_info_unset[] = {
471 /* the few simple ones we can get from the mount struct */
Eric Sandeen2e74af02016-03-02 09:55:38 +1100472 { XFS_MOUNT_COMPAT_IOSIZE, ",largeio" },
Eric Sandeen2e74af02016-03-02 09:55:38 +1100473 { XFS_MOUNT_SMALL_INUMS, ",inode64" },
David Chinnera67d7c52007-11-23 16:29:32 +1100474 { 0, NULL }
475 };
476 struct proc_xfs_info *xfs_infop;
477
478 for (xfs_infop = xfs_info_set; xfs_infop->flag; xfs_infop++) {
479 if (mp->m_flags & xfs_infop->flag)
480 seq_puts(m, xfs_infop->str);
481 }
482 for (xfs_infop = xfs_info_unset; xfs_infop->flag; xfs_infop++) {
483 if (!(mp->m_flags & xfs_infop->flag))
484 seq_puts(m, xfs_infop->str);
485 }
486
487 if (mp->m_flags & XFS_MOUNT_DFLT_IOSIZE)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100488 seq_printf(m, ",allocsize=%dk",
David Chinnera67d7c52007-11-23 16:29:32 +1100489 (int)(1 << mp->m_writeio_log) >> 10);
490
491 if (mp->m_logbufs > 0)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100492 seq_printf(m, ",logbufs=%d", mp->m_logbufs);
David Chinnera67d7c52007-11-23 16:29:32 +1100493 if (mp->m_logbsize > 0)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100494 seq_printf(m, ",logbsize=%dk", mp->m_logbsize >> 10);
David Chinnera67d7c52007-11-23 16:29:32 +1100495
496 if (mp->m_logname)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100497 seq_show_option(m, "logdev", mp->m_logname);
David Chinnera67d7c52007-11-23 16:29:32 +1100498 if (mp->m_rtname)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100499 seq_show_option(m, "rtdev", mp->m_rtname);
David Chinnera67d7c52007-11-23 16:29:32 +1100500
501 if (mp->m_dalign > 0)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100502 seq_printf(m, ",sunit=%d",
David Chinnera67d7c52007-11-23 16:29:32 +1100503 (int)XFS_FSB_TO_BB(mp, mp->m_dalign));
504 if (mp->m_swidth > 0)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100505 seq_printf(m, ",swidth=%d",
David Chinnera67d7c52007-11-23 16:29:32 +1100506 (int)XFS_FSB_TO_BB(mp, mp->m_swidth));
507
508 if (mp->m_qflags & (XFS_UQUOTA_ACCT|XFS_UQUOTA_ENFD))
Eric Sandeen2e74af02016-03-02 09:55:38 +1100509 seq_puts(m, ",usrquota");
David Chinnera67d7c52007-11-23 16:29:32 +1100510 else if (mp->m_qflags & XFS_UQUOTA_ACCT)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100511 seq_puts(m, ",uqnoenforce");
David Chinnera67d7c52007-11-23 16:29:32 +1100512
Alex Elder988abe42009-09-02 17:02:24 -0500513 if (mp->m_qflags & XFS_PQUOTA_ACCT) {
Chandra Seetharaman83e782e2013-06-27 17:25:10 -0500514 if (mp->m_qflags & XFS_PQUOTA_ENFD)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100515 seq_puts(m, ",prjquota");
Alex Elder988abe42009-09-02 17:02:24 -0500516 else
Eric Sandeen2e74af02016-03-02 09:55:38 +1100517 seq_puts(m, ",pqnoenforce");
Chandra Seetharamand892d582013-07-19 17:36:02 -0500518 }
519 if (mp->m_qflags & XFS_GQUOTA_ACCT) {
Chandra Seetharaman83e782e2013-06-27 17:25:10 -0500520 if (mp->m_qflags & XFS_GQUOTA_ENFD)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100521 seq_puts(m, ",grpquota");
Alex Elder988abe42009-09-02 17:02:24 -0500522 else
Eric Sandeen2e74af02016-03-02 09:55:38 +1100523 seq_puts(m, ",gqnoenforce");
Alex Elder988abe42009-09-02 17:02:24 -0500524 }
David Chinnera67d7c52007-11-23 16:29:32 +1100525
526 if (!(mp->m_qflags & XFS_ALL_QUOTA_ACCT))
Eric Sandeen2e74af02016-03-02 09:55:38 +1100527 seq_puts(m, ",noquota");
David Chinnera67d7c52007-11-23 16:29:32 +1100528
529 return 0;
530}
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700531static uint64_t
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532xfs_max_file_offset(
533 unsigned int blockshift)
534{
535 unsigned int pagefactor = 1;
536 unsigned int bitshift = BITS_PER_LONG - 1;
537
538 /* Figure out maximum filesize, on Linux this can depend on
539 * the filesystem blocksize (on 32 bit platforms).
Christoph Hellwigebdec242010-10-06 10:47:23 +0200540 * __block_write_begin does this in an [unsigned] long...
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +0300541 * page->index << (PAGE_SHIFT - bbits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 * So, for page sized blocks (4K on 32 bit platforms),
543 * this wraps at around 8Tb (hence MAX_LFS_FILESIZE which is
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +0300544 * (((u64)PAGE_SIZE << (BITS_PER_LONG-1))-1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 * but for smaller blocksizes it is less (bbits = log2 bsize).
546 * Note1: get_block_t takes a long (implicit cast from above)
547 * Note2: The Large Block Device (LBD and HAVE_SECTOR_T) patch
548 * can optionally convert the [unsigned] long from above into
549 * an [unsigned] long long.
550 */
551
552#if BITS_PER_LONG == 32
Bartlomiej Zolnierkiewicz90c699a2009-06-19 08:08:50 +0200553# if defined(CONFIG_LBDAF)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 ASSERT(sizeof(sector_t) == 8);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300555 pagefactor = PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 bitshift = BITS_PER_LONG;
557# else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300558 pagefactor = PAGE_SIZE >> (PAGE_SHIFT - blockshift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559# endif
560#endif
561
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700562 return (((uint64_t)pagefactor) << bitshift) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563}
564
Eric Sandeen9de67c32014-07-24 20:51:54 +1000565/*
Eric Sandeen12c3f052016-03-02 09:58:09 +1100566 * Set parameters for inode allocation heuristics, taking into account
567 * filesystem size and inode32/inode64 mount options; i.e. specifically
568 * whether or not XFS_MOUNT_SMALL_INUMS is set.
569 *
570 * Inode allocation patterns are altered only if inode32 is requested
571 * (XFS_MOUNT_SMALL_INUMS), and the filesystem is sufficiently large.
572 * If altered, XFS_MOUNT_32BITINODES is set as well.
573 *
574 * An agcount independent of that in the mount structure is provided
575 * because in the growfs case, mp->m_sb.sb_agcount is not yet updated
576 * to the potentially higher ag count.
577 *
578 * Returns the maximum AG index which may contain inodes.
Eric Sandeen9de67c32014-07-24 20:51:54 +1000579 */
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300580xfs_agnumber_t
Eric Sandeen12c3f052016-03-02 09:58:09 +1100581xfs_set_inode_alloc(
582 struct xfs_mount *mp,
583 xfs_agnumber_t agcount)
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300584{
Eric Sandeen12c3f052016-03-02 09:58:09 +1100585 xfs_agnumber_t index;
Carlos Maiolino4056c1d2012-09-20 10:32:40 -0300586 xfs_agnumber_t maxagi = 0;
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300587 xfs_sb_t *sbp = &mp->m_sb;
588 xfs_agnumber_t max_metadata;
Eric Sandeen54aa61f2014-07-24 20:53:10 +1000589 xfs_agino_t agino;
590 xfs_ino_t ino;
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300591
Eric Sandeen12c3f052016-03-02 09:58:09 +1100592 /*
593 * Calculate how much should be reserved for inodes to meet
594 * the max inode percentage. Used only for inode32.
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300595 */
596 if (mp->m_maxicount) {
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700597 uint64_t icount;
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300598
599 icount = sbp->sb_dblocks * sbp->sb_imax_pct;
600 do_div(icount, 100);
601 icount += sbp->sb_agblocks - 1;
602 do_div(icount, sbp->sb_agblocks);
603 max_metadata = icount;
604 } else {
Eric Sandeen9de67c32014-07-24 20:51:54 +1000605 max_metadata = agcount;
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300606 }
607
Eric Sandeen12c3f052016-03-02 09:58:09 +1100608 /* Get the last possible inode in the filesystem */
Eric Sandeen54aa61f2014-07-24 20:53:10 +1000609 agino = XFS_OFFBNO_TO_AGINO(mp, sbp->sb_agblocks - 1, 0);
Eric Sandeen12c3f052016-03-02 09:58:09 +1100610 ino = XFS_AGINO_TO_INO(mp, agcount - 1, agino);
Eric Sandeen54aa61f2014-07-24 20:53:10 +1000611
Eric Sandeen12c3f052016-03-02 09:58:09 +1100612 /*
613 * If user asked for no more than 32-bit inodes, and the fs is
614 * sufficiently large, set XFS_MOUNT_32BITINODES if we must alter
615 * the allocator to accommodate the request.
616 */
617 if ((mp->m_flags & XFS_MOUNT_SMALL_INUMS) && ino > XFS_MAXINUMBER_32)
618 mp->m_flags |= XFS_MOUNT_32BITINODES;
619 else
620 mp->m_flags &= ~XFS_MOUNT_32BITINODES;
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300621
Eric Sandeen9de67c32014-07-24 20:51:54 +1000622 for (index = 0; index < agcount; index++) {
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300623 struct xfs_perag *pag;
624
Eric Sandeen12c3f052016-03-02 09:58:09 +1100625 ino = XFS_AGINO_TO_INO(mp, index, agino);
626
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300627 pag = xfs_perag_get(mp, index);
Eric Sandeen12c3f052016-03-02 09:58:09 +1100628
629 if (mp->m_flags & XFS_MOUNT_32BITINODES) {
630 if (ino > XFS_MAXINUMBER_32) {
631 pag->pagi_inodeok = 0;
632 pag->pagf_metadata = 0;
633 } else {
634 pag->pagi_inodeok = 1;
635 maxagi++;
636 if (index < max_metadata)
637 pag->pagf_metadata = 1;
638 else
639 pag->pagf_metadata = 0;
640 }
641 } else {
642 pag->pagi_inodeok = 1;
643 pag->pagf_metadata = 0;
644 }
645
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300646 xfs_perag_put(pag);
647 }
648
Eric Sandeen12c3f052016-03-02 09:58:09 +1100649 return (mp->m_flags & XFS_MOUNT_32BITINODES) ? maxagi : agcount;
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300650}
651
Hannes Eder3180e662009-03-04 19:34:10 +0100652STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653xfs_blkdev_get(
654 xfs_mount_t *mp,
655 const char *name,
656 struct block_device **bdevp)
657{
658 int error = 0;
659
Tejun Heod4d77622010-11-13 11:55:18 +0100660 *bdevp = blkdev_get_by_path(name, FMODE_READ|FMODE_WRITE|FMODE_EXCL,
661 mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 if (IS_ERR(*bdevp)) {
663 error = PTR_ERR(*bdevp);
Eric Sandeen77af5742014-12-24 09:47:27 +1100664 xfs_warn(mp, "Invalid device [%s], error=%d", name, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 }
666
Dave Chinner24513372014-06-25 14:58:08 +1000667 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668}
669
Hannes Eder3180e662009-03-04 19:34:10 +0100670STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671xfs_blkdev_put(
672 struct block_device *bdev)
673{
674 if (bdev)
Tejun Heoe525fd82010-11-13 11:55:17 +0100675 blkdev_put(bdev, FMODE_READ|FMODE_WRITE|FMODE_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676}
677
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100678void
679xfs_blkdev_issue_flush(
680 xfs_buftarg_t *buftarg)
681{
Shaohua Li7582df52012-04-24 21:23:46 +0800682 blkdev_issue_flush(buftarg->bt_bdev, GFP_NOFS, NULL);
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100683}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000685STATIC void
686xfs_close_devices(
687 struct xfs_mount *mp)
688{
Dan Williams486aff52017-08-24 15:12:50 -0700689 struct dax_device *dax_ddev = mp->m_ddev_targp->bt_daxdev;
690
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000691 if (mp->m_logdev_targp && mp->m_logdev_targp != mp->m_ddev_targp) {
Lachlan McIlroyc032bfc2008-07-18 17:13:12 +1000692 struct block_device *logdev = mp->m_logdev_targp->bt_bdev;
Dan Williams486aff52017-08-24 15:12:50 -0700693 struct dax_device *dax_logdev = mp->m_logdev_targp->bt_daxdev;
694
Eric Sandeena1f69412018-04-06 10:09:42 -0700695 xfs_free_buftarg(mp->m_logdev_targp);
Lachlan McIlroyc032bfc2008-07-18 17:13:12 +1000696 xfs_blkdev_put(logdev);
Dan Williams486aff52017-08-24 15:12:50 -0700697 fs_put_dax(dax_logdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000698 }
699 if (mp->m_rtdev_targp) {
Lachlan McIlroyc032bfc2008-07-18 17:13:12 +1000700 struct block_device *rtdev = mp->m_rtdev_targp->bt_bdev;
Dan Williams486aff52017-08-24 15:12:50 -0700701 struct dax_device *dax_rtdev = mp->m_rtdev_targp->bt_daxdev;
702
Eric Sandeena1f69412018-04-06 10:09:42 -0700703 xfs_free_buftarg(mp->m_rtdev_targp);
Lachlan McIlroyc032bfc2008-07-18 17:13:12 +1000704 xfs_blkdev_put(rtdev);
Dan Williams486aff52017-08-24 15:12:50 -0700705 fs_put_dax(dax_rtdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000706 }
Eric Sandeena1f69412018-04-06 10:09:42 -0700707 xfs_free_buftarg(mp->m_ddev_targp);
Dan Williams486aff52017-08-24 15:12:50 -0700708 fs_put_dax(dax_ddev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000709}
710
711/*
712 * The file system configurations are:
713 * (1) device (partition) with data and internal log
714 * (2) logical volume with data and log subvolumes.
715 * (3) logical volume with data, log, and realtime subvolumes.
716 *
717 * We only have to handle opening the log and realtime volumes here if
718 * they are present. The data subvolume has already been opened by
719 * get_sb_bdev() and is stored in sb->s_bdev.
720 */
721STATIC int
722xfs_open_devices(
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100723 struct xfs_mount *mp)
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000724{
725 struct block_device *ddev = mp->m_super->s_bdev;
Dan Williams486aff52017-08-24 15:12:50 -0700726 struct dax_device *dax_ddev = fs_dax_get_by_bdev(ddev);
727 struct dax_device *dax_logdev = NULL, *dax_rtdev = NULL;
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000728 struct block_device *logdev = NULL, *rtdev = NULL;
729 int error;
730
731 /*
732 * Open real time and log devices - order is important.
733 */
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100734 if (mp->m_logname) {
735 error = xfs_blkdev_get(mp, mp->m_logname, &logdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000736 if (error)
737 goto out;
Dan Williams486aff52017-08-24 15:12:50 -0700738 dax_logdev = fs_dax_get_by_bdev(logdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000739 }
740
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100741 if (mp->m_rtname) {
742 error = xfs_blkdev_get(mp, mp->m_rtname, &rtdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000743 if (error)
744 goto out_close_logdev;
745
746 if (rtdev == ddev || rtdev == logdev) {
Dave Chinner4f107002011-03-07 10:00:35 +1100747 xfs_warn(mp,
748 "Cannot mount filesystem with identical rtdev and ddev/logdev.");
Dave Chinner24513372014-06-25 14:58:08 +1000749 error = -EINVAL;
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000750 goto out_close_rtdev;
751 }
Dan Williams486aff52017-08-24 15:12:50 -0700752 dax_rtdev = fs_dax_get_by_bdev(rtdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000753 }
754
755 /*
756 * Setup xfs_mount buffer target pointers
757 */
Dave Chinner24513372014-06-25 14:58:08 +1000758 error = -ENOMEM;
Dan Williams486aff52017-08-24 15:12:50 -0700759 mp->m_ddev_targp = xfs_alloc_buftarg(mp, ddev, dax_ddev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000760 if (!mp->m_ddev_targp)
761 goto out_close_rtdev;
762
763 if (rtdev) {
Dan Williams486aff52017-08-24 15:12:50 -0700764 mp->m_rtdev_targp = xfs_alloc_buftarg(mp, rtdev, dax_rtdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000765 if (!mp->m_rtdev_targp)
766 goto out_free_ddev_targ;
767 }
768
769 if (logdev && logdev != ddev) {
Dan Williams486aff52017-08-24 15:12:50 -0700770 mp->m_logdev_targp = xfs_alloc_buftarg(mp, logdev, dax_logdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000771 if (!mp->m_logdev_targp)
772 goto out_free_rtdev_targ;
773 } else {
774 mp->m_logdev_targp = mp->m_ddev_targp;
775 }
776
777 return 0;
778
779 out_free_rtdev_targ:
780 if (mp->m_rtdev_targp)
Eric Sandeena1f69412018-04-06 10:09:42 -0700781 xfs_free_buftarg(mp->m_rtdev_targp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000782 out_free_ddev_targ:
Eric Sandeena1f69412018-04-06 10:09:42 -0700783 xfs_free_buftarg(mp->m_ddev_targp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000784 out_close_rtdev:
Markus Elfringd2a5e3c2014-12-01 08:24:20 +1100785 xfs_blkdev_put(rtdev);
Dan Williams486aff52017-08-24 15:12:50 -0700786 fs_put_dax(dax_rtdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000787 out_close_logdev:
Dan Williams486aff52017-08-24 15:12:50 -0700788 if (logdev && logdev != ddev) {
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000789 xfs_blkdev_put(logdev);
Dan Williams486aff52017-08-24 15:12:50 -0700790 fs_put_dax(dax_logdev);
791 }
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000792 out:
Dan Williams486aff52017-08-24 15:12:50 -0700793 fs_put_dax(dax_ddev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000794 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
Brian Foster696a5622017-03-28 14:51:44 -0700870 mp->m_sync_workqueue = alloc_workqueue("xfs-sync/%s", WQ_FREEZABLE, 0,
871 mp->m_fsname);
872 if (!mp->m_sync_workqueue)
873 goto out_destroy_eofb;
874
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000875 return 0;
876
Brian Foster696a5622017-03-28 14:51:44 -0700877out_destroy_eofb:
878 destroy_workqueue(mp->m_eofblocks_workqueue);
Brian Foster579b62f2012-11-06 09:50:47 -0500879out_destroy_log:
880 destroy_workqueue(mp->m_log_workqueue);
Dave Chinner58896082012-10-08 21:56:05 +1100881out_destroy_reclaim:
882 destroy_workqueue(mp->m_reclaim_workqueue);
883out_destroy_cil:
884 destroy_workqueue(mp->m_cil_workqueue);
Dave Chinner4c2d5422012-04-23 17:54:32 +1000885out_destroy_unwritten:
886 destroy_workqueue(mp->m_unwritten_workqueue);
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000887out_destroy_data_iodone_queue:
888 destroy_workqueue(mp->m_data_workqueue);
Brian Foster78c931b2014-11-28 13:59:58 +1100889out_destroy_buf:
890 destroy_workqueue(mp->m_buf_workqueue);
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000891out:
892 return -ENOMEM;
893}
894
895STATIC void
896xfs_destroy_mount_workqueues(
897 struct xfs_mount *mp)
898{
Brian Foster696a5622017-03-28 14:51:44 -0700899 destroy_workqueue(mp->m_sync_workqueue);
Brian Foster579b62f2012-11-06 09:50:47 -0500900 destroy_workqueue(mp->m_eofblocks_workqueue);
Dave Chinner58896082012-10-08 21:56:05 +1100901 destroy_workqueue(mp->m_log_workqueue);
902 destroy_workqueue(mp->m_reclaim_workqueue);
Dave Chinner4c2d5422012-04-23 17:54:32 +1000903 destroy_workqueue(mp->m_cil_workqueue);
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000904 destroy_workqueue(mp->m_data_workqueue);
905 destroy_workqueue(mp->m_unwritten_workqueue);
Brian Foster78c931b2014-11-28 13:59:58 +1100906 destroy_workqueue(mp->m_buf_workqueue);
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000907}
908
Dave Chinner9aa05002012-10-08 21:56:04 +1100909/*
910 * Flush all dirty data to disk. Must not be called while holding an XFS_ILOCK
911 * or a page lock. We use sync_inodes_sb() here to ensure we block while waiting
912 * for IO to complete so that we effectively throttle multiple callers to the
913 * rate at which IO is completing.
914 */
915void
916xfs_flush_inodes(
917 struct xfs_mount *mp)
918{
919 struct super_block *sb = mp->m_super;
920
921 if (down_read_trylock(&sb->s_umount)) {
Jan Kara0dc83bd2014-02-21 11:19:04 +0100922 sync_inodes_sb(sb);
Dave Chinner9aa05002012-10-08 21:56:04 +1100923 up_read(&sb->s_umount);
924 }
925}
926
David Chinnerbf904242008-10-30 17:36:14 +1100927/* Catch misguided souls that try to use this interface on XFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928STATIC struct inode *
Nathan Scotta50cd262006-03-14 14:06:18 +1100929xfs_fs_alloc_inode(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 struct super_block *sb)
931{
David Chinnerbf904242008-10-30 17:36:14 +1100932 BUG();
Lachlan McIlroy493dca62008-10-30 17:36:52 +1100933 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934}
935
David Chinnerbf904242008-10-30 17:36:14 +1100936/*
David Chinner99fa8cb2008-10-30 17:36:40 +1100937 * Now that the generic code is guaranteed not to be accessing
Dave Chinner8179c032016-05-18 13:52:42 +1000938 * the linux inode, we can inactivate and reclaim the inode.
David Chinnerbf904242008-10-30 17:36:14 +1100939 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940STATIC void
Nathan Scotta50cd262006-03-14 14:06:18 +1100941xfs_fs_destroy_inode(
Christoph Hellwig848ce8f2009-09-29 13:48:56 +0000942 struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943{
Christoph Hellwig848ce8f2009-09-29 13:48:56 +0000944 struct xfs_inode *ip = XFS_I(inode);
945
Christoph Hellwigcca28fb2010-06-24 11:57:09 +1000946 trace_xfs_destroy_inode(ip);
David Chinner99fa8cb2008-10-30 17:36:40 +1100947
Christoph Hellwig65523212016-11-30 14:33:25 +1100948 ASSERT(!rwsem_is_locked(&inode->i_rwsem));
Dave Chinner8179c032016-05-18 13:52:42 +1000949 XFS_STATS_INC(ip->i_mount, vn_rele);
950 XFS_STATS_INC(ip->i_mount, vn_remove);
951
952 xfs_inactive(ip);
Christoph Hellwig848ce8f2009-09-29 13:48:56 +0000953
Christoph Hellwig848ce8f2009-09-29 13:48:56 +0000954 ASSERT(XFS_FORCED_SHUTDOWN(ip->i_mount) || ip->i_delayed_blks == 0);
Dave Chinner8179c032016-05-18 13:52:42 +1000955 XFS_STATS_INC(ip->i_mount, vn_reclaim);
Christoph Hellwig848ce8f2009-09-29 13:48:56 +0000956
957 /*
958 * We should never get here with one of the reclaim flags already set.
959 */
960 ASSERT_ALWAYS(!xfs_iflags_test(ip, XFS_IRECLAIMABLE));
961 ASSERT_ALWAYS(!xfs_iflags_test(ip, XFS_IRECLAIM));
962
963 /*
Dave Chinner57817c62010-01-10 23:51:47 +0000964 * We always use background reclaim here because even if the
965 * inode is clean, it still may be under IO and hence we have
966 * to take the flush lock. The background reclaim path handles
967 * this more efficiently than we can here, so simply let background
968 * reclaim tear down all inodes.
Christoph Hellwig848ce8f2009-09-29 13:48:56 +0000969 */
Dave Chinner57817c62010-01-10 23:51:47 +0000970 xfs_inode_set_reclaim_tag(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971}
972
Christoph Hellwigc3b1b132018-03-06 17:04:00 -0800973static void
974xfs_fs_dirty_inode(
975 struct inode *inode,
976 int flag)
977{
978 struct xfs_inode *ip = XFS_I(inode);
979 struct xfs_mount *mp = ip->i_mount;
980 struct xfs_trans *tp;
981
982 if (!(inode->i_sb->s_flags & SB_LAZYTIME))
983 return;
984 if (flag != I_DIRTY_SYNC || !(inode->i_state & I_DIRTY_TIME))
985 return;
986
987 if (xfs_trans_alloc(mp, &M_RES(mp)->tr_fsyncts, 0, 0, 0, &tp))
988 return;
989 xfs_ilock(ip, XFS_ILOCK_EXCL);
990 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
991 xfs_trans_log_inode(tp, ip, XFS_ILOG_TIMESTAMP);
992 xfs_trans_commit(tp);
993}
994
David Chinner07c8f672008-10-30 16:11:59 +1100995/*
996 * Slab object creation initialisation for the XFS inode.
997 * This covers only the idempotent fields in the XFS inode;
998 * all other fields need to be initialised on allocation
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400999 * from the slab. This avoids the need to repeatedly initialise
David Chinner07c8f672008-10-30 16:11:59 +11001000 * fields in the xfs inode that left in the initialise state
1001 * when freeing the inode.
1002 */
David Chinnerbf904242008-10-30 17:36:14 +11001003STATIC void
1004xfs_fs_inode_init_once(
David Chinner07c8f672008-10-30 16:11:59 +11001005 void *inode)
1006{
1007 struct xfs_inode *ip = inode;
1008
1009 memset(ip, 0, sizeof(struct xfs_inode));
David Chinnerbf904242008-10-30 17:36:14 +11001010
1011 /* vfs inode */
1012 inode_init_once(VFS_I(ip));
1013
1014 /* xfs inode */
David Chinner07c8f672008-10-30 16:11:59 +11001015 atomic_set(&ip->i_pincount, 0);
1016 spin_lock_init(&ip->i_flags_lock);
David Chinner07c8f672008-10-30 16:11:59 +11001017
Dave Chinner653c60b2015-02-23 21:43:37 +11001018 mrlock_init(&ip->i_mmaplock, MRLOCK_ALLOW_EQUAL_PRI|MRLOCK_BARRIER,
1019 "xfsino", ip->i_ino);
David Chinner07c8f672008-10-30 16:11:59 +11001020 mrlock_init(&ip->i_lock, MRLOCK_ALLOW_EQUAL_PRI|MRLOCK_BARRIER,
1021 "xfsino", ip->i_ino);
David Chinner07c8f672008-10-30 16:11:59 +11001022}
1023
Dave Chinner5132ba82012-03-22 05:15:10 +00001024/*
1025 * We do an unlocked check for XFS_IDONTCACHE here because we are already
1026 * serialised against cache hits here via the inode->i_lock and igrab() in
1027 * xfs_iget_cache_hit(). Hence a lookup that might clear this flag will not be
1028 * racing with us, and it avoids needing to grab a spinlock here for every inode
1029 * we drop the final reference on.
1030 */
1031STATIC int
1032xfs_fs_drop_inode(
1033 struct inode *inode)
1034{
1035 struct xfs_inode *ip = XFS_I(inode);
1036
Darrick J. Wong17c12bc2016-10-03 09:11:29 -07001037 /*
1038 * If this unlinked inode is in the middle of recovery, don't
1039 * drop the inode just yet; log recovery will take care of
1040 * that. See the comment for this inode flag.
1041 */
1042 if (ip->i_flags & XFS_IRECOVERY) {
1043 ASSERT(ip->i_mount->m_log->l_flags & XLOG_RECOVERY_NEEDED);
1044 return 0;
1045 }
1046
Dave Chinner5132ba82012-03-22 05:15:10 +00001047 return generic_drop_inode(inode) || (ip->i_flags & XFS_IDONTCACHE);
1048}
1049
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050STATIC void
Christoph Hellwiga7381592008-08-13 16:04:05 +10001051xfs_free_fsname(
1052 struct xfs_mount *mp)
1053{
1054 kfree(mp->m_fsname);
1055 kfree(mp->m_rtname);
1056 kfree(mp->m_logname);
1057}
1058
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059STATIC int
Christoph Hellwig69961a22009-10-06 20:29:28 +00001060xfs_fs_sync_fs(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 struct super_block *sb,
1062 int wait)
1063{
Christoph Hellwig745f6912007-08-30 17:20:39 +10001064 struct xfs_mount *mp = XFS_M(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
Lachlan McIlroye893bff2007-10-12 11:13:35 +10001066 /*
Christoph Hellwig34625c62011-12-06 21:58:12 +00001067 * Doing anything during the async pass would be counterproductive.
Lachlan McIlroye893bff2007-10-12 11:13:35 +10001068 */
Christoph Hellwig34625c62011-12-06 21:58:12 +00001069 if (!wait)
Christoph Hellwig69961a22009-10-06 20:29:28 +00001070 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
Dave Chinner34061f52012-10-08 21:56:06 +11001072 xfs_log_force(mp, XFS_LOG_SYNC);
Christoph Hellwig69961a22009-10-06 20:29:28 +00001073 if (laptop_mode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 /*
1075 * The disk must be active because we're syncing.
Dave Chinnerf661f1e2012-10-08 21:56:02 +11001076 * We schedule log work now (now that the disk is
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 * active) instead of later (when it might not be).
1078 */
Dave Chinnerf661f1e2012-10-08 21:56:02 +11001079 flush_delayed_work(&mp->m_log->l_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 }
1081
Christoph Hellwig69961a22009-10-06 20:29:28 +00001082 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083}
1084
1085STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001086xfs_fs_statfs(
David Howells726c3342006-06-23 02:02:58 -07001087 struct dentry *dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 struct kstatfs *statp)
1089{
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001090 struct xfs_mount *mp = XFS_M(dentry->d_sb);
1091 xfs_sb_t *sbp = &mp->m_sb;
David Howells2b0143b2015-03-17 22:25:59 +00001092 struct xfs_inode *ip = XFS_I(d_inode(dentry));
Darrick J. Wongc8ce5402017-06-16 11:00:05 -07001093 uint64_t fakeinos, id;
1094 uint64_t icount;
1095 uint64_t ifree;
1096 uint64_t fdblocks;
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001097 xfs_extlen_t lsize;
Darrick J. Wongc8ce5402017-06-16 11:00:05 -07001098 int64_t ffree;
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001099
1100 statp->f_type = XFS_SB_MAGIC;
1101 statp->f_namelen = MAXNAMELEN - 1;
1102
1103 id = huge_encode_dev(mp->m_ddev_targp->bt_dev);
1104 statp->f_fsid.val[0] = (u32)id;
1105 statp->f_fsid.val[1] = (u32)(id >> 32);
1106
Dave Chinner501ab322015-02-23 21:19:28 +11001107 icount = percpu_counter_sum(&mp->m_icount);
Dave Chinnere88b64e2015-02-23 21:19:53 +11001108 ifree = percpu_counter_sum(&mp->m_ifree);
Dave Chinner0d485ad2015-02-23 21:22:03 +11001109 fdblocks = percpu_counter_sum(&mp->m_fdblocks);
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001110
1111 spin_lock(&mp->m_sb_lock);
1112 statp->f_bsize = sbp->sb_blocksize;
1113 lsize = sbp->sb_logstart ? sbp->sb_logblocks : 0;
1114 statp->f_blocks = sbp->sb_dblocks - lsize;
Dave Chinner0d485ad2015-02-23 21:22:03 +11001115 spin_unlock(&mp->m_sb_lock);
1116
Darrick J. Wong52548852016-08-03 11:38:24 +10001117 statp->f_bfree = fdblocks - mp->m_alloc_set_aside;
Dave Chinner0d485ad2015-02-23 21:22:03 +11001118 statp->f_bavail = statp->f_bfree;
1119
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001120 fakeinos = statp->f_bfree << sbp->sb_inopblog;
Dave Chinner9bb54cb2018-06-07 07:54:02 -07001121 statp->f_files = min(icount + fakeinos, (uint64_t)XFS_MAXINUMBER);
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001122 if (mp->m_maxicount)
Christoph Hellwiga19d9f82009-03-29 09:51:08 +02001123 statp->f_files = min_t(typeof(statp->f_files),
1124 statp->f_files,
1125 mp->m_maxicount);
Stuart Brodsky2fe33662010-08-24 11:46:05 +10001126
Eric Sandeen01f98822015-02-06 09:53:02 +11001127 /* If sb_icount overshot maxicount, report actual allocation */
1128 statp->f_files = max_t(typeof(statp->f_files),
1129 statp->f_files,
1130 sbp->sb_icount);
1131
Stuart Brodsky2fe33662010-08-24 11:46:05 +10001132 /* make sure statp->f_ffree does not underflow */
Dave Chinnere88b64e2015-02-23 21:19:53 +11001133 ffree = statp->f_files - (icount - ifree);
Darrick J. Wongc8ce5402017-06-16 11:00:05 -07001134 statp->f_ffree = max_t(int64_t, ffree, 0);
Stuart Brodsky2fe33662010-08-24 11:46:05 +10001135
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001136
Jie Liuda5bf952012-04-12 03:59:57 +00001137 if ((ip->i_d.di_flags & XFS_DIFLAG_PROJINHERIT) &&
Chandra Seetharaman83e782e2013-06-27 17:25:10 -05001138 ((mp->m_qflags & (XFS_PQUOTA_ACCT|XFS_PQUOTA_ENFD))) ==
1139 (XFS_PQUOTA_ACCT|XFS_PQUOTA_ENFD))
Christoph Hellwig7d095252009-06-08 15:33:32 +02001140 xfs_qm_statvfs(ip, statp);
Richard Wareinga0158312018-01-08 10:41:33 -08001141
1142 if (XFS_IS_REALTIME_MOUNT(mp) &&
1143 (ip->i_d.di_flags & (XFS_DIFLAG_RTINHERIT | XFS_DIFLAG_REALTIME))) {
1144 statp->f_blocks = sbp->sb_rblocks;
1145 statp->f_bavail = statp->f_bfree =
1146 sbp->sb_frextents * sbp->sb_rextsize;
1147 }
1148
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001149 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150}
1151
Eric Sandeend5db0f92010-02-05 22:59:53 +00001152STATIC void
1153xfs_save_resvblks(struct xfs_mount *mp)
1154{
Darrick J. Wongc8ce5402017-06-16 11:00:05 -07001155 uint64_t resblks = 0;
Eric Sandeend5db0f92010-02-05 22:59:53 +00001156
1157 mp->m_resblks_save = mp->m_resblks;
1158 xfs_reserve_blocks(mp, &resblks, NULL);
1159}
1160
1161STATIC void
1162xfs_restore_resvblks(struct xfs_mount *mp)
1163{
Darrick J. Wongc8ce5402017-06-16 11:00:05 -07001164 uint64_t resblks;
Eric Sandeend5db0f92010-02-05 22:59:53 +00001165
1166 if (mp->m_resblks_save) {
1167 resblks = mp->m_resblks_save;
1168 mp->m_resblks_save = 0;
1169 } else
1170 resblks = xfs_default_resblks(mp);
1171
1172 xfs_reserve_blocks(mp, &resblks, NULL);
1173}
1174
Dave Chinnerc7eea6f2012-10-08 21:56:07 +11001175/*
1176 * Trigger writeback of all the dirty metadata in the file system.
1177 *
1178 * This ensures that the metadata is written to their location on disk rather
1179 * than just existing in transactions in the log. This means after a quiesce
Dave Chinnerc75921a2012-10-08 21:56:08 +11001180 * there is no log replay required to write the inodes to disk - this is the
1181 * primary difference between a sync and a quiesce.
Dave Chinnerc7eea6f2012-10-08 21:56:07 +11001182 *
Dave Chinnerc75921a2012-10-08 21:56:08 +11001183 * Note: xfs_log_quiesce() stops background log work - the callers must ensure
1184 * it is started again when appropriate.
Dave Chinnerc7eea6f2012-10-08 21:56:07 +11001185 */
Dave Chinnerddeb14f2016-09-26 08:21:44 +10001186void
Dave Chinnerc7eea6f2012-10-08 21:56:07 +11001187xfs_quiesce_attr(
1188 struct xfs_mount *mp)
1189{
1190 int error = 0;
1191
1192 /* wait for all modifications to complete */
1193 while (atomic_read(&mp->m_active_trans) > 0)
1194 delay(100);
1195
1196 /* force the log to unpin objects from the now complete transactions */
1197 xfs_log_force(mp, XFS_LOG_SYNC);
1198
1199 /* reclaim inodes to do any IO before the freeze completes */
1200 xfs_reclaim_inodes(mp, 0);
1201 xfs_reclaim_inodes(mp, SYNC_WAIT);
1202
Dave Chinnerc75921a2012-10-08 21:56:08 +11001203 /* Push the superblock and write an unmount record */
1204 error = xfs_log_sbcount(mp);
1205 if (error)
1206 xfs_warn(mp, "xfs_attr_quiesce: failed to log sb changes. "
1207 "Frozen image may not be consistent.");
Dave Chinnerc7eea6f2012-10-08 21:56:07 +11001208 /*
1209 * Just warn here till VFS can correctly support
1210 * read-only remount without racing.
1211 */
1212 WARN_ON(atomic_read(&mp->m_active_trans) != 0);
1213
Dave Chinnerc75921a2012-10-08 21:56:08 +11001214 xfs_log_quiesce(mp);
Dave Chinnerc7eea6f2012-10-08 21:56:07 +11001215}
1216
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217STATIC int
Eric Sandeena08ee402016-03-02 09:56:31 +11001218xfs_test_remount_options(
1219 struct super_block *sb,
Eric Sandeena08ee402016-03-02 09:56:31 +11001220 char *options)
1221{
1222 int error = 0;
1223 struct xfs_mount *tmp_mp;
1224
1225 tmp_mp = kmem_zalloc(sizeof(*tmp_mp), KM_MAYFAIL);
1226 if (!tmp_mp)
1227 return -ENOMEM;
1228
1229 tmp_mp->m_super = sb;
1230 error = xfs_parseargs(tmp_mp, options);
1231 xfs_free_fsname(tmp_mp);
Pan Bian6c3705902017-09-02 09:54:23 -07001232 kmem_free(tmp_mp);
Eric Sandeena08ee402016-03-02 09:56:31 +11001233
1234 return error;
1235}
1236
1237STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001238xfs_fs_remount(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 struct super_block *sb,
1240 int *flags,
1241 char *options)
1242{
Christoph Hellwig745f6912007-08-30 17:20:39 +10001243 struct xfs_mount *mp = XFS_M(sb);
Eric Sandeen9de67c32014-07-24 20:51:54 +10001244 xfs_sb_t *sbp = &mp->m_sb;
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001245 substring_t args[MAX_OPT_ARGS];
1246 char *p;
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001247 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
Eric Sandeena08ee402016-03-02 09:56:31 +11001249 /* First, check for complete junk; i.e. invalid options */
Eric Sandeena1f69412018-04-06 10:09:42 -07001250 error = xfs_test_remount_options(sb, options);
Eric Sandeena08ee402016-03-02 09:56:31 +11001251 if (error)
1252 return error;
1253
Theodore Ts'o02b99842014-03-13 10:14:33 -04001254 sync_filesystem(sb);
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001255 while ((p = strsep(&options, ",")) != NULL) {
1256 int token;
Christoph Hellwigbdd907b2008-05-20 15:10:44 +10001257
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001258 if (!*p)
1259 continue;
Christoph Hellwig48b62a12008-05-20 11:30:39 +10001260
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001261 token = match_token(p, tokens, args);
1262 switch (token) {
Carlos Maiolinoc3a58fe2012-08-17 18:19:38 -03001263 case Opt_inode64:
Eric Sandeen12c3f052016-03-02 09:58:09 +11001264 mp->m_flags &= ~XFS_MOUNT_SMALL_INUMS;
1265 mp->m_maxagi = xfs_set_inode_alloc(mp, sbp->sb_agcount);
Carlos Maiolinoc3a58fe2012-08-17 18:19:38 -03001266 break;
Carlos Maiolino2ea03922012-09-20 10:32:41 -03001267 case Opt_inode32:
Eric Sandeen12c3f052016-03-02 09:58:09 +11001268 mp->m_flags |= XFS_MOUNT_SMALL_INUMS;
1269 mp->m_maxagi = xfs_set_inode_alloc(mp, sbp->sb_agcount);
Carlos Maiolino2ea03922012-09-20 10:32:41 -03001270 break;
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001271 default:
Christoph Hellwig6efdf282008-09-17 16:49:33 +10001272 /*
1273 * Logically we would return an error here to prevent
1274 * users from believing they might have changed
1275 * mount options using remount which can't be changed.
1276 *
1277 * But unfortunately mount(8) adds all options from
1278 * mtab and fstab to the mount arguments in some cases
1279 * so we can't blindly reject options, but have to
1280 * check for each specified option if it actually
1281 * differs from the currently set option and only
1282 * reject it if that's the case.
1283 *
1284 * Until that is implemented we return success for
1285 * every remount request, and silently ignore all
1286 * options that we can't actually change.
1287 */
1288#if 0
Dave Chinner4f107002011-03-07 10:00:35 +11001289 xfs_info(mp,
Eric Sandeen08e96e12013-10-11 20:59:05 -05001290 "mount option \"%s\" not supported for remount", p);
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001291 return -EINVAL;
Christoph Hellwig6efdf282008-09-17 16:49:33 +10001292#else
Christoph Hellwig6c5e51d2008-10-12 14:30:44 +02001293 break;
Christoph Hellwig6efdf282008-09-17 16:49:33 +10001294#endif
Christoph Hellwig48b62a12008-05-20 11:30:39 +10001295 }
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001296 }
1297
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001298 /* ro -> rw */
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001299 if ((mp->m_flags & XFS_MOUNT_RDONLY) && !(*flags & SB_RDONLY)) {
Eric Sandeenbbe051c2015-04-13 11:25:41 +10001300 if (mp->m_flags & XFS_MOUNT_NORECOVERY) {
1301 xfs_warn(mp,
1302 "ro->rw transition prohibited on norecovery mount");
1303 return -EINVAL;
1304 }
1305
Eric Sandeend0a58e82016-04-06 07:05:41 +10001306 if (XFS_SB_VERSION_NUM(sbp) == XFS_SB_VERSION_5 &&
1307 xfs_sb_has_ro_compat_feature(sbp,
1308 XFS_SB_FEAT_RO_COMPAT_UNKNOWN)) {
1309 xfs_warn(mp,
1310"ro->rw transition prohibited on unknown (0x%x) ro-compat filesystem",
1311 (sbp->sb_features_ro_compat &
1312 XFS_SB_FEAT_RO_COMPAT_UNKNOWN));
1313 return -EINVAL;
1314 }
1315
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001316 mp->m_flags &= ~XFS_MOUNT_RDONLY;
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001317
1318 /*
1319 * If this is the first remount to writeable state we
1320 * might have some superblock changes to update.
1321 */
Dave Chinner61e63ec2015-01-22 09:10:31 +11001322 if (mp->m_update_sb) {
1323 error = xfs_sync_sb(mp, false);
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001324 if (error) {
Dave Chinner4f107002011-03-07 10:00:35 +11001325 xfs_warn(mp, "failed to write sb changes");
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001326 return error;
1327 }
Dave Chinner61e63ec2015-01-22 09:10:31 +11001328 mp->m_update_sb = false;
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001329 }
Dave Chinnercbe132a2010-01-26 15:08:49 +11001330
1331 /*
1332 * Fill out the reserve pool if it is empty. Use the stashed
1333 * value if it is non-zero, otherwise go with the default.
1334 */
Eric Sandeend5db0f92010-02-05 22:59:53 +00001335 xfs_restore_resvblks(mp);
Dave Chinnerf661f1e2012-10-08 21:56:02 +11001336 xfs_log_work_queue(mp);
Darrick J. Wong174edb02016-10-03 09:11:39 -07001337
1338 /* Recover any CoW blocks that never got remapped. */
1339 error = xfs_reflink_recover_cow(mp);
1340 if (error) {
1341 xfs_err(mp,
1342 "Error %d recovering leftover CoW allocations.", error);
1343 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
1344 return error;
1345 }
Darrick J. Wongd6b636e2018-05-09 10:03:56 -07001346 xfs_icache_enable_reclaim(mp);
Darrick J. Wong84d69612016-10-03 09:11:44 -07001347
1348 /* Create the per-AG metadata reservation pool .*/
1349 error = xfs_fs_reserve_ag_blocks(mp);
1350 if (error && error != -ENOSPC)
1351 return error;
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001352 }
1353
1354 /* rw -> ro */
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001355 if (!(mp->m_flags & XFS_MOUNT_RDONLY) && (*flags & SB_RDONLY)) {
Darrick J. Wongd6b636e2018-05-09 10:03:56 -07001356 /*
1357 * Cancel background eofb scanning so it cannot race with the
1358 * final log force+buftarg wait and deadlock the remount.
1359 */
1360 xfs_icache_disable_reclaim(mp);
1361
Darrick J. Wong10ddf642017-12-14 15:46:05 -08001362 /* Get rid of any leftover CoW reservations... */
Darrick J. Wong10ddf642017-12-14 15:46:05 -08001363 error = xfs_icache_free_cowblocks(mp, NULL);
1364 if (error) {
1365 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
1366 return error;
1367 }
1368
Darrick J. Wong84d69612016-10-03 09:11:44 -07001369 /* Free the per-AG metadata reservation pool. */
1370 error = xfs_fs_unreserve_ag_blocks(mp);
1371 if (error) {
1372 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
1373 return error;
1374 }
1375
Dave Chinnercbe132a2010-01-26 15:08:49 +11001376 /*
Dave Chinner34061f52012-10-08 21:56:06 +11001377 * Before we sync the metadata, we need to free up the reserve
1378 * block pool so that the used block count in the superblock on
1379 * disk is correct at the end of the remount. Stash the current
1380 * reserve pool size so that if we get remounted rw, we can
1381 * return it to the same size.
Dave Chinnercbe132a2010-01-26 15:08:49 +11001382 */
Eric Sandeend5db0f92010-02-05 22:59:53 +00001383 xfs_save_resvblks(mp);
Brian Fosterfa5a4f52016-06-21 11:53:28 +10001384
David Chinner76bf1052008-10-30 17:16:21 +11001385 xfs_quiesce_attr(mp);
Christoph Hellwig48b62a12008-05-20 11:30:39 +10001386 mp->m_flags |= XFS_MOUNT_RDONLY;
1387 }
1388
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001389 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390}
1391
Christoph Hellwig9909c4a2007-10-11 18:11:14 +10001392/*
1393 * Second stage of a freeze. The data is already frozen so we only
Dave Chinner61e63ec2015-01-22 09:10:31 +11001394 * need to take care of the metadata. Once that's done sync the superblock
1395 * to the log to dirty it in case of a crash while frozen. This ensures that we
1396 * will recover the unlinked inode lists on the next mount.
Christoph Hellwig9909c4a2007-10-11 18:11:14 +10001397 */
Takashi Satoc4be0c12009-01-09 16:40:58 -08001398STATIC int
1399xfs_fs_freeze(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 struct super_block *sb)
1401{
Christoph Hellwig9909c4a2007-10-11 18:11:14 +10001402 struct xfs_mount *mp = XFS_M(sb);
1403
Darrick J. Wongd6b636e2018-05-09 10:03:56 -07001404 xfs_icache_disable_reclaim(mp);
Eric Sandeend5db0f92010-02-05 22:59:53 +00001405 xfs_save_resvblks(mp);
David Chinner76bf1052008-10-30 17:16:21 +11001406 xfs_quiesce_attr(mp);
Dave Chinner61e63ec2015-01-22 09:10:31 +11001407 return xfs_sync_sb(mp, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408}
1409
1410STATIC int
Eric Sandeend5db0f92010-02-05 22:59:53 +00001411xfs_fs_unfreeze(
1412 struct super_block *sb)
1413{
1414 struct xfs_mount *mp = XFS_M(sb);
1415
1416 xfs_restore_resvblks(mp);
Dave Chinnerf661f1e2012-10-08 21:56:02 +11001417 xfs_log_work_queue(mp);
Darrick J. Wongd6b636e2018-05-09 10:03:56 -07001418 xfs_icache_enable_reclaim(mp);
Eric Sandeend5db0f92010-02-05 22:59:53 +00001419 return 0;
1420}
1421
1422STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001423xfs_fs_show_options(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 struct seq_file *m,
Al Viro34c80b12011-12-08 21:32:45 -05001425 struct dentry *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426{
Dave Chinner24513372014-06-25 14:58:08 +10001427 return xfs_showargs(XFS_M(root->d_sb), m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428}
1429
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001430/*
1431 * This function fills in xfs_mount_t fields based on mount args.
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001432 * Note: the superblock _has_ now been read in.
1433 */
1434STATIC int
1435xfs_finish_flags(
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001436 struct xfs_mount *mp)
1437{
1438 int ronly = (mp->m_flags & XFS_MOUNT_RDONLY);
1439
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02001440 /* Fail a mount where the logbuf is smaller than the log stripe */
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001441 if (xfs_sb_version_haslogv2(&mp->m_sb)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001442 if (mp->m_logbsize <= 0 &&
1443 mp->m_sb.sb_logsunit > XLOG_BIG_RECORD_BSIZE) {
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001444 mp->m_logbsize = mp->m_sb.sb_logsunit;
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001445 } else if (mp->m_logbsize > 0 &&
1446 mp->m_logbsize < mp->m_sb.sb_logsunit) {
Dave Chinner4f107002011-03-07 10:00:35 +11001447 xfs_warn(mp,
1448 "logbuf size must be greater than or equal to log stripe size");
Dave Chinner24513372014-06-25 14:58:08 +10001449 return -EINVAL;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001450 }
1451 } else {
1452 /* Fail a mount if the logbuf is larger than 32K */
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001453 if (mp->m_logbsize > XLOG_BIG_RECORD_BSIZE) {
Dave Chinner4f107002011-03-07 10:00:35 +11001454 xfs_warn(mp,
1455 "logbuf size for version 1 logs must be 16K or 32K");
Dave Chinner24513372014-06-25 14:58:08 +10001456 return -EINVAL;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001457 }
1458 }
1459
1460 /*
Dave Chinnerd3eaace2013-06-05 12:09:09 +10001461 * V5 filesystems always use attr2 format for attributes.
1462 */
1463 if (xfs_sb_version_hascrc(&mp->m_sb) &&
1464 (mp->m_flags & XFS_MOUNT_NOATTR2)) {
Eric Sandeen2e74af02016-03-02 09:55:38 +11001465 xfs_warn(mp, "Cannot mount a V5 filesystem as noattr2. "
1466 "attr2 is always enabled for V5 filesystems.");
Dave Chinner24513372014-06-25 14:58:08 +10001467 return -EINVAL;
Dave Chinnerd3eaace2013-06-05 12:09:09 +10001468 }
1469
1470 /*
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001471 * mkfs'ed attr2 will turn on attr2 mount unless explicitly
1472 * told by noattr2 to turn it off
1473 */
1474 if (xfs_sb_version_hasattr2(&mp->m_sb) &&
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001475 !(mp->m_flags & XFS_MOUNT_NOATTR2))
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001476 mp->m_flags |= XFS_MOUNT_ATTR2;
1477
1478 /*
1479 * prohibit r/w mounts of read-only filesystems
1480 */
1481 if ((mp->m_sb.sb_flags & XFS_SBF_READONLY) && !ronly) {
Dave Chinner4f107002011-03-07 10:00:35 +11001482 xfs_warn(mp,
1483 "cannot mount a read-only filesystem as read-write");
Dave Chinner24513372014-06-25 14:58:08 +10001484 return -EROFS;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001485 }
1486
Chandra Seetharamand892d582013-07-19 17:36:02 -05001487 if ((mp->m_qflags & (XFS_GQUOTA_ACCT | XFS_GQUOTA_ACTIVE)) &&
1488 (mp->m_qflags & (XFS_PQUOTA_ACCT | XFS_PQUOTA_ACTIVE)) &&
1489 !xfs_sb_version_has_pquotino(&mp->m_sb)) {
1490 xfs_warn(mp,
1491 "Super block does not support project and group quota together");
Dave Chinner24513372014-06-25 14:58:08 +10001492 return -EINVAL;
Chandra Seetharamand892d582013-07-19 17:36:02 -05001493 }
1494
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001495 return 0;
1496}
1497
Dave Chinner5681ca42015-02-23 21:22:31 +11001498static int
1499xfs_init_percpu_counters(
1500 struct xfs_mount *mp)
1501{
1502 int error;
1503
1504 error = percpu_counter_init(&mp->m_icount, 0, GFP_KERNEL);
1505 if (error)
Joe Perches5e9383f2015-03-25 15:00:24 +11001506 return -ENOMEM;
Dave Chinner5681ca42015-02-23 21:22:31 +11001507
1508 error = percpu_counter_init(&mp->m_ifree, 0, GFP_KERNEL);
1509 if (error)
1510 goto free_icount;
1511
1512 error = percpu_counter_init(&mp->m_fdblocks, 0, GFP_KERNEL);
1513 if (error)
1514 goto free_ifree;
1515
1516 return 0;
1517
1518free_ifree:
1519 percpu_counter_destroy(&mp->m_ifree);
1520free_icount:
1521 percpu_counter_destroy(&mp->m_icount);
1522 return -ENOMEM;
1523}
1524
1525void
1526xfs_reinit_percpu_counters(
1527 struct xfs_mount *mp)
1528{
1529 percpu_counter_set(&mp->m_icount, mp->m_sb.sb_icount);
1530 percpu_counter_set(&mp->m_ifree, mp->m_sb.sb_ifree);
1531 percpu_counter_set(&mp->m_fdblocks, mp->m_sb.sb_fdblocks);
1532}
1533
1534static void
1535xfs_destroy_percpu_counters(
1536 struct xfs_mount *mp)
1537{
1538 percpu_counter_destroy(&mp->m_icount);
1539 percpu_counter_destroy(&mp->m_ifree);
1540 percpu_counter_destroy(&mp->m_fdblocks);
1541}
1542
Brian Foster72c44e32018-03-23 17:54:32 -07001543static struct xfs_mount *
1544xfs_mount_alloc(
1545 struct super_block *sb)
1546{
1547 struct xfs_mount *mp;
1548
1549 mp = kzalloc(sizeof(struct xfs_mount), GFP_KERNEL);
1550 if (!mp)
1551 return NULL;
1552
1553 mp->m_super = sb;
1554 spin_lock_init(&mp->m_sb_lock);
1555 spin_lock_init(&mp->m_agirotor_lock);
1556 INIT_RADIX_TREE(&mp->m_perag_tree, GFP_ATOMIC);
1557 spin_lock_init(&mp->m_perag_lock);
1558 mutex_init(&mp->m_growlock);
1559 atomic_set(&mp->m_active_trans, 0);
1560 INIT_DELAYED_WORK(&mp->m_reclaim_work, xfs_reclaim_worker);
1561 INIT_DELAYED_WORK(&mp->m_eofblocks_work, xfs_eofblocks_worker);
1562 INIT_DELAYED_WORK(&mp->m_cowblocks_work, xfs_cowblocks_worker);
1563 mp->m_kobj.kobject.kset = xfs_kset;
1564 return mp;
1565}
1566
1567
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001569xfs_fs_fill_super(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 struct super_block *sb,
1571 void *data,
1572 int silent)
1573{
Christoph Hellwigf3dcc132008-03-27 18:00:54 +11001574 struct inode *root;
Christoph Hellwig745f6912007-08-30 17:20:39 +10001575 struct xfs_mount *mp = NULL;
Dave Chinner24513372014-06-25 14:58:08 +10001576 int flags = 0, error = -ENOMEM;
Christoph Hellwigbdd907b2008-05-20 15:10:44 +10001577
Brian Foster72c44e32018-03-23 17:54:32 -07001578 /*
1579 * allocate mp and do all low-level struct initializations before we
1580 * attach it to the super
1581 */
1582 mp = xfs_mount_alloc(sb);
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001583 if (!mp)
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001584 goto out;
Christoph Hellwigb267ce92007-08-30 17:21:30 +10001585 sb->s_fs_info = mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586
Christoph Hellwig288699f2010-06-23 18:11:15 +10001587 error = xfs_parseargs(mp, (char *)data);
Christoph Hellwig745f6912007-08-30 17:20:39 +10001588 if (error)
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001589 goto out_free_fsname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590
1591 sb_min_blocksize(sb, BBSIZE);
Lachlan McIlroy0ec58512008-06-23 13:23:01 +10001592 sb->s_xattr = xfs_xattr_handlers;
Nathan Scotta50cd262006-03-14 14:06:18 +11001593 sb->s_export_op = &xfs_export_operations;
Christoph Hellwigfcafb712009-02-09 08:47:34 +01001594#ifdef CONFIG_XFS_QUOTA
Nathan Scotta50cd262006-03-14 14:06:18 +11001595 sb->s_qcop = &xfs_quotactl_operations;
Jan Kara17ef4fd2014-09-30 22:35:33 +02001596 sb->s_quota_types = QTYPE_MASK_USR | QTYPE_MASK_GRP | QTYPE_MASK_PRJ;
Christoph Hellwigfcafb712009-02-09 08:47:34 +01001597#endif
Nathan Scotta50cd262006-03-14 14:06:18 +11001598 sb->s_op = &xfs_super_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599
Dave Chinnerdae5cd82018-05-10 21:50:23 -07001600 /*
1601 * Delay mount work if the debug hook is set. This is debug
1602 * instrumention to coordinate simulation of xfs mount failures with
1603 * VFS superblock operations
1604 */
1605 if (xfs_globals.mount_delay) {
1606 xfs_notice(mp, "Delaying mount for %d seconds.",
1607 xfs_globals.mount_delay);
1608 msleep(xfs_globals.mount_delay * 1000);
1609 }
1610
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001611 if (silent)
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001612 flags |= XFS_MFSI_QUIET;
1613
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001614 error = xfs_open_devices(mp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001615 if (error)
Christoph Hellwig288699f2010-06-23 18:11:15 +10001616 goto out_free_fsname;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001617
Dave Chinner24513372014-06-25 14:58:08 +10001618 error = xfs_init_mount_workqueues(mp);
Christoph Hellwig61ba35d2010-09-30 02:25:54 +00001619 if (error)
1620 goto out_close_devices;
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001621
Dave Chinner5681ca42015-02-23 21:22:31 +11001622 error = xfs_init_percpu_counters(mp);
Christoph Hellwigaa6bf012012-02-29 09:53:48 +00001623 if (error)
1624 goto out_destroy_workqueues;
1625
Bill O'Donnell225e4632015-10-12 18:21:19 +11001626 /* Allocate stats memory before we do operations that might use it */
1627 mp->m_stats.xs_stats = alloc_percpu(struct xfsstats);
1628 if (!mp->m_stats.xs_stats) {
Dan Carpenterf9d460b2015-10-19 08:42:47 +11001629 error = -ENOMEM;
Bill O'Donnell225e4632015-10-12 18:21:19 +11001630 goto out_destroy_counters;
1631 }
1632
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001633 error = xfs_readsb(mp, flags);
1634 if (error)
Bill O'Donnell225e4632015-10-12 18:21:19 +11001635 goto out_free_stats;
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001636
1637 error = xfs_finish_flags(mp);
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001638 if (error)
Christoph Hellwigeffa2ed2008-05-20 15:11:05 +10001639 goto out_free_sb;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001640
Christoph Hellwige34b5622008-05-20 15:10:36 +10001641 error = xfs_setup_devices(mp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001642 if (error)
Christoph Hellwigeffa2ed2008-05-20 15:11:05 +10001643 goto out_free_sb;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001644
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001645 error = xfs_filestream_mount(mp);
1646 if (error)
Christoph Hellwigeffa2ed2008-05-20 15:11:05 +10001647 goto out_free_sb;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001648
Dave Chinner704b2902011-03-26 09:14:57 +11001649 /*
1650 * we must configure the block size in the superblock before we run the
1651 * full mount process as the mount process can lookup and cache inodes.
Dave Chinner704b2902011-03-26 09:14:57 +11001652 */
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001653 sb->s_magic = XFS_SB_MAGIC;
1654 sb->s_blocksize = mp->m_sb.sb_blocksize;
1655 sb->s_blocksize_bits = ffs(sb->s_blocksize) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 sb->s_maxbytes = xfs_max_file_offset(sb->s_blocksize_bits);
Al Viro8de52772012-02-06 12:45:27 -05001657 sb->s_max_links = XFS_MAXLINK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 sb->s_time_gran = 1;
1659 set_posix_acl_flag(sb);
1660
Dave Chinnerdc037ad2013-06-27 16:04:59 +10001661 /* version 5 superblocks support inode version counters. */
1662 if (XFS_SB_VERSION_NUM(&mp->m_sb) == XFS_SB_VERSION_5)
Matthew Garrett357fdad2017-10-18 13:56:26 -07001663 sb->s_flags |= SB_I_VERSION;
Dave Chinnerdc037ad2013-06-27 16:04:59 +10001664
Dave Chinnercbe4dab2015-06-04 09:19:18 +10001665 if (mp->m_flags & XFS_MOUNT_DAX) {
Dave Jiang80660f22018-05-30 13:03:46 -07001666 bool rtdev_is_dax = false, datadev_is_dax;
Darrick J. Wongba23cba2018-05-30 13:03:45 -07001667
Dave Chinnercbe4dab2015-06-04 09:19:18 +10001668 xfs_warn(mp,
Toshi Kani1e937cd2016-05-10 10:23:56 -06001669 "DAX enabled. Warning: EXPERIMENTAL, use at your own risk");
1670
Dave Jiang80660f22018-05-30 13:03:46 -07001671 datadev_is_dax = bdev_dax_supported(mp->m_ddev_targp->bt_bdev,
1672 sb->s_blocksize);
Darrick J. Wongba23cba2018-05-30 13:03:45 -07001673 if (mp->m_rtdev_targp)
Dave Jiang80660f22018-05-30 13:03:46 -07001674 rtdev_is_dax = bdev_dax_supported(
1675 mp->m_rtdev_targp->bt_bdev, sb->s_blocksize);
1676 if (!rtdev_is_dax && !datadev_is_dax) {
Dave Chinnercbe4dab2015-06-04 09:19:18 +10001677 xfs_alert(mp,
Toshi Kani1e937cd2016-05-10 10:23:56 -06001678 "DAX unsupported by block device. Turning off DAX.");
Dave Chinnercbe4dab2015-06-04 09:19:18 +10001679 mp->m_flags &= ~XFS_MOUNT_DAX;
1680 }
Darrick J. Wongb6e03c12018-01-31 14:21:56 -08001681 if (xfs_sb_version_hasreflink(&mp->m_sb)) {
Darrick J. Wonge54b5bf2016-10-03 09:11:52 -07001682 xfs_alert(mp,
Christoph Hellwig1e369b02018-01-08 13:30:08 -08001683 "DAX and reflink cannot be used together!");
Darrick J. Wongb6e03c12018-01-31 14:21:56 -08001684 error = -EINVAL;
1685 goto out_filestream_unmount;
1686 }
Dave Chinnercbe4dab2015-06-04 09:19:18 +10001687 }
1688
Kenjiro Nakayama1e6fa682017-09-18 12:03:56 -07001689 if (mp->m_flags & XFS_MOUNT_DISCARD) {
1690 struct request_queue *q = bdev_get_queue(sb->s_bdev);
1691
1692 if (!blk_queue_discard(q)) {
1693 xfs_warn(mp, "mounting with \"discard\" option, but "
1694 "the device does not support discard");
1695 mp->m_flags &= ~XFS_MOUNT_DISCARD;
1696 }
1697 }
1698
Darrick J. Wongc14632d2018-01-31 16:38:18 -08001699 if (xfs_sb_version_hasreflink(&mp->m_sb) && mp->m_sb.sb_rblocks) {
1700 xfs_alert(mp,
1701 "reflink not compatible with realtime device!");
1702 error = -EINVAL;
1703 goto out_filestream_unmount;
1704 }
1705
Darrick J. Wong76883f72018-01-31 09:47:25 -08001706 if (xfs_sb_version_hasrmapbt(&mp->m_sb) && mp->m_sb.sb_rblocks) {
Darrick J. Wong1c0607a2016-08-03 12:20:57 +10001707 xfs_alert(mp,
Darrick J. Wong76883f72018-01-31 09:47:25 -08001708 "reverse mapping btree not compatible with realtime device!");
1709 error = -EINVAL;
1710 goto out_filestream_unmount;
Darrick J. Wong738f57c2016-08-26 15:59:19 +10001711 }
Darrick J. Wong1c0607a2016-08-03 12:20:57 +10001712
Dave Chinner8a00ebe2012-04-13 12:10:44 +00001713 error = xfs_mountfs(mp);
Christoph Hellwig2bcf6e92011-07-13 13:43:48 +02001714 if (error)
Dave Chinner7e185302012-10-08 21:56:00 +11001715 goto out_filestream_unmount;
Dave Chinner704b2902011-03-26 09:14:57 +11001716
David Chinner01651642008-08-13 15:45:15 +10001717 root = igrab(VFS_I(mp->m_rootip));
Christoph Hellwigf3dcc132008-03-27 18:00:54 +11001718 if (!root) {
Dave Chinner24513372014-06-25 14:58:08 +10001719 error = -ENOENT;
Dave Chinner8a00ebe2012-04-13 12:10:44 +00001720 goto out_unmount;
Christoph Hellwigcbc89dc2008-02-05 12:14:01 +11001721 }
Al Viro48fde702012-01-08 22:15:13 -05001722 sb->s_root = d_make_root(root);
Christoph Hellwigf3dcc132008-03-27 18:00:54 +11001723 if (!sb->s_root) {
Dave Chinner24513372014-06-25 14:58:08 +10001724 error = -ENOMEM;
Dave Chinner8a00ebe2012-04-13 12:10:44 +00001725 goto out_unmount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 }
Christoph Hellwig74394492007-08-30 17:21:22 +10001727
Dave Chinner7e185302012-10-08 21:56:00 +11001728 return 0;
1729
1730 out_filestream_unmount:
Christoph Hellwig120226c2008-05-20 15:11:11 +10001731 xfs_filestream_unmount(mp);
Christoph Hellwigeffa2ed2008-05-20 15:11:05 +10001732 out_free_sb:
1733 xfs_freesb(mp);
Bill O'Donnell225e4632015-10-12 18:21:19 +11001734 out_free_stats:
1735 free_percpu(mp->m_stats.xs_stats);
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001736 out_destroy_counters:
Dave Chinner5681ca42015-02-23 21:22:31 +11001737 xfs_destroy_percpu_counters(mp);
Bill O'Donnell225e4632015-10-12 18:21:19 +11001738 out_destroy_workqueues:
Christoph Hellwigaa6bf012012-02-29 09:53:48 +00001739 xfs_destroy_mount_workqueues(mp);
Christoph Hellwig61ba35d2010-09-30 02:25:54 +00001740 out_close_devices:
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001741 xfs_close_devices(mp);
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001742 out_free_fsname:
Dave Chinnerc9fbd7b2018-05-10 21:50:23 -07001743 sb->s_fs_info = NULL;
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001744 xfs_free_fsname(mp);
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001745 kfree(mp);
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001746 out:
Dave Chinner24513372014-06-25 14:58:08 +10001747 return error;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001748
Christoph Hellwig2bcf6e92011-07-13 13:43:48 +02001749 out_unmount:
Christoph Hellwige48ad312008-05-20 11:30:52 +10001750 xfs_filestream_unmount(mp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001751 xfs_unmountfs(mp);
Christoph Hellwig62033002008-08-13 16:50:21 +10001752 goto out_free_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753}
1754
Dave Chinner5681ca42015-02-23 21:22:31 +11001755STATIC void
1756xfs_fs_put_super(
1757 struct super_block *sb)
1758{
1759 struct xfs_mount *mp = XFS_M(sb);
1760
Dave Chinnerc9fbd7b2018-05-10 21:50:23 -07001761 /* if ->fill_super failed, we have no mount to tear down */
1762 if (!sb->s_fs_info)
1763 return;
1764
Dave Chinner42254412015-02-24 10:27:28 +11001765 xfs_notice(mp, "Unmounting Filesystem");
Dave Chinner5681ca42015-02-23 21:22:31 +11001766 xfs_filestream_unmount(mp);
1767 xfs_unmountfs(mp);
1768
1769 xfs_freesb(mp);
Bill O'Donnell225e4632015-10-12 18:21:19 +11001770 free_percpu(mp->m_stats.xs_stats);
Dave Chinner5681ca42015-02-23 21:22:31 +11001771 xfs_destroy_percpu_counters(mp);
1772 xfs_destroy_mount_workqueues(mp);
1773 xfs_close_devices(mp);
Dave Chinnerc9fbd7b2018-05-10 21:50:23 -07001774
1775 sb->s_fs_info = NULL;
Dave Chinner5681ca42015-02-23 21:22:31 +11001776 xfs_free_fsname(mp);
1777 kfree(mp);
1778}
1779
Al Viro152a0832010-07-25 00:46:55 +04001780STATIC struct dentry *
1781xfs_fs_mount(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 struct file_system_type *fs_type,
1783 int flags,
1784 const char *dev_name,
Al Viro152a0832010-07-25 00:46:55 +04001785 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786{
Al Viro152a0832010-07-25 00:46:55 +04001787 return mount_bdev(fs_type, flags, dev_name, data, xfs_fs_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788}
1789
Dave Chinner0a234c62013-08-28 10:17:57 +10001790static long
Dave Chinner8daaa832011-07-08 14:14:46 +10001791xfs_fs_nr_cached_objects(
Dave Chinner9b17c622013-08-28 10:18:05 +10001792 struct super_block *sb,
Vladimir Davydov4101b622015-02-12 14:58:51 -08001793 struct shrink_control *sc)
Dave Chinner8daaa832011-07-08 14:14:46 +10001794{
Dave Chinnerc9fbd7b2018-05-10 21:50:23 -07001795 /* Paranoia: catch incorrect calls during mount setup or teardown */
1796 if (WARN_ON_ONCE(!sb->s_fs_info))
1797 return 0;
Dave Chinner8daaa832011-07-08 14:14:46 +10001798 return xfs_reclaim_inodes_count(XFS_M(sb));
1799}
1800
Dave Chinner0a234c62013-08-28 10:17:57 +10001801static long
Dave Chinner8daaa832011-07-08 14:14:46 +10001802xfs_fs_free_cached_objects(
1803 struct super_block *sb,
Vladimir Davydov4101b622015-02-12 14:58:51 -08001804 struct shrink_control *sc)
Dave Chinner8daaa832011-07-08 14:14:46 +10001805{
Vladimir Davydov4101b622015-02-12 14:58:51 -08001806 return xfs_reclaim_inodes_nr(XFS_M(sb), sc->nr_to_scan);
Dave Chinner8daaa832011-07-08 14:14:46 +10001807}
1808
Alexey Dobriyanb87221d2009-09-21 17:01:09 -07001809static const struct super_operations xfs_super_operations = {
Nathan Scotta50cd262006-03-14 14:06:18 +11001810 .alloc_inode = xfs_fs_alloc_inode,
1811 .destroy_inode = xfs_fs_destroy_inode,
Christoph Hellwigc3b1b132018-03-06 17:04:00 -08001812 .dirty_inode = xfs_fs_dirty_inode,
Dave Chinner5132ba82012-03-22 05:15:10 +00001813 .drop_inode = xfs_fs_drop_inode,
Nathan Scotta50cd262006-03-14 14:06:18 +11001814 .put_super = xfs_fs_put_super,
Christoph Hellwig69961a22009-10-06 20:29:28 +00001815 .sync_fs = xfs_fs_sync_fs,
Takashi Satoc4be0c12009-01-09 16:40:58 -08001816 .freeze_fs = xfs_fs_freeze,
Eric Sandeend5db0f92010-02-05 22:59:53 +00001817 .unfreeze_fs = xfs_fs_unfreeze,
Nathan Scotta50cd262006-03-14 14:06:18 +11001818 .statfs = xfs_fs_statfs,
1819 .remount_fs = xfs_fs_remount,
1820 .show_options = xfs_fs_show_options,
Dave Chinner8daaa832011-07-08 14:14:46 +10001821 .nr_cached_objects = xfs_fs_nr_cached_objects,
1822 .free_cached_objects = xfs_fs_free_cached_objects,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823};
1824
Andrew Morton5085b602007-02-20 13:57:47 -08001825static struct file_system_type xfs_fs_type = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 .owner = THIS_MODULE,
1827 .name = "xfs",
Al Viro152a0832010-07-25 00:46:55 +04001828 .mount = xfs_fs_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 .kill_sb = kill_block_super,
1830 .fs_flags = FS_REQUIRES_DEV,
1831};
Eric W. Biederman7f78e032013-03-02 19:39:14 -08001832MODULE_ALIAS_FS("xfs");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001834STATIC int __init
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001835xfs_init_zones(void)
1836{
Christoph Hellwig82cb1412018-07-11 22:26:05 -07001837 if (bioset_init(&xfs_ioend_bioset, 4 * (PAGE_SIZE / SECTOR_SIZE),
NeilBrown011067b2017-06-18 14:38:57 +10001838 offsetof(struct xfs_ioend, io_inline_bio),
Kent Overstreete292d7b2018-05-20 18:25:57 -04001839 BIOSET_NEED_BVECS))
David Chinnerbf904242008-10-30 17:36:14 +11001840 goto out;
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001841
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001842 xfs_log_ticket_zone = kmem_zone_init(sizeof(xlog_ticket_t),
1843 "xfs_log_ticket");
1844 if (!xfs_log_ticket_zone)
Christoph Hellwig0e51a8e2016-04-06 08:34:30 +10001845 goto out_free_ioend_bioset;
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001846
Darrick J. Wonge66a4c62016-06-21 11:53:28 +10001847 xfs_bmap_free_item_zone = kmem_zone_init(
Darrick J. Wong310a75a2016-08-03 11:18:10 +10001848 sizeof(struct xfs_extent_free_item),
Darrick J. Wonge66a4c62016-06-21 11:53:28 +10001849 "xfs_bmap_free_item");
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001850 if (!xfs_bmap_free_item_zone)
1851 goto out_destroy_log_ticket_zone;
David Chinnerbf904242008-10-30 17:36:14 +11001852
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001853 xfs_btree_cur_zone = kmem_zone_init(sizeof(xfs_btree_cur_t),
1854 "xfs_btree_cur");
1855 if (!xfs_btree_cur_zone)
1856 goto out_destroy_bmap_free_item_zone;
1857
1858 xfs_da_state_zone = kmem_zone_init(sizeof(xfs_da_state_t),
1859 "xfs_da_state");
1860 if (!xfs_da_state_zone)
1861 goto out_destroy_btree_cur_zone;
1862
Christoph Hellwig3ba738d2018-07-17 16:51:50 -07001863 xfs_ifork_zone = kmem_zone_init(sizeof(struct xfs_ifork), "xfs_ifork");
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001864 if (!xfs_ifork_zone)
Dave Chinner1d9025e2012-06-22 18:50:14 +10001865 goto out_destroy_da_state_zone;
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001866
1867 xfs_trans_zone = kmem_zone_init(sizeof(xfs_trans_t), "xfs_trans");
1868 if (!xfs_trans_zone)
1869 goto out_destroy_ifork_zone;
1870
Christoph Hellwige98c4142010-06-23 18:11:15 +10001871
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001872 /*
1873 * The size of the zone allocated buf log item is the maximum
1874 * size possible under XFS. This wastes a little bit of memory,
1875 * but it is much faster.
1876 */
Dave Chinner77c1a082012-06-22 18:50:07 +10001877 xfs_buf_item_zone = kmem_zone_init(sizeof(struct xfs_buf_log_item),
1878 "xfs_buf_item");
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001879 if (!xfs_buf_item_zone)
Dave Chinnere6631f82018-05-09 07:49:37 -07001880 goto out_destroy_trans_zone;
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001881
1882 xfs_efd_zone = kmem_zone_init((sizeof(xfs_efd_log_item_t) +
1883 ((XFS_EFD_MAX_FAST_EXTENTS - 1) *
1884 sizeof(xfs_extent_t))), "xfs_efd_item");
1885 if (!xfs_efd_zone)
1886 goto out_destroy_buf_item_zone;
1887
1888 xfs_efi_zone = kmem_zone_init((sizeof(xfs_efi_log_item_t) +
1889 ((XFS_EFI_MAX_FAST_EXTENTS - 1) *
1890 sizeof(xfs_extent_t))), "xfs_efi_item");
1891 if (!xfs_efi_zone)
1892 goto out_destroy_efd_zone;
1893
1894 xfs_inode_zone =
1895 kmem_zone_init_flags(sizeof(xfs_inode_t), "xfs_inode",
Vladimir Davydov5d097052016-01-14 15:18:21 -08001896 KM_ZONE_HWALIGN | KM_ZONE_RECLAIM | KM_ZONE_SPREAD |
1897 KM_ZONE_ACCOUNT, xfs_fs_inode_init_once);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001898 if (!xfs_inode_zone)
1899 goto out_destroy_efi_zone;
1900
1901 xfs_ili_zone =
1902 kmem_zone_init_flags(sizeof(xfs_inode_log_item_t), "xfs_ili",
1903 KM_ZONE_SPREAD, NULL);
1904 if (!xfs_ili_zone)
1905 goto out_destroy_inode_zone;
Dave Chinner3ebe7d22013-06-27 16:04:53 +10001906 xfs_icreate_zone = kmem_zone_init(sizeof(struct xfs_icreate_item),
1907 "xfs_icr");
1908 if (!xfs_icreate_zone)
1909 goto out_destroy_ili_zone;
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001910
Darrick J. Wong722e2512016-08-03 12:28:43 +10001911 xfs_rud_zone = kmem_zone_init(sizeof(struct xfs_rud_log_item),
Darrick J. Wong5880f2d72016-08-03 12:04:45 +10001912 "xfs_rud_item");
1913 if (!xfs_rud_zone)
1914 goto out_destroy_icreate_zone;
1915
Darrick J. Wongcd001582016-09-19 10:24:27 +10001916 xfs_rui_zone = kmem_zone_init(
1917 xfs_rui_log_item_sizeof(XFS_RUI_MAX_FAST_EXTENTS),
Darrick J. Wong5880f2d72016-08-03 12:04:45 +10001918 "xfs_rui_item");
1919 if (!xfs_rui_zone)
1920 goto out_destroy_rud_zone;
1921
Darrick J. Wongbaf4bcac2016-10-03 09:11:20 -07001922 xfs_cud_zone = kmem_zone_init(sizeof(struct xfs_cud_log_item),
1923 "xfs_cud_item");
1924 if (!xfs_cud_zone)
1925 goto out_destroy_rui_zone;
1926
1927 xfs_cui_zone = kmem_zone_init(
1928 xfs_cui_log_item_sizeof(XFS_CUI_MAX_FAST_EXTENTS),
1929 "xfs_cui_item");
1930 if (!xfs_cui_zone)
1931 goto out_destroy_cud_zone;
1932
Darrick J. Wong6413a012016-10-03 09:11:25 -07001933 xfs_bud_zone = kmem_zone_init(sizeof(struct xfs_bud_log_item),
1934 "xfs_bud_item");
1935 if (!xfs_bud_zone)
1936 goto out_destroy_cui_zone;
1937
1938 xfs_bui_zone = kmem_zone_init(
1939 xfs_bui_log_item_sizeof(XFS_BUI_MAX_FAST_EXTENTS),
1940 "xfs_bui_item");
1941 if (!xfs_bui_zone)
1942 goto out_destroy_bud_zone;
1943
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001944 return 0;
1945
Darrick J. Wong6413a012016-10-03 09:11:25 -07001946 out_destroy_bud_zone:
1947 kmem_zone_destroy(xfs_bud_zone);
1948 out_destroy_cui_zone:
1949 kmem_zone_destroy(xfs_cui_zone);
Darrick J. Wongbaf4bcac2016-10-03 09:11:20 -07001950 out_destroy_cud_zone:
1951 kmem_zone_destroy(xfs_cud_zone);
1952 out_destroy_rui_zone:
1953 kmem_zone_destroy(xfs_rui_zone);
Darrick J. Wong5880f2d72016-08-03 12:04:45 +10001954 out_destroy_rud_zone:
1955 kmem_zone_destroy(xfs_rud_zone);
1956 out_destroy_icreate_zone:
1957 kmem_zone_destroy(xfs_icreate_zone);
Dave Chinner3ebe7d22013-06-27 16:04:53 +10001958 out_destroy_ili_zone:
1959 kmem_zone_destroy(xfs_ili_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001960 out_destroy_inode_zone:
1961 kmem_zone_destroy(xfs_inode_zone);
1962 out_destroy_efi_zone:
1963 kmem_zone_destroy(xfs_efi_zone);
1964 out_destroy_efd_zone:
1965 kmem_zone_destroy(xfs_efd_zone);
1966 out_destroy_buf_item_zone:
1967 kmem_zone_destroy(xfs_buf_item_zone);
1968 out_destroy_trans_zone:
1969 kmem_zone_destroy(xfs_trans_zone);
1970 out_destroy_ifork_zone:
1971 kmem_zone_destroy(xfs_ifork_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001972 out_destroy_da_state_zone:
1973 kmem_zone_destroy(xfs_da_state_zone);
1974 out_destroy_btree_cur_zone:
1975 kmem_zone_destroy(xfs_btree_cur_zone);
1976 out_destroy_bmap_free_item_zone:
1977 kmem_zone_destroy(xfs_bmap_free_item_zone);
1978 out_destroy_log_ticket_zone:
1979 kmem_zone_destroy(xfs_log_ticket_zone);
Christoph Hellwig0e51a8e2016-04-06 08:34:30 +10001980 out_free_ioend_bioset:
Kent Overstreete292d7b2018-05-20 18:25:57 -04001981 bioset_exit(&xfs_ioend_bioset);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001982 out:
1983 return -ENOMEM;
1984}
1985
1986STATIC void
1987xfs_destroy_zones(void)
1988{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +10001989 /*
1990 * Make sure all delayed rcu free are flushed before we
1991 * destroy caches.
1992 */
1993 rcu_barrier();
Darrick J. Wong6413a012016-10-03 09:11:25 -07001994 kmem_zone_destroy(xfs_bui_zone);
1995 kmem_zone_destroy(xfs_bud_zone);
Darrick J. Wongbaf4bcac2016-10-03 09:11:20 -07001996 kmem_zone_destroy(xfs_cui_zone);
1997 kmem_zone_destroy(xfs_cud_zone);
Darrick J. Wong5880f2d72016-08-03 12:04:45 +10001998 kmem_zone_destroy(xfs_rui_zone);
1999 kmem_zone_destroy(xfs_rud_zone);
Dave Chinner3ebe7d22013-06-27 16:04:53 +10002000 kmem_zone_destroy(xfs_icreate_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002001 kmem_zone_destroy(xfs_ili_zone);
2002 kmem_zone_destroy(xfs_inode_zone);
2003 kmem_zone_destroy(xfs_efi_zone);
2004 kmem_zone_destroy(xfs_efd_zone);
2005 kmem_zone_destroy(xfs_buf_item_zone);
2006 kmem_zone_destroy(xfs_trans_zone);
2007 kmem_zone_destroy(xfs_ifork_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002008 kmem_zone_destroy(xfs_da_state_zone);
2009 kmem_zone_destroy(xfs_btree_cur_zone);
2010 kmem_zone_destroy(xfs_bmap_free_item_zone);
2011 kmem_zone_destroy(xfs_log_ticket_zone);
Kent Overstreete292d7b2018-05-20 18:25:57 -04002012 bioset_exit(&xfs_ioend_bioset);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002013}
2014
2015STATIC int __init
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10002016xfs_init_workqueues(void)
2017{
2018 /*
Dave Chinnerc999a222012-03-22 05:15:07 +00002019 * The allocation workqueue can be used in memory reclaim situations
2020 * (writepage path), and parallelism is only limited by the number of
2021 * AGs in all the filesystems mounted. Hence use the default large
2022 * max_active value for this workqueue.
2023 */
Brian Foster8018ec02014-09-09 11:44:46 +10002024 xfs_alloc_wq = alloc_workqueue("xfsalloc",
2025 WQ_MEM_RECLAIM|WQ_FREEZABLE, 0);
Dave Chinnerc999a222012-03-22 05:15:07 +00002026 if (!xfs_alloc_wq)
Dave Chinner58896082012-10-08 21:56:05 +11002027 return -ENOMEM;
Dave Chinnerc999a222012-03-22 05:15:07 +00002028
Christoph Hellwig4560e782017-02-07 14:07:58 -08002029 xfs_discard_wq = alloc_workqueue("xfsdiscard", WQ_UNBOUND, 0);
2030 if (!xfs_discard_wq)
2031 goto out_free_alloc_wq;
2032
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10002033 return 0;
Christoph Hellwig4560e782017-02-07 14:07:58 -08002034out_free_alloc_wq:
2035 destroy_workqueue(xfs_alloc_wq);
2036 return -ENOMEM;
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10002037}
2038
Luck, Tony39411f82011-04-11 12:06:12 -07002039STATIC void
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10002040xfs_destroy_workqueues(void)
2041{
Christoph Hellwig4560e782017-02-07 14:07:58 -08002042 destroy_workqueue(xfs_discard_wq);
Dave Chinnerc999a222012-03-22 05:15:07 +00002043 destroy_workqueue(xfs_alloc_wq);
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10002044}
2045
2046STATIC int __init
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002047init_xfs_fs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048{
2049 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050
Darrick J. Wong30cbc592016-03-09 08:15:14 +11002051 xfs_check_ondisk_structs();
2052
Christoph Hellwig65795912008-11-28 14:23:33 +11002053 printk(KERN_INFO XFS_VERSION_STRING " with "
2054 XFS_BUILD_OPTIONS " enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055
Darrick J. Wong9749fee2016-08-03 11:14:35 +10002056 xfs_extent_free_init_defer_op();
Darrick J. Wongf8dbebe2016-08-03 12:11:01 +10002057 xfs_rmap_update_init_defer_op();
Darrick J. Wong33ba6122016-10-03 09:11:22 -07002058 xfs_refcount_update_init_defer_op();
Darrick J. Wong9f3afb52016-10-03 09:11:28 -07002059 xfs_bmap_update_init_defer_op();
Darrick J. Wong9749fee2016-08-03 11:14:35 +10002060
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002061 xfs_dir_startup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062
Nathan Scott87582802006-03-14 13:18:19 +11002063 error = xfs_init_zones();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002064 if (error)
2065 goto out;
2066
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10002067 error = xfs_init_workqueues();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002068 if (error)
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002069 goto out_destroy_zones;
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002070
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10002071 error = xfs_mru_cache_init();
2072 if (error)
2073 goto out_destroy_wq;
2074
Nathan Scottce8e9222006-01-11 15:39:08 +11002075 error = xfs_buf_init();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002076 if (error)
Christoph Hellwig1919add2014-04-23 07:11:51 +10002077 goto out_mru_cache_uninit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002079 error = xfs_init_procfs();
2080 if (error)
2081 goto out_buf_terminate;
2082
2083 error = xfs_sysctl_register();
2084 if (error)
2085 goto out_cleanup_procfs;
2086
Brian Foster3d871222014-07-15 07:41:37 +10002087 xfs_kset = kset_create_and_add("xfs", NULL, fs_kobj);
2088 if (!xfs_kset) {
2089 error = -ENOMEM;
Bill O'Donnellbb230c12015-10-12 05:15:45 +11002090 goto out_sysctl_unregister;
Brian Foster3d871222014-07-15 07:41:37 +10002091 }
2092
Bill O'Donnell80529c42015-10-12 05:19:45 +11002093 xfsstats.xs_kobj.kobject.kset = xfs_kset;
2094
2095 xfsstats.xs_stats = alloc_percpu(struct xfsstats);
2096 if (!xfsstats.xs_stats) {
2097 error = -ENOMEM;
2098 goto out_kset_unregister;
2099 }
2100
2101 error = xfs_sysfs_init(&xfsstats.xs_kobj, &xfs_stats_ktype, NULL,
Bill O'Donnellbb230c12015-10-12 05:15:45 +11002102 "stats");
2103 if (error)
Bill O'Donnell80529c42015-10-12 05:19:45 +11002104 goto out_free_stats;
Bill O'Donnellbb230c12015-10-12 05:15:45 +11002105
Brian Foster65b65732014-09-09 11:52:42 +10002106#ifdef DEBUG
2107 xfs_dbg_kobj.kobject.kset = xfs_kset;
2108 error = xfs_sysfs_init(&xfs_dbg_kobj, &xfs_dbg_ktype, NULL, "debug");
Christoph Hellwiga05931c2012-03-13 08:52:37 +00002109 if (error)
Bill O'Donnellbb230c12015-10-12 05:15:45 +11002110 goto out_remove_stats_kobj;
Brian Foster65b65732014-09-09 11:52:42 +10002111#endif
2112
2113 error = xfs_qm_init();
2114 if (error)
Bill O'Donnellbb230c12015-10-12 05:15:45 +11002115 goto out_remove_dbg_kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116
2117 error = register_filesystem(&xfs_fs_type);
2118 if (error)
Christoph Hellwiga05931c2012-03-13 08:52:37 +00002119 goto out_qm_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 return 0;
2121
Christoph Hellwiga05931c2012-03-13 08:52:37 +00002122 out_qm_exit:
2123 xfs_qm_exit();
Bill O'Donnellbb230c12015-10-12 05:15:45 +11002124 out_remove_dbg_kobj:
Brian Foster65b65732014-09-09 11:52:42 +10002125#ifdef DEBUG
2126 xfs_sysfs_del(&xfs_dbg_kobj);
Bill O'Donnellbb230c12015-10-12 05:15:45 +11002127 out_remove_stats_kobj:
Brian Foster65b65732014-09-09 11:52:42 +10002128#endif
Bill O'Donnell80529c42015-10-12 05:19:45 +11002129 xfs_sysfs_del(&xfsstats.xs_kobj);
2130 out_free_stats:
2131 free_percpu(xfsstats.xs_stats);
Bill O'Donnellbb230c12015-10-12 05:15:45 +11002132 out_kset_unregister:
Brian Foster3d871222014-07-15 07:41:37 +10002133 kset_unregister(xfs_kset);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002134 out_sysctl_unregister:
2135 xfs_sysctl_unregister();
2136 out_cleanup_procfs:
2137 xfs_cleanup_procfs();
2138 out_buf_terminate:
Nathan Scottce8e9222006-01-11 15:39:08 +11002139 xfs_buf_terminate();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002140 out_mru_cache_uninit:
2141 xfs_mru_cache_uninit();
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10002142 out_destroy_wq:
2143 xfs_destroy_workqueues();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002144 out_destroy_zones:
Nathan Scott87582802006-03-14 13:18:19 +11002145 xfs_destroy_zones();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002146 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 return error;
2148}
2149
2150STATIC void __exit
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002151exit_xfs_fs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152{
Christoph Hellwiga05931c2012-03-13 08:52:37 +00002153 xfs_qm_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 unregister_filesystem(&xfs_fs_type);
Brian Foster65b65732014-09-09 11:52:42 +10002155#ifdef DEBUG
2156 xfs_sysfs_del(&xfs_dbg_kobj);
2157#endif
Bill O'Donnell80529c42015-10-12 05:19:45 +11002158 xfs_sysfs_del(&xfsstats.xs_kobj);
2159 free_percpu(xfsstats.xs_stats);
Brian Foster3d871222014-07-15 07:41:37 +10002160 kset_unregister(xfs_kset);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002161 xfs_sysctl_unregister();
2162 xfs_cleanup_procfs();
Nathan Scottce8e9222006-01-11 15:39:08 +11002163 xfs_buf_terminate();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002164 xfs_mru_cache_uninit();
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10002165 xfs_destroy_workqueues();
Nathan Scott87582802006-03-14 13:18:19 +11002166 xfs_destroy_zones();
Darrick J. Wongaf3b6382015-11-03 13:06:34 +11002167 xfs_uuid_table_free();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168}
2169
2170module_init(init_xfs_fs);
2171module_exit(exit_xfs_fs);
2172
2173MODULE_AUTHOR("Silicon Graphics, Inc.");
2174MODULE_DESCRIPTION(XFS_VERSION_STRING " with " XFS_BUILD_OPTIONS " enabled");
2175MODULE_LICENSE("GPL");