blob: d1096fed5a62a4f2c3e3ed30475c79f69e44d95d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) International Business Machines Corp., 2000-2004
3 * Portions Copyright (C) Christoph Hellwig, 2001-2002
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
Dave Kleikamp63f83c92006-10-02 09:55:27 -05007 * the Free Software Foundation; either version 2 of the License, or
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * (at your option) any later version.
Dave Kleikamp63f83c92006-10-02 09:55:27 -05009 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
13 * the GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
Dave Kleikamp63f83c92006-10-02 09:55:27 -050016 * along with this program; if not, write to the Free Software
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19
20#include <linux/fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/module.h>
22#include <linux/parser.h>
23#include <linux/completion.h>
24#include <linux/vfs.h>
Jan Kara74abb982008-07-25 01:46:51 -070025#include <linux/quotaops.h>
Mark Bellon8fc27512005-09-06 15:16:54 -070026#include <linux/mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/moduleparam.h>
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -060028#include <linux/kthread.h>
Christoph Hellwig9a59f452005-06-23 00:10:19 -070029#include <linux/posix_acl.h>
Dave Kleikamp115ff502006-07-26 14:52:13 -050030#include <linux/buffer_head.h>
Christoph Hellwiga5694252007-07-17 04:04:28 -070031#include <linux/exportfs.h>
Coly Lib5c816a2009-01-21 00:05:39 +080032#include <linux/crc32.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <asm/uaccess.h>
Mark Bellon8fc27512005-09-06 15:16:54 -070035#include <linux/seq_file.h>
Tino Reichardtb40c2e62012-09-17 11:58:19 -050036#include <linux/blkdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38#include "jfs_incore.h"
39#include "jfs_filsys.h"
Dave Kleikamp1868f4a2005-05-04 15:29:35 -050040#include "jfs_inode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include "jfs_metapage.h"
42#include "jfs_superblock.h"
43#include "jfs_dmap.h"
44#include "jfs_imap.h"
45#include "jfs_acl.h"
46#include "jfs_debug.h"
Christoph Hellwig2cc6a5a2013-12-20 05:16:51 -080047#include "jfs_xattr.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49MODULE_DESCRIPTION("The Journaled Filesystem (JFS)");
50MODULE_AUTHOR("Steve Best/Dave Kleikamp/Barry Arndt, IBM");
51MODULE_LICENSE("GPL");
52
Fabian Frederick789602e2014-05-22 10:42:24 +100053static struct kmem_cache *jfs_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -080055static const struct super_operations jfs_super_operations;
Christoph Hellwig39655162007-10-21 16:42:17 -070056static const struct export_operations jfs_export_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057static struct file_system_type jfs_fs_type;
58
59#define MAX_COMMIT_THREADS 64
Fabian Frederick789602e2014-05-22 10:42:24 +100060static int commit_threads;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061module_param(commit_threads, int, 0);
62MODULE_PARM_DESC(commit_threads, "Number of commit threads");
63
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -060064static struct task_struct *jfsCommitThread[MAX_COMMIT_THREADS];
65struct task_struct *jfsIOthread;
66struct task_struct *jfsSyncThread;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68#ifdef CONFIG_JFS_DEBUG
69int jfsloglevel = JFS_LOGLEVEL_WARN;
70module_param(jfsloglevel, int, 0644);
71MODULE_PARM_DESC(jfsloglevel, "Specify JFS loglevel (0, 1 or 2)");
72#endif
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074static void jfs_handle_error(struct super_block *sb)
75{
76 struct jfs_sb_info *sbi = JFS_SBI(sb);
77
78 if (sb->s_flags & MS_RDONLY)
79 return;
80
81 updateSuper(sb, FM_DIRTY);
82
83 if (sbi->flag & JFS_ERR_PANIC)
84 panic("JFS (device %s): panic forced after error\n",
85 sb->s_id);
86 else if (sbi->flag & JFS_ERR_REMOUNT_RO) {
Fabian Frederick789602e2014-05-22 10:42:24 +100087 jfs_err("ERROR: (device %s): remounting filesystem as read-only\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 sb->s_id);
89 sb->s_flags |= MS_RDONLY;
Dave Kleikamp63f83c92006-10-02 09:55:27 -050090 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92 /* nothing is done for continue beyond marking the superblock dirty */
93}
94
Joe Percheseb8630d2013-06-04 16:39:15 -070095void jfs_error(struct super_block *sb, const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096{
Joe Percheseb8630d2013-06-04 16:39:15 -070097 struct va_format vaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 va_list args;
99
Joe Percheseb8630d2013-06-04 16:39:15 -0700100 va_start(args, fmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Joe Percheseb8630d2013-06-04 16:39:15 -0700102 vaf.fmt = fmt;
103 vaf.va = &args;
104
105 pr_err("ERROR: (device %s): %pf: %pV\n",
106 sb->s_id, __builtin_return_address(0), &vaf);
107
108 va_end(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110 jfs_handle_error(sb);
111}
112
113static struct inode *jfs_alloc_inode(struct super_block *sb)
114{
115 struct jfs_inode_info *jfs_inode;
116
117 jfs_inode = kmem_cache_alloc(jfs_inode_cachep, GFP_NOFS);
118 if (!jfs_inode)
119 return NULL;
120 return &jfs_inode->vfs_inode;
121}
122
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100123static void jfs_i_callback(struct rcu_head *head)
124{
125 struct inode *inode = container_of(head, struct inode, i_rcu);
126 struct jfs_inode_info *ji = JFS_IP(inode);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100127 kmem_cache_free(jfs_inode_cachep, ji);
128}
129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130static void jfs_destroy_inode(struct inode *inode)
131{
132 struct jfs_inode_info *ji = JFS_IP(inode);
133
Dave Kleikamp8a9cd6d2005-08-10 11:14:39 -0500134 BUG_ON(!list_empty(&ji->anon_inode_list));
135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 spin_lock_irq(&ji->ag_lock);
137 if (ji->active_ag != -1) {
138 struct bmap *bmap = JFS_SBI(inode->i_sb)->bmap;
139 atomic_dec(&bmap->db_active[ji->active_ag]);
140 ji->active_ag = -1;
141 }
142 spin_unlock_irq(&ji->ag_lock);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100143 call_rcu(&inode->i_rcu, jfs_i_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144}
145
David Howells726c3342006-06-23 02:02:58 -0700146static int jfs_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
David Howells726c3342006-06-23 02:02:58 -0700148 struct jfs_sb_info *sbi = JFS_SBI(dentry->d_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 s64 maxinodes;
150 struct inomap *imap = JFS_IP(sbi->ipimap)->i_imap;
151
152 jfs_info("In jfs_statfs");
153 buf->f_type = JFS_SUPER_MAGIC;
154 buf->f_bsize = sbi->bsize;
155 buf->f_blocks = sbi->bmap->db_mapsize;
156 buf->f_bfree = sbi->bmap->db_nfree;
157 buf->f_bavail = sbi->bmap->db_nfree;
158 /*
159 * If we really return the number of allocated & free inodes, some
160 * applications will fail because they won't see enough free inodes.
Philippe De Muyter4de80272013-01-16 22:55:48 +0100161 * We'll try to calculate some guess as to how many inodes we can
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 * really allocate
163 *
164 * buf->f_files = atomic_read(&imap->im_numinos);
165 * buf->f_ffree = atomic_read(&imap->im_numfree);
166 */
167 maxinodes = min((s64) atomic_read(&imap->im_numinos) +
168 ((sbi->bmap->db_nfree >> imap->im_l2nbperiext)
169 << L2INOSPEREXT), (s64) 0xffffffffLL);
170 buf->f_files = maxinodes;
171 buf->f_ffree = maxinodes - (atomic_read(&imap->im_numinos) -
172 atomic_read(&imap->im_numfree));
Coly Lib5c816a2009-01-21 00:05:39 +0800173 buf->f_fsid.val[0] = (u32)crc32_le(0, sbi->uuid, sizeof(sbi->uuid)/2);
174 buf->f_fsid.val[1] = (u32)crc32_le(0, sbi->uuid + sizeof(sbi->uuid)/2,
175 sizeof(sbi->uuid)/2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177 buf->f_namelen = JFS_NAME_MAX;
178 return 0;
179}
180
181static void jfs_put_super(struct super_block *sb)
182{
183 struct jfs_sb_info *sbi = JFS_SBI(sb);
184 int rc;
185
186 jfs_info("In jfs_put_super");
Christoph Hellwig6cfd0142009-05-05 15:40:36 +0200187
Christoph Hellwige0ccfd92010-05-19 07:16:42 -0400188 dquot_disable(sb, -1, DQUOT_USAGE_ENABLED | DQUOT_LIMITS_ENABLED);
189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 rc = jfs_umount(sb);
191 if (rc)
192 jfs_err("jfs_umount failed with return code %d", rc);
Thomas Gleixner6d729e42009-08-16 21:05:08 +0000193
194 unload_nls(sbi->nls_tab);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600196 truncate_inode_pages(sbi->direct_inode->i_mapping, 0);
197 iput(sbi->direct_inode);
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 kfree(sbi);
200}
201
202enum {
203 Opt_integrity, Opt_nointegrity, Opt_iocharset, Opt_resize,
Mark Bellon8fc27512005-09-06 15:16:54 -0700204 Opt_resize_nosize, Opt_errors, Opt_ignore, Opt_err, Opt_quota,
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500205 Opt_usrquota, Opt_grpquota, Opt_uid, Opt_gid, Opt_umask,
206 Opt_discard, Opt_nodiscard, Opt_discard_minblk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207};
208
Steven Whitehousea447c092008-10-13 10:46:57 +0100209static const match_table_t tokens = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 {Opt_integrity, "integrity"},
211 {Opt_nointegrity, "nointegrity"},
212 {Opt_iocharset, "iocharset=%s"},
213 {Opt_resize, "resize=%u"},
214 {Opt_resize_nosize, "resize"},
215 {Opt_errors, "errors=%s"},
216 {Opt_ignore, "noquota"},
217 {Opt_ignore, "quota"},
Mark Bellon8fc27512005-09-06 15:16:54 -0700218 {Opt_usrquota, "usrquota"},
219 {Opt_grpquota, "grpquota"},
Dave Kleikamp69eb66d2006-03-09 13:59:30 -0600220 {Opt_uid, "uid=%u"},
221 {Opt_gid, "gid=%u"},
222 {Opt_umask, "umask=%u"},
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500223 {Opt_discard, "discard"},
224 {Opt_nodiscard, "nodiscard"},
225 {Opt_discard_minblk, "discard=%u"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 {Opt_err, NULL}
227};
228
229static int parse_options(char *options, struct super_block *sb, s64 *newLVSize,
230 int *flag)
231{
232 void *nls_map = (void *)-1; /* -1: no change; NULL: none */
233 char *p;
234 struct jfs_sb_info *sbi = JFS_SBI(sb);
235
236 *newLVSize = 0;
237
238 if (!options)
239 return 1;
240
241 while ((p = strsep(&options, ",")) != NULL) {
242 substring_t args[MAX_OPT_ARGS];
243 int token;
244 if (!*p)
245 continue;
246
247 token = match_token(p, tokens, args);
248 switch (token) {
249 case Opt_integrity:
250 *flag &= ~JFS_NOINTEGRITY;
251 break;
252 case Opt_nointegrity:
253 *flag |= JFS_NOINTEGRITY;
254 break;
255 case Opt_ignore:
256 /* Silently ignore the quota options */
257 /* Don't do anything ;-) */
258 break;
259 case Opt_iocharset:
260 if (nls_map && nls_map != (void *) -1)
261 unload_nls(nls_map);
262 if (!strcmp(args[0].from, "none"))
263 nls_map = NULL;
264 else {
265 nls_map = load_nls(args[0].from);
266 if (!nls_map) {
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500267 pr_err("JFS: charset not found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 goto cleanup;
269 }
270 }
271 break;
272 case Opt_resize:
273 {
274 char *resize = args[0].from;
275 *newLVSize = simple_strtoull(resize, &resize, 0);
276 break;
277 }
278 case Opt_resize_nosize:
279 {
280 *newLVSize = sb->s_bdev->bd_inode->i_size >>
281 sb->s_blocksize_bits;
282 if (*newLVSize == 0)
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500283 pr_err("JFS: Cannot determine volume size\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 break;
285 }
286 case Opt_errors:
287 {
288 char *errors = args[0].from;
289 if (!errors || !*errors)
290 goto cleanup;
291 if (!strcmp(errors, "continue")) {
292 *flag &= ~JFS_ERR_REMOUNT_RO;
293 *flag &= ~JFS_ERR_PANIC;
294 *flag |= JFS_ERR_CONTINUE;
295 } else if (!strcmp(errors, "remount-ro")) {
296 *flag &= ~JFS_ERR_CONTINUE;
297 *flag &= ~JFS_ERR_PANIC;
298 *flag |= JFS_ERR_REMOUNT_RO;
299 } else if (!strcmp(errors, "panic")) {
300 *flag &= ~JFS_ERR_CONTINUE;
301 *flag &= ~JFS_ERR_REMOUNT_RO;
302 *flag |= JFS_ERR_PANIC;
303 } else {
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500304 pr_err("JFS: %s is an invalid error handler\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 errors);
306 goto cleanup;
307 }
308 break;
309 }
Mark Bellon8fc27512005-09-06 15:16:54 -0700310
Dave Kleikamp115ff502006-07-26 14:52:13 -0500311#ifdef CONFIG_QUOTA
Mark Bellon8fc27512005-09-06 15:16:54 -0700312 case Opt_quota:
313 case Opt_usrquota:
314 *flag |= JFS_USRQUOTA;
315 break;
316 case Opt_grpquota:
317 *flag |= JFS_GRPQUOTA;
318 break;
319#else
320 case Opt_usrquota:
321 case Opt_grpquota:
322 case Opt_quota:
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500323 pr_err("JFS: quota operations not supported\n");
Mark Bellon8fc27512005-09-06 15:16:54 -0700324 break;
325#endif
Dave Kleikamp69eb66d2006-03-09 13:59:30 -0600326 case Opt_uid:
327 {
328 char *uid = args[0].from;
Eric W. Biedermanc18cdc12012-02-10 11:40:34 -0800329 uid_t val = simple_strtoul(uid, &uid, 0);
330 sbi->uid = make_kuid(current_user_ns(), val);
331 if (!uid_valid(sbi->uid))
332 goto cleanup;
Dave Kleikamp69eb66d2006-03-09 13:59:30 -0600333 break;
334 }
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500335
Dave Kleikamp69eb66d2006-03-09 13:59:30 -0600336 case Opt_gid:
337 {
338 char *gid = args[0].from;
Eric W. Biedermanc18cdc12012-02-10 11:40:34 -0800339 gid_t val = simple_strtoul(gid, &gid, 0);
340 sbi->gid = make_kgid(current_user_ns(), val);
341 if (!gid_valid(sbi->gid))
342 goto cleanup;
Dave Kleikamp69eb66d2006-03-09 13:59:30 -0600343 break;
344 }
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500345
Dave Kleikamp69eb66d2006-03-09 13:59:30 -0600346 case Opt_umask:
347 {
348 char *umask = args[0].from;
349 sbi->umask = simple_strtoul(umask, &umask, 8);
350 if (sbi->umask & ~0777) {
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500351 pr_err("JFS: Invalid value of umask\n");
Dave Kleikamp69eb66d2006-03-09 13:59:30 -0600352 goto cleanup;
353 }
354 break;
355 }
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500356
357 case Opt_discard:
358 {
359 struct request_queue *q = bdev_get_queue(sb->s_bdev);
360 /* if set to 1, even copying files will cause
361 * trimming :O
362 * -> user has more control over the online trimming
363 */
364 sbi->minblks_trim = 64;
Fabian Frederick789602e2014-05-22 10:42:24 +1000365 if (blk_queue_discard(q))
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500366 *flag |= JFS_DISCARD;
Fabian Frederick789602e2014-05-22 10:42:24 +1000367 else
368 pr_err("JFS: discard option not supported on device\n");
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500369 break;
370 }
371
372 case Opt_nodiscard:
373 *flag &= ~JFS_DISCARD;
374 break;
375
376 case Opt_discard_minblk:
377 {
378 struct request_queue *q = bdev_get_queue(sb->s_bdev);
379 char *minblks_trim = args[0].from;
380 if (blk_queue_discard(q)) {
381 *flag |= JFS_DISCARD;
382 sbi->minblks_trim = simple_strtoull(
383 minblks_trim, &minblks_trim, 0);
384 } else {
Fabian Frederick789602e2014-05-22 10:42:24 +1000385 pr_err("JFS: discard option not supported on device\n");
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500386 }
387 break;
388 }
389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 default:
Fabian Frederick789602e2014-05-22 10:42:24 +1000391 printk("jfs: Unrecognized mount option \"%s\" or missing value\n",
392 p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 goto cleanup;
394 }
395 }
396
397 if (nls_map != (void *) -1) {
398 /* Discard old (if remount) */
Thomas Gleixner6d729e42009-08-16 21:05:08 +0000399 unload_nls(sbi->nls_tab);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 sbi->nls_tab = nls_map;
401 }
402 return 1;
403
404cleanup:
405 if (nls_map && nls_map != (void *) -1)
406 unload_nls(nls_map);
407 return 0;
408}
409
410static int jfs_remount(struct super_block *sb, int *flags, char *data)
411{
412 s64 newLVSize = 0;
413 int rc = 0;
414 int flag = JFS_SBI(sb)->flag;
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200415 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Theodore Ts'o02b99842014-03-13 10:14:33 -0400417 sync_filesystem(sb);
Fabian Frederick789602e2014-05-22 10:42:24 +1000418 if (!parse_options(data, sb, &newLVSize, &flag))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 return -EINVAL;
Jan Blunck22b26db2010-02-24 13:25:31 +0100420
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 if (newLVSize) {
422 if (sb->s_flags & MS_RDONLY) {
Fabian Frederick789602e2014-05-22 10:42:24 +1000423 pr_err("JFS: resize requires volume to be mounted read-write\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 return -EROFS;
425 }
426 rc = jfs_extendfs(sb, newLVSize, 0);
Jan Blunck22b26db2010-02-24 13:25:31 +0100427 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 return rc;
429 }
430
431 if ((sb->s_flags & MS_RDONLY) && !(*flags & MS_RDONLY)) {
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600432 /*
433 * Invalidate any previously read metadata. fsck may have
434 * changed the on-disk data since we mounted r/o
435 */
436 truncate_inode_pages(JFS_SBI(sb)->direct_inode->i_mapping, 0);
437
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 JFS_SBI(sb)->flag = flag;
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200439 ret = jfs_mount_rw(sb, 1);
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400440
441 /* mark the fs r/w for quota activity */
442 sb->s_flags &= ~MS_RDONLY;
443
Christoph Hellwig0f0dd622010-05-19 07:16:41 -0400444 dquot_resume(sb, -1);
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200445 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 }
447 if ((!(sb->s_flags & MS_RDONLY)) && (*flags & MS_RDONLY)) {
Christoph Hellwig0f0dd622010-05-19 07:16:41 -0400448 rc = dquot_suspend(sb, -1);
Fabian Frederick789602e2014-05-22 10:42:24 +1000449 if (rc < 0)
Christoph Hellwig0f0dd622010-05-19 07:16:41 -0400450 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 rc = jfs_umount_rw(sb);
452 JFS_SBI(sb)->flag = flag;
453 return rc;
454 }
455 if ((JFS_SBI(sb)->flag & JFS_NOINTEGRITY) != (flag & JFS_NOINTEGRITY))
456 if (!(sb->s_flags & MS_RDONLY)) {
457 rc = jfs_umount_rw(sb);
Jan Blunck22b26db2010-02-24 13:25:31 +0100458 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 return rc;
Jan Blunck22b26db2010-02-24 13:25:31 +0100460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 JFS_SBI(sb)->flag = flag;
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200462 ret = jfs_mount_rw(sb, 1);
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200463 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 }
465 JFS_SBI(sb)->flag = flag;
466
467 return 0;
468}
469
470static int jfs_fill_super(struct super_block *sb, void *data, int silent)
471{
472 struct jfs_sb_info *sbi;
473 struct inode *inode;
474 int rc;
475 s64 newLVSize = 0;
David Howellseab1df72008-02-07 00:15:43 -0800476 int flag, ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 jfs_info("In jfs_read_super: s_flags=0x%lx", sb->s_flags);
479
Jan Blunck22b26db2010-02-24 13:25:31 +0100480 if (!new_valid_dev(sb->s_bdev->bd_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 return -EOVERFLOW;
482
Fabian Frederick789602e2014-05-22 10:42:24 +1000483 sbi = kzalloc(sizeof(struct jfs_sb_info), GFP_KERNEL);
Jan Blunck22b26db2010-02-24 13:25:31 +0100484 if (!sbi)
Akinobu Mita087387f2006-09-14 09:22:38 -0500485 return -ENOMEM;
Jan Blunck22b26db2010-02-24 13:25:31 +0100486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 sb->s_fs_info = sbi;
Al Viro8de52772012-02-06 12:45:27 -0500488 sb->s_max_links = JFS_LINK_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 sbi->sb = sb;
Eric W. Biedermanc18cdc12012-02-10 11:40:34 -0800490 sbi->uid = INVALID_UID;
491 sbi->gid = INVALID_GID;
492 sbi->umask = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
494 /* initialize the mount flag and determine the default error handler */
495 flag = JFS_ERR_REMOUNT_RO;
496
Jan Blunck684bdc72010-04-12 16:44:08 -0700497 if (!parse_options((char *) data, sb, &newLVSize, &flag))
498 goto out_kfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 sbi->flag = flag;
500
501#ifdef CONFIG_JFS_POSIX_ACL
502 sb->s_flags |= MS_POSIXACL;
503#endif
504
505 if (newLVSize) {
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500506 pr_err("resize option for remount only\n");
Jan Blunck684bdc72010-04-12 16:44:08 -0700507 goto out_kfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 }
509
510 /*
511 * Initialize blocksize to 4K.
512 */
513 sb_set_blocksize(sb, PSIZE);
514
515 /*
516 * Set method vectors.
517 */
518 sb->s_op = &jfs_super_operations;
519 sb->s_export_op = &jfs_export_operations;
Christoph Hellwig2cc6a5a2013-12-20 05:16:51 -0800520 sb->s_xattr = jfs_xattr_handlers;
Christoph Hellwig123e9ca2010-05-19 07:16:44 -0400521#ifdef CONFIG_QUOTA
522 sb->dq_op = &dquot_operations;
Christoph Hellwig287a8092010-05-19 07:16:45 -0400523 sb->s_qcop = &dquot_quotactl_ops;
Christoph Hellwig123e9ca2010-05-19 07:16:44 -0400524#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600526 /*
527 * Initialize direct-mapping inode/address-space
528 */
529 inode = new_inode(sb);
David Howellseab1df72008-02-07 00:15:43 -0800530 if (inode == NULL) {
531 ret = -ENOMEM;
Jan Blunck684bdc72010-04-12 16:44:08 -0700532 goto out_unload;
David Howellseab1df72008-02-07 00:15:43 -0800533 }
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600534 inode->i_ino = 0;
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600535 inode->i_size = sb->s_bdev->bd_inode->i_size;
536 inode->i_mapping->a_ops = &jfs_metapage_aops;
Dave Kleikampac17b8b2005-10-03 15:32:11 -0500537 insert_inode_hash(inode);
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600538 mapping_set_gfp_mask(inode->i_mapping, GFP_NOFS);
539
540 sbi->direct_inode = inode;
541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 rc = jfs_mount(sb);
543 if (rc) {
Fabian Frederick789602e2014-05-22 10:42:24 +1000544 if (!silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 jfs_err("jfs_mount failed w/return code = %d", rc);
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600546 goto out_mount_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 }
548 if (sb->s_flags & MS_RDONLY)
549 sbi->log = NULL;
550 else {
551 rc = jfs_mount_rw(sb, 0);
552 if (rc) {
553 if (!silent) {
554 jfs_err("jfs_mount_rw failed, return code = %d",
555 rc);
556 }
557 goto out_no_rw;
558 }
559 }
560
561 sb->s_magic = JFS_SUPER_MAGIC;
562
Al Viro94b77bd2010-12-18 10:59:31 -0500563 if (sbi->mntflag & JFS_OS2)
564 sb->s_d_op = &jfs_ci_dentry_operations;
565
David Howellseab1df72008-02-07 00:15:43 -0800566 inode = jfs_iget(sb, ROOT_I);
567 if (IS_ERR(inode)) {
568 ret = PTR_ERR(inode);
Dave Kleikamp6536d282008-05-21 10:45:16 -0500569 goto out_no_rw;
David Howellseab1df72008-02-07 00:15:43 -0800570 }
Al Viro48fde702012-01-08 22:15:13 -0500571 sb->s_root = d_make_root(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 if (!sb->s_root)
573 goto out_no_root;
574
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 /* logical blocks are represented by 40 bits in pxd_t, etc. */
576 sb->s_maxbytes = ((u64) sb->s_blocksize) << 40;
577#if BITS_PER_LONG == 32
578 /*
579 * Page cache is indexed by long.
580 * I would use MAX_LFS_FILESIZE, but it's only half as big
581 */
Fabian Frederick789602e2014-05-22 10:42:24 +1000582 sb->s_maxbytes = min(((u64) PAGE_CACHE_SIZE << 32) - 1,
583 (u64)sb->s_maxbytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584#endif
585 sb->s_time_gran = 1;
586 return 0;
587
588out_no_root:
Dave Kleikamp6536d282008-05-21 10:45:16 -0500589 jfs_err("jfs_read_super: get root dentry failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
591out_no_rw:
592 rc = jfs_umount(sb);
Fabian Frederick789602e2014-05-22 10:42:24 +1000593 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 jfs_err("jfs_umount failed with return code %d", rc);
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600595out_mount_failed:
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800596 filemap_write_and_wait(sbi->direct_inode->i_mapping);
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600597 truncate_inode_pages(sbi->direct_inode->i_mapping, 0);
598 make_bad_inode(sbi->direct_inode);
599 iput(sbi->direct_inode);
600 sbi->direct_inode = NULL;
Jan Blunck684bdc72010-04-12 16:44:08 -0700601out_unload:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 if (sbi->nls_tab)
603 unload_nls(sbi->nls_tab);
Jan Blunck684bdc72010-04-12 16:44:08 -0700604out_kfree:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 kfree(sbi);
David Howellseab1df72008-02-07 00:15:43 -0800606 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607}
608
Takashi Satoc4be0c12009-01-09 16:40:58 -0800609static int jfs_freeze(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610{
611 struct jfs_sb_info *sbi = JFS_SBI(sb);
612 struct jfs_log *log = sbi->log;
Vahram Martirosyane9b37662013-05-24 13:57:12 +0500613 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
615 if (!(sb->s_flags & MS_RDONLY)) {
616 txQuiesce(sb);
Vahram Martirosyane9b37662013-05-24 13:57:12 +0500617 rc = lmLogShutdown(log);
618 if (rc) {
Joe Percheseb8630d2013-06-04 16:39:15 -0700619 jfs_error(sb, "lmLogShutdown failed\n");
Vahram Martirosyane9b37662013-05-24 13:57:12 +0500620
621 /* let operations fail rather than hang */
622 txResume(sb);
623
624 return rc;
625 }
626 rc = updateSuper(sb, FM_CLEAN);
627 if (rc) {
628 jfs_err("jfs_freeze: updateSuper failed\n");
629 /*
630 * Don't fail here. Everything succeeded except
631 * marking the superblock clean, so there's really
632 * no harm in leaving it frozen for now.
633 */
634 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 }
Takashi Satoc4be0c12009-01-09 16:40:58 -0800636 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637}
638
Takashi Satoc4be0c12009-01-09 16:40:58 -0800639static int jfs_unfreeze(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640{
641 struct jfs_sb_info *sbi = JFS_SBI(sb);
642 struct jfs_log *log = sbi->log;
643 int rc = 0;
644
645 if (!(sb->s_flags & MS_RDONLY)) {
Vahram Martirosyane9b37662013-05-24 13:57:12 +0500646 rc = updateSuper(sb, FM_MOUNT);
647 if (rc) {
Joe Percheseb8630d2013-06-04 16:39:15 -0700648 jfs_error(sb, "updateSuper failed\n");
Vahram Martirosyane9b37662013-05-24 13:57:12 +0500649 goto out;
650 }
651 rc = lmLogInit(log);
652 if (rc)
Joe Percheseb8630d2013-06-04 16:39:15 -0700653 jfs_error(sb, "lmLogInit failed\n");
Vahram Martirosyane9b37662013-05-24 13:57:12 +0500654out:
655 txResume(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 }
Vahram Martirosyane9b37662013-05-24 13:57:12 +0500657 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658}
659
Al Viro152a0832010-07-25 00:46:55 +0400660static struct dentry *jfs_do_mount(struct file_system_type *fs_type,
661 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662{
Al Viro152a0832010-07-25 00:46:55 +0400663 return mount_bdev(fs_type, flags, dev_name, data, jfs_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664}
665
666static int jfs_sync_fs(struct super_block *sb, int wait)
667{
668 struct jfs_log *log = JFS_SBI(sb)->log;
669
670 /* log == NULL indicates read-only mount */
Dave Kleikamp1c627822005-05-02 12:25:08 -0600671 if (log) {
Jan Karaa1177822012-07-03 16:45:29 +0200672 /*
673 * Write quota structures to quota file, sync_blockdev() will
674 * write them to disk later
675 */
676 dquot_writeback_dquots(sb, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 jfs_flush_journal(log, wait);
Dave Kleikampcbc3d652005-07-27 09:17:57 -0500678 jfs_syncpt(log, 0);
Dave Kleikamp1c627822005-05-02 12:25:08 -0600679 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
681 return 0;
682}
683
Al Viro34c80b12011-12-08 21:32:45 -0500684static int jfs_show_options(struct seq_file *seq, struct dentry *root)
Mark Bellon8fc27512005-09-06 15:16:54 -0700685{
Al Viro34c80b12011-12-08 21:32:45 -0500686 struct jfs_sb_info *sbi = JFS_SBI(root->d_sb);
Mark Bellon8fc27512005-09-06 15:16:54 -0700687
Eric W. Biedermanc18cdc12012-02-10 11:40:34 -0800688 if (uid_valid(sbi->uid))
689 seq_printf(seq, ",uid=%d", from_kuid(&init_user_ns, sbi->uid));
690 if (gid_valid(sbi->gid))
691 seq_printf(seq, ",gid=%d", from_kgid(&init_user_ns, sbi->gid));
Dave Kleikamp69eb66d2006-03-09 13:59:30 -0600692 if (sbi->umask != -1)
693 seq_printf(seq, ",umask=%03o", sbi->umask);
Mark Bellon8fc27512005-09-06 15:16:54 -0700694 if (sbi->flag & JFS_NOINTEGRITY)
695 seq_puts(seq, ",nointegrity");
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500696 if (sbi->flag & JFS_DISCARD)
697 seq_printf(seq, ",discard=%u", sbi->minblks_trim);
Miklos Szeredi5c5e32c2008-01-24 16:13:21 -0600698 if (sbi->nls_tab)
699 seq_printf(seq, ",iocharset=%s", sbi->nls_tab->charset);
700 if (sbi->flag & JFS_ERR_CONTINUE)
701 seq_printf(seq, ",errors=continue");
702 if (sbi->flag & JFS_ERR_PANIC)
703 seq_printf(seq, ",errors=panic");
Mark Bellon8fc27512005-09-06 15:16:54 -0700704
Dave Kleikamp115ff502006-07-26 14:52:13 -0500705#ifdef CONFIG_QUOTA
Mark Bellon8fc27512005-09-06 15:16:54 -0700706 if (sbi->flag & JFS_USRQUOTA)
707 seq_puts(seq, ",usrquota");
708
709 if (sbi->flag & JFS_GRPQUOTA)
710 seq_puts(seq, ",grpquota");
711#endif
712
713 return 0;
714}
715
Dave Kleikamp115ff502006-07-26 14:52:13 -0500716#ifdef CONFIG_QUOTA
717
718/* Read data from quotafile - avoid pagecache and such because we cannot afford
719 * acquiring the locks... As quota files are never truncated and quota code
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300720 * itself serializes the operations (and no one else should touch the files)
Dave Kleikamp115ff502006-07-26 14:52:13 -0500721 * we don't have to be afraid of races */
722static ssize_t jfs_quota_read(struct super_block *sb, int type, char *data,
723 size_t len, loff_t off)
724{
725 struct inode *inode = sb_dqopt(sb)->files[type];
726 sector_t blk = off >> sb->s_blocksize_bits;
727 int err = 0;
728 int offset = off & (sb->s_blocksize - 1);
729 int tocopy;
730 size_t toread;
731 struct buffer_head tmp_bh;
732 struct buffer_head *bh;
733 loff_t i_size = i_size_read(inode);
734
735 if (off > i_size)
736 return 0;
737 if (off+len > i_size)
738 len = i_size-off;
739 toread = len;
740 while (toread > 0) {
741 tocopy = sb->s_blocksize - offset < toread ?
742 sb->s_blocksize - offset : toread;
743
744 tmp_bh.b_state = 0;
745 tmp_bh.b_size = 1 << inode->i_blkbits;
746 err = jfs_get_block(inode, blk, &tmp_bh, 0);
747 if (err)
748 return err;
749 if (!buffer_mapped(&tmp_bh)) /* A hole? */
750 memset(data, 0, tocopy);
751 else {
752 bh = sb_bread(sb, tmp_bh.b_blocknr);
753 if (!bh)
754 return -EIO;
755 memcpy(data, bh->b_data+offset, tocopy);
756 brelse(bh);
757 }
758 offset = 0;
759 toread -= tocopy;
760 data += tocopy;
761 blk++;
762 }
763 return len;
764}
765
766/* Write to quotafile */
767static ssize_t jfs_quota_write(struct super_block *sb, int type,
768 const char *data, size_t len, loff_t off)
769{
770 struct inode *inode = sb_dqopt(sb)->files[type];
771 sector_t blk = off >> sb->s_blocksize_bits;
772 int err = 0;
773 int offset = off & (sb->s_blocksize - 1);
774 int tocopy;
775 size_t towrite = len;
776 struct buffer_head tmp_bh;
777 struct buffer_head *bh;
778
779 mutex_lock(&inode->i_mutex);
780 while (towrite > 0) {
781 tocopy = sb->s_blocksize - offset < towrite ?
782 sb->s_blocksize - offset : towrite;
783
784 tmp_bh.b_state = 0;
Dave Kleikamp8bcb2832006-07-28 08:46:05 -0500785 tmp_bh.b_size = 1 << inode->i_blkbits;
Dave Kleikamp115ff502006-07-26 14:52:13 -0500786 err = jfs_get_block(inode, blk, &tmp_bh, 1);
787 if (err)
788 goto out;
789 if (offset || tocopy != sb->s_blocksize)
790 bh = sb_bread(sb, tmp_bh.b_blocknr);
791 else
792 bh = sb_getblk(sb, tmp_bh.b_blocknr);
793 if (!bh) {
794 err = -EIO;
795 goto out;
796 }
797 lock_buffer(bh);
798 memcpy(bh->b_data+offset, data, tocopy);
799 flush_dcache_page(bh->b_page);
800 set_buffer_uptodate(bh);
801 mark_buffer_dirty(bh);
802 unlock_buffer(bh);
803 brelse(bh);
804 offset = 0;
805 towrite -= tocopy;
806 data += tocopy;
807 blk++;
808 }
809out:
Dan Carpenter9c836332009-04-07 14:48:16 +0300810 if (len == towrite) {
811 mutex_unlock(&inode->i_mutex);
Dave Kleikamp115ff502006-07-26 14:52:13 -0500812 return err;
Dan Carpenter9c836332009-04-07 14:48:16 +0300813 }
Dave Kleikamp115ff502006-07-26 14:52:13 -0500814 if (inode->i_size < off+len-towrite)
815 i_size_write(inode, off+len-towrite);
816 inode->i_version++;
817 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
818 mark_inode_dirty(inode);
819 mutex_unlock(&inode->i_mutex);
820 return len - towrite;
821}
822
823#endif
824
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800825static const struct super_operations jfs_super_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 .alloc_inode = jfs_alloc_inode,
827 .destroy_inode = jfs_destroy_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 .dirty_inode = jfs_dirty_inode,
829 .write_inode = jfs_write_inode,
Al Viro62aff862010-06-07 00:28:54 -0400830 .evict_inode = jfs_evict_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 .put_super = jfs_put_super,
832 .sync_fs = jfs_sync_fs,
Takashi Satoc4be0c12009-01-09 16:40:58 -0800833 .freeze_fs = jfs_freeze,
834 .unfreeze_fs = jfs_unfreeze,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 .statfs = jfs_statfs,
836 .remount_fs = jfs_remount,
Dave Kleikamp115ff502006-07-26 14:52:13 -0500837 .show_options = jfs_show_options,
838#ifdef CONFIG_QUOTA
839 .quota_read = jfs_quota_read,
840 .quota_write = jfs_quota_write,
841#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842};
843
Christoph Hellwig39655162007-10-21 16:42:17 -0700844static const struct export_operations jfs_export_operations = {
Christoph Hellwigd425de72007-10-21 16:42:09 -0700845 .fh_to_dentry = jfs_fh_to_dentry,
846 .fh_to_parent = jfs_fh_to_parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 .get_parent = jfs_get_parent,
848};
849
850static struct file_system_type jfs_fs_type = {
851 .owner = THIS_MODULE,
852 .name = "jfs",
Al Viro152a0832010-07-25 00:46:55 +0400853 .mount = jfs_do_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 .kill_sb = kill_block_super,
855 .fs_flags = FS_REQUIRES_DEV,
856};
Eric W. Biederman7f78e032013-03-02 19:39:14 -0800857MODULE_ALIAS_FS("jfs");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700859static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860{
861 struct jfs_inode_info *jfs_ip = (struct jfs_inode_info *) foo;
862
Christoph Lametera35afb82007-05-16 22:10:57 -0700863 memset(jfs_ip, 0, sizeof(struct jfs_inode_info));
864 INIT_LIST_HEAD(&jfs_ip->anon_inode_list);
865 init_rwsem(&jfs_ip->rdwrlock);
866 mutex_init(&jfs_ip->commit_mutex);
867 init_rwsem(&jfs_ip->xattr_sem);
868 spin_lock_init(&jfs_ip->ag_lock);
869 jfs_ip->active_ag = -1;
Christoph Lametera35afb82007-05-16 22:10:57 -0700870 inode_init_once(&jfs_ip->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871}
872
873static int __init init_jfs_fs(void)
874{
875 int i;
876 int rc;
877
878 jfs_inode_cachep =
Dave Kleikamp63f83c92006-10-02 09:55:27 -0500879 kmem_cache_create("jfs_ip", sizeof(struct jfs_inode_info), 0,
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800880 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD,
Paul Mundt20c2df82007-07-20 10:11:58 +0900881 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 if (jfs_inode_cachep == NULL)
883 return -ENOMEM;
884
885 /*
886 * Metapage initialization
887 */
888 rc = metapage_init();
889 if (rc) {
890 jfs_err("metapage_init failed w/rc = %d", rc);
891 goto free_slab;
892 }
893
894 /*
895 * Transaction Manager initialization
896 */
897 rc = txInit();
898 if (rc) {
899 jfs_err("txInit failed w/rc = %d", rc);
900 goto free_metapage;
901 }
902
903 /*
904 * I/O completion thread (endio)
905 */
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -0600906 jfsIOthread = kthread_run(jfsIOWait, NULL, "jfsIO");
907 if (IS_ERR(jfsIOthread)) {
908 rc = PTR_ERR(jfsIOthread);
909 jfs_err("init_jfs_fs: fork failed w/rc = %d", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 goto end_txmngr;
911 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
913 if (commit_threads < 1)
914 commit_threads = num_online_cpus();
915 if (commit_threads > MAX_COMMIT_THREADS)
916 commit_threads = MAX_COMMIT_THREADS;
917
918 for (i = 0; i < commit_threads; i++) {
Fabian Frederick789602e2014-05-22 10:42:24 +1000919 jfsCommitThread[i] = kthread_run(jfs_lazycommit, NULL,
920 "jfsCommit");
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -0600921 if (IS_ERR(jfsCommitThread[i])) {
922 rc = PTR_ERR(jfsCommitThread[i]);
923 jfs_err("init_jfs_fs: fork failed w/rc = %d", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 commit_threads = i;
925 goto kill_committask;
926 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 }
928
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -0600929 jfsSyncThread = kthread_run(jfs_sync, NULL, "jfsSync");
930 if (IS_ERR(jfsSyncThread)) {
931 rc = PTR_ERR(jfsSyncThread);
932 jfs_err("init_jfs_fs: fork failed w/rc = %d", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 goto kill_committask;
934 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
936#ifdef PROC_FS_JFS
937 jfs_proc_init();
938#endif
939
Al Viro76bf09f2012-03-17 18:14:34 -0400940 rc = register_filesystem(&jfs_fs_type);
941 if (!rc)
942 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
Al Viro76bf09f2012-03-17 18:14:34 -0400944#ifdef PROC_FS_JFS
945 jfs_proc_clean();
946#endif
947 kthread_stop(jfsSyncThread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948kill_committask:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 for (i = 0; i < commit_threads; i++)
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -0600950 kthread_stop(jfsCommitThread[i]);
951 kthread_stop(jfsIOthread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952end_txmngr:
953 txExit();
954free_metapage:
955 metapage_exit();
956free_slab:
957 kmem_cache_destroy(jfs_inode_cachep);
958 return rc;
959}
960
961static void __exit exit_jfs_fs(void)
962{
963 int i;
964
965 jfs_info("exit_jfs_fs called");
966
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 txExit();
968 metapage_exit();
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -0600969
970 kthread_stop(jfsIOthread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 for (i = 0; i < commit_threads; i++)
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -0600972 kthread_stop(jfsCommitThread[i]);
973 kthread_stop(jfsSyncThread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974#ifdef PROC_FS_JFS
975 jfs_proc_clean();
976#endif
977 unregister_filesystem(&jfs_fs_type);
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000978
979 /*
980 * Make sure all delayed rcu free inodes are flushed before we
981 * destroy cache.
982 */
983 rcu_barrier();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 kmem_cache_destroy(jfs_inode_cachep);
985}
986
987module_init(init_jfs_fs)
988module_exit(exit_jfs_fs)