blob: e2b7483444fd0dc7163cf1d4ab651917b824965e [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
Christoph Lametere18b8902006-12-06 20:33:20 -080053static 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
60static int commit_threads = 0;
61module_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) {
87 jfs_err("ERROR: (device %s): remounting filesystem "
88 "as read-only\n",
89 sb->s_id);
90 sb->s_flags |= MS_RDONLY;
Dave Kleikamp63f83c92006-10-02 09:55:27 -050091 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93 /* nothing is done for continue beyond marking the superblock dirty */
94}
95
Joe Percheseb8630d2013-06-04 16:39:15 -070096void jfs_error(struct super_block *sb, const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
Joe Percheseb8630d2013-06-04 16:39:15 -070098 struct va_format vaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 va_list args;
100
Joe Percheseb8630d2013-06-04 16:39:15 -0700101 va_start(args, fmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Joe Percheseb8630d2013-06-04 16:39:15 -0700103 vaf.fmt = fmt;
104 vaf.va = &args;
105
106 pr_err("ERROR: (device %s): %pf: %pV\n",
107 sb->s_id, __builtin_return_address(0), &vaf);
108
109 va_end(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111 jfs_handle_error(sb);
112}
113
114static struct inode *jfs_alloc_inode(struct super_block *sb)
115{
116 struct jfs_inode_info *jfs_inode;
117
118 jfs_inode = kmem_cache_alloc(jfs_inode_cachep, GFP_NOFS);
119 if (!jfs_inode)
120 return NULL;
121 return &jfs_inode->vfs_inode;
122}
123
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100124static void jfs_i_callback(struct rcu_head *head)
125{
126 struct inode *inode = container_of(head, struct inode, i_rcu);
127 struct jfs_inode_info *ji = JFS_IP(inode);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100128 kmem_cache_free(jfs_inode_cachep, ji);
129}
130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131static void jfs_destroy_inode(struct inode *inode)
132{
133 struct jfs_inode_info *ji = JFS_IP(inode);
134
Dave Kleikamp8a9cd6d2005-08-10 11:14:39 -0500135 BUG_ON(!list_empty(&ji->anon_inode_list));
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 spin_lock_irq(&ji->ag_lock);
138 if (ji->active_ag != -1) {
139 struct bmap *bmap = JFS_SBI(inode->i_sb)->bmap;
140 atomic_dec(&bmap->db_active[ji->active_ag]);
141 ji->active_ag = -1;
142 }
143 spin_unlock_irq(&ji->ag_lock);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100144 call_rcu(&inode->i_rcu, jfs_i_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145}
146
David Howells726c3342006-06-23 02:02:58 -0700147static int jfs_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
David Howells726c3342006-06-23 02:02:58 -0700149 struct jfs_sb_info *sbi = JFS_SBI(dentry->d_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 s64 maxinodes;
151 struct inomap *imap = JFS_IP(sbi->ipimap)->i_imap;
152
153 jfs_info("In jfs_statfs");
154 buf->f_type = JFS_SUPER_MAGIC;
155 buf->f_bsize = sbi->bsize;
156 buf->f_blocks = sbi->bmap->db_mapsize;
157 buf->f_bfree = sbi->bmap->db_nfree;
158 buf->f_bavail = sbi->bmap->db_nfree;
159 /*
160 * If we really return the number of allocated & free inodes, some
161 * applications will fail because they won't see enough free inodes.
Philippe De Muyter4de80272013-01-16 22:55:48 +0100162 * We'll try to calculate some guess as to how many inodes we can
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 * really allocate
164 *
165 * buf->f_files = atomic_read(&imap->im_numinos);
166 * buf->f_ffree = atomic_read(&imap->im_numfree);
167 */
168 maxinodes = min((s64) atomic_read(&imap->im_numinos) +
169 ((sbi->bmap->db_nfree >> imap->im_l2nbperiext)
170 << L2INOSPEREXT), (s64) 0xffffffffLL);
171 buf->f_files = maxinodes;
172 buf->f_ffree = maxinodes - (atomic_read(&imap->im_numinos) -
173 atomic_read(&imap->im_numfree));
Coly Lib5c816a2009-01-21 00:05:39 +0800174 buf->f_fsid.val[0] = (u32)crc32_le(0, sbi->uuid, sizeof(sbi->uuid)/2);
175 buf->f_fsid.val[1] = (u32)crc32_le(0, sbi->uuid + sizeof(sbi->uuid)/2,
176 sizeof(sbi->uuid)/2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
178 buf->f_namelen = JFS_NAME_MAX;
179 return 0;
180}
181
182static void jfs_put_super(struct super_block *sb)
183{
184 struct jfs_sb_info *sbi = JFS_SBI(sb);
185 int rc;
186
187 jfs_info("In jfs_put_super");
Christoph Hellwig6cfd0142009-05-05 15:40:36 +0200188
Christoph Hellwige0ccfd92010-05-19 07:16:42 -0400189 dquot_disable(sb, -1, DQUOT_USAGE_ENABLED | DQUOT_LIMITS_ENABLED);
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 rc = jfs_umount(sb);
192 if (rc)
193 jfs_err("jfs_umount failed with return code %d", rc);
Thomas Gleixner6d729e42009-08-16 21:05:08 +0000194
195 unload_nls(sbi->nls_tab);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600197 truncate_inode_pages(sbi->direct_inode->i_mapping, 0);
198 iput(sbi->direct_inode);
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 kfree(sbi);
201}
202
203enum {
204 Opt_integrity, Opt_nointegrity, Opt_iocharset, Opt_resize,
Mark Bellon8fc27512005-09-06 15:16:54 -0700205 Opt_resize_nosize, Opt_errors, Opt_ignore, Opt_err, Opt_quota,
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500206 Opt_usrquota, Opt_grpquota, Opt_uid, Opt_gid, Opt_umask,
207 Opt_discard, Opt_nodiscard, Opt_discard_minblk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208};
209
Steven Whitehousea447c092008-10-13 10:46:57 +0100210static const match_table_t tokens = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 {Opt_integrity, "integrity"},
212 {Opt_nointegrity, "nointegrity"},
213 {Opt_iocharset, "iocharset=%s"},
214 {Opt_resize, "resize=%u"},
215 {Opt_resize_nosize, "resize"},
216 {Opt_errors, "errors=%s"},
217 {Opt_ignore, "noquota"},
218 {Opt_ignore, "quota"},
Mark Bellon8fc27512005-09-06 15:16:54 -0700219 {Opt_usrquota, "usrquota"},
220 {Opt_grpquota, "grpquota"},
Dave Kleikamp69eb66d2006-03-09 13:59:30 -0600221 {Opt_uid, "uid=%u"},
222 {Opt_gid, "gid=%u"},
223 {Opt_umask, "umask=%u"},
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500224 {Opt_discard, "discard"},
225 {Opt_nodiscard, "nodiscard"},
226 {Opt_discard_minblk, "discard=%u"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 {Opt_err, NULL}
228};
229
230static int parse_options(char *options, struct super_block *sb, s64 *newLVSize,
231 int *flag)
232{
233 void *nls_map = (void *)-1; /* -1: no change; NULL: none */
234 char *p;
235 struct jfs_sb_info *sbi = JFS_SBI(sb);
236
237 *newLVSize = 0;
238
239 if (!options)
240 return 1;
241
242 while ((p = strsep(&options, ",")) != NULL) {
243 substring_t args[MAX_OPT_ARGS];
244 int token;
245 if (!*p)
246 continue;
247
248 token = match_token(p, tokens, args);
249 switch (token) {
250 case Opt_integrity:
251 *flag &= ~JFS_NOINTEGRITY;
252 break;
253 case Opt_nointegrity:
254 *flag |= JFS_NOINTEGRITY;
255 break;
256 case Opt_ignore:
257 /* Silently ignore the quota options */
258 /* Don't do anything ;-) */
259 break;
260 case Opt_iocharset:
261 if (nls_map && nls_map != (void *) -1)
262 unload_nls(nls_map);
263 if (!strcmp(args[0].from, "none"))
264 nls_map = NULL;
265 else {
266 nls_map = load_nls(args[0].from);
267 if (!nls_map) {
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500268 pr_err("JFS: charset not found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 goto cleanup;
270 }
271 }
272 break;
273 case Opt_resize:
274 {
275 char *resize = args[0].from;
276 *newLVSize = simple_strtoull(resize, &resize, 0);
277 break;
278 }
279 case Opt_resize_nosize:
280 {
281 *newLVSize = sb->s_bdev->bd_inode->i_size >>
282 sb->s_blocksize_bits;
283 if (*newLVSize == 0)
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500284 pr_err("JFS: Cannot determine volume size\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 break;
286 }
287 case Opt_errors:
288 {
289 char *errors = args[0].from;
290 if (!errors || !*errors)
291 goto cleanup;
292 if (!strcmp(errors, "continue")) {
293 *flag &= ~JFS_ERR_REMOUNT_RO;
294 *flag &= ~JFS_ERR_PANIC;
295 *flag |= JFS_ERR_CONTINUE;
296 } else if (!strcmp(errors, "remount-ro")) {
297 *flag &= ~JFS_ERR_CONTINUE;
298 *flag &= ~JFS_ERR_PANIC;
299 *flag |= JFS_ERR_REMOUNT_RO;
300 } else if (!strcmp(errors, "panic")) {
301 *flag &= ~JFS_ERR_CONTINUE;
302 *flag &= ~JFS_ERR_REMOUNT_RO;
303 *flag |= JFS_ERR_PANIC;
304 } else {
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500305 pr_err("JFS: %s is an invalid error handler\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 errors);
307 goto cleanup;
308 }
309 break;
310 }
Mark Bellon8fc27512005-09-06 15:16:54 -0700311
Dave Kleikamp115ff502006-07-26 14:52:13 -0500312#ifdef CONFIG_QUOTA
Mark Bellon8fc27512005-09-06 15:16:54 -0700313 case Opt_quota:
314 case Opt_usrquota:
315 *flag |= JFS_USRQUOTA;
316 break;
317 case Opt_grpquota:
318 *flag |= JFS_GRPQUOTA;
319 break;
320#else
321 case Opt_usrquota:
322 case Opt_grpquota:
323 case Opt_quota:
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500324 pr_err("JFS: quota operations not supported\n");
Mark Bellon8fc27512005-09-06 15:16:54 -0700325 break;
326#endif
Dave Kleikamp69eb66d2006-03-09 13:59:30 -0600327 case Opt_uid:
328 {
329 char *uid = args[0].from;
Eric W. Biedermanc18cdc12012-02-10 11:40:34 -0800330 uid_t val = simple_strtoul(uid, &uid, 0);
331 sbi->uid = make_kuid(current_user_ns(), val);
332 if (!uid_valid(sbi->uid))
333 goto cleanup;
Dave Kleikamp69eb66d2006-03-09 13:59:30 -0600334 break;
335 }
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500336
Dave Kleikamp69eb66d2006-03-09 13:59:30 -0600337 case Opt_gid:
338 {
339 char *gid = args[0].from;
Eric W. Biedermanc18cdc12012-02-10 11:40:34 -0800340 gid_t val = simple_strtoul(gid, &gid, 0);
341 sbi->gid = make_kgid(current_user_ns(), val);
342 if (!gid_valid(sbi->gid))
343 goto cleanup;
Dave Kleikamp69eb66d2006-03-09 13:59:30 -0600344 break;
345 }
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500346
Dave Kleikamp69eb66d2006-03-09 13:59:30 -0600347 case Opt_umask:
348 {
349 char *umask = args[0].from;
350 sbi->umask = simple_strtoul(umask, &umask, 8);
351 if (sbi->umask & ~0777) {
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500352 pr_err("JFS: Invalid value of umask\n");
Dave Kleikamp69eb66d2006-03-09 13:59:30 -0600353 goto cleanup;
354 }
355 break;
356 }
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500357
358 case Opt_discard:
359 {
360 struct request_queue *q = bdev_get_queue(sb->s_bdev);
361 /* if set to 1, even copying files will cause
362 * trimming :O
363 * -> user has more control over the online trimming
364 */
365 sbi->minblks_trim = 64;
366 if (blk_queue_discard(q)) {
367 *flag |= JFS_DISCARD;
368 } else {
369 pr_err("JFS: discard option " \
370 "not supported on device\n");
371 }
372 break;
373 }
374
375 case Opt_nodiscard:
376 *flag &= ~JFS_DISCARD;
377 break;
378
379 case Opt_discard_minblk:
380 {
381 struct request_queue *q = bdev_get_queue(sb->s_bdev);
382 char *minblks_trim = args[0].from;
383 if (blk_queue_discard(q)) {
384 *flag |= JFS_DISCARD;
385 sbi->minblks_trim = simple_strtoull(
386 minblks_trim, &minblks_trim, 0);
387 } else {
388 pr_err("JFS: discard option " \
389 "not supported on device\n");
390 }
391 break;
392 }
393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 default:
395 printk("jfs: Unrecognized mount option \"%s\" "
396 " or missing value\n", p);
397 goto cleanup;
398 }
399 }
400
401 if (nls_map != (void *) -1) {
402 /* Discard old (if remount) */
Thomas Gleixner6d729e42009-08-16 21:05:08 +0000403 unload_nls(sbi->nls_tab);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 sbi->nls_tab = nls_map;
405 }
406 return 1;
407
408cleanup:
409 if (nls_map && nls_map != (void *) -1)
410 unload_nls(nls_map);
411 return 0;
412}
413
414static int jfs_remount(struct super_block *sb, int *flags, char *data)
415{
416 s64 newLVSize = 0;
417 int rc = 0;
418 int flag = JFS_SBI(sb)->flag;
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200419 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421 if (!parse_options(data, sb, &newLVSize, &flag)) {
422 return -EINVAL;
423 }
Jan Blunck22b26db2010-02-24 13:25:31 +0100424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 if (newLVSize) {
426 if (sb->s_flags & MS_RDONLY) {
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500427 pr_err("JFS: resize requires volume" \
428 " to be mounted read-write\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 return -EROFS;
430 }
431 rc = jfs_extendfs(sb, newLVSize, 0);
Jan Blunck22b26db2010-02-24 13:25:31 +0100432 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 return rc;
434 }
435
436 if ((sb->s_flags & MS_RDONLY) && !(*flags & MS_RDONLY)) {
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600437 /*
438 * Invalidate any previously read metadata. fsck may have
439 * changed the on-disk data since we mounted r/o
440 */
441 truncate_inode_pages(JFS_SBI(sb)->direct_inode->i_mapping, 0);
442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 JFS_SBI(sb)->flag = flag;
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200444 ret = jfs_mount_rw(sb, 1);
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400445
446 /* mark the fs r/w for quota activity */
447 sb->s_flags &= ~MS_RDONLY;
448
Christoph Hellwig0f0dd622010-05-19 07:16:41 -0400449 dquot_resume(sb, -1);
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200450 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 }
452 if ((!(sb->s_flags & MS_RDONLY)) && (*flags & MS_RDONLY)) {
Christoph Hellwig0f0dd622010-05-19 07:16:41 -0400453 rc = dquot_suspend(sb, -1);
454 if (rc < 0) {
Christoph Hellwig0f0dd622010-05-19 07:16:41 -0400455 return rc;
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400456 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 rc = jfs_umount_rw(sb);
458 JFS_SBI(sb)->flag = flag;
459 return rc;
460 }
461 if ((JFS_SBI(sb)->flag & JFS_NOINTEGRITY) != (flag & JFS_NOINTEGRITY))
462 if (!(sb->s_flags & MS_RDONLY)) {
463 rc = jfs_umount_rw(sb);
Jan Blunck22b26db2010-02-24 13:25:31 +0100464 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 return rc;
Jan Blunck22b26db2010-02-24 13:25:31 +0100466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 JFS_SBI(sb)->flag = flag;
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200468 ret = jfs_mount_rw(sb, 1);
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200469 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 }
471 JFS_SBI(sb)->flag = flag;
472
473 return 0;
474}
475
476static int jfs_fill_super(struct super_block *sb, void *data, int silent)
477{
478 struct jfs_sb_info *sbi;
479 struct inode *inode;
480 int rc;
481 s64 newLVSize = 0;
David Howellseab1df72008-02-07 00:15:43 -0800482 int flag, ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
484 jfs_info("In jfs_read_super: s_flags=0x%lx", sb->s_flags);
485
Jan Blunck22b26db2010-02-24 13:25:31 +0100486 if (!new_valid_dev(sb->s_bdev->bd_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 return -EOVERFLOW;
488
Eric Sesterhenn5b3030e2006-02-23 09:47:13 -0600489 sbi = kzalloc(sizeof (struct jfs_sb_info), GFP_KERNEL);
Jan Blunck22b26db2010-02-24 13:25:31 +0100490 if (!sbi)
Akinobu Mita087387f2006-09-14 09:22:38 -0500491 return -ENOMEM;
Jan Blunck22b26db2010-02-24 13:25:31 +0100492
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 sb->s_fs_info = sbi;
Al Viro8de52772012-02-06 12:45:27 -0500494 sb->s_max_links = JFS_LINK_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 sbi->sb = sb;
Eric W. Biedermanc18cdc12012-02-10 11:40:34 -0800496 sbi->uid = INVALID_UID;
497 sbi->gid = INVALID_GID;
498 sbi->umask = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
500 /* initialize the mount flag and determine the default error handler */
501 flag = JFS_ERR_REMOUNT_RO;
502
Jan Blunck684bdc72010-04-12 16:44:08 -0700503 if (!parse_options((char *) data, sb, &newLVSize, &flag))
504 goto out_kfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 sbi->flag = flag;
506
507#ifdef CONFIG_JFS_POSIX_ACL
508 sb->s_flags |= MS_POSIXACL;
509#endif
510
511 if (newLVSize) {
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500512 pr_err("resize option for remount only\n");
Jan Blunck684bdc72010-04-12 16:44:08 -0700513 goto out_kfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 }
515
516 /*
517 * Initialize blocksize to 4K.
518 */
519 sb_set_blocksize(sb, PSIZE);
520
521 /*
522 * Set method vectors.
523 */
524 sb->s_op = &jfs_super_operations;
525 sb->s_export_op = &jfs_export_operations;
Christoph Hellwig2cc6a5a2013-12-20 05:16:51 -0800526 sb->s_xattr = jfs_xattr_handlers;
Christoph Hellwig123e9ca2010-05-19 07:16:44 -0400527#ifdef CONFIG_QUOTA
528 sb->dq_op = &dquot_operations;
Christoph Hellwig287a8092010-05-19 07:16:45 -0400529 sb->s_qcop = &dquot_quotactl_ops;
Christoph Hellwig123e9ca2010-05-19 07:16:44 -0400530#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600532 /*
533 * Initialize direct-mapping inode/address-space
534 */
535 inode = new_inode(sb);
David Howellseab1df72008-02-07 00:15:43 -0800536 if (inode == NULL) {
537 ret = -ENOMEM;
Jan Blunck684bdc72010-04-12 16:44:08 -0700538 goto out_unload;
David Howellseab1df72008-02-07 00:15:43 -0800539 }
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600540 inode->i_ino = 0;
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600541 inode->i_size = sb->s_bdev->bd_inode->i_size;
542 inode->i_mapping->a_ops = &jfs_metapage_aops;
Dave Kleikampac17b8b2005-10-03 15:32:11 -0500543 insert_inode_hash(inode);
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600544 mapping_set_gfp_mask(inode->i_mapping, GFP_NOFS);
545
546 sbi->direct_inode = inode;
547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 rc = jfs_mount(sb);
549 if (rc) {
550 if (!silent) {
551 jfs_err("jfs_mount failed w/return code = %d", rc);
552 }
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600553 goto out_mount_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 }
555 if (sb->s_flags & MS_RDONLY)
556 sbi->log = NULL;
557 else {
558 rc = jfs_mount_rw(sb, 0);
559 if (rc) {
560 if (!silent) {
561 jfs_err("jfs_mount_rw failed, return code = %d",
562 rc);
563 }
564 goto out_no_rw;
565 }
566 }
567
568 sb->s_magic = JFS_SUPER_MAGIC;
569
Al Viro94b77bd2010-12-18 10:59:31 -0500570 if (sbi->mntflag & JFS_OS2)
571 sb->s_d_op = &jfs_ci_dentry_operations;
572
David Howellseab1df72008-02-07 00:15:43 -0800573 inode = jfs_iget(sb, ROOT_I);
574 if (IS_ERR(inode)) {
575 ret = PTR_ERR(inode);
Dave Kleikamp6536d282008-05-21 10:45:16 -0500576 goto out_no_rw;
David Howellseab1df72008-02-07 00:15:43 -0800577 }
Al Viro48fde702012-01-08 22:15:13 -0500578 sb->s_root = d_make_root(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 if (!sb->s_root)
580 goto out_no_root;
581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 /* logical blocks are represented by 40 bits in pxd_t, etc. */
583 sb->s_maxbytes = ((u64) sb->s_blocksize) << 40;
584#if BITS_PER_LONG == 32
585 /*
586 * Page cache is indexed by long.
587 * I would use MAX_LFS_FILESIZE, but it's only half as big
588 */
Alan Cox28ba0ec2009-11-06 11:31:06 +0000589 sb->s_maxbytes = min(((u64) PAGE_CACHE_SIZE << 32) - 1, (u64)sb->s_maxbytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590#endif
591 sb->s_time_gran = 1;
592 return 0;
593
594out_no_root:
Dave Kleikamp6536d282008-05-21 10:45:16 -0500595 jfs_err("jfs_read_super: get root dentry failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
597out_no_rw:
598 rc = jfs_umount(sb);
599 if (rc) {
600 jfs_err("jfs_umount failed with return code %d", rc);
601 }
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600602out_mount_failed:
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800603 filemap_write_and_wait(sbi->direct_inode->i_mapping);
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600604 truncate_inode_pages(sbi->direct_inode->i_mapping, 0);
605 make_bad_inode(sbi->direct_inode);
606 iput(sbi->direct_inode);
607 sbi->direct_inode = NULL;
Jan Blunck684bdc72010-04-12 16:44:08 -0700608out_unload:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 if (sbi->nls_tab)
610 unload_nls(sbi->nls_tab);
Jan Blunck684bdc72010-04-12 16:44:08 -0700611out_kfree:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 kfree(sbi);
David Howellseab1df72008-02-07 00:15:43 -0800613 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614}
615
Takashi Satoc4be0c12009-01-09 16:40:58 -0800616static int jfs_freeze(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617{
618 struct jfs_sb_info *sbi = JFS_SBI(sb);
619 struct jfs_log *log = sbi->log;
Vahram Martirosyane9b37662013-05-24 13:57:12 +0500620 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
622 if (!(sb->s_flags & MS_RDONLY)) {
623 txQuiesce(sb);
Vahram Martirosyane9b37662013-05-24 13:57:12 +0500624 rc = lmLogShutdown(log);
625 if (rc) {
Joe Percheseb8630d2013-06-04 16:39:15 -0700626 jfs_error(sb, "lmLogShutdown failed\n");
Vahram Martirosyane9b37662013-05-24 13:57:12 +0500627
628 /* let operations fail rather than hang */
629 txResume(sb);
630
631 return rc;
632 }
633 rc = updateSuper(sb, FM_CLEAN);
634 if (rc) {
635 jfs_err("jfs_freeze: updateSuper failed\n");
636 /*
637 * Don't fail here. Everything succeeded except
638 * marking the superblock clean, so there's really
639 * no harm in leaving it frozen for now.
640 */
641 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 }
Takashi Satoc4be0c12009-01-09 16:40:58 -0800643 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644}
645
Takashi Satoc4be0c12009-01-09 16:40:58 -0800646static int jfs_unfreeze(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647{
648 struct jfs_sb_info *sbi = JFS_SBI(sb);
649 struct jfs_log *log = sbi->log;
650 int rc = 0;
651
652 if (!(sb->s_flags & MS_RDONLY)) {
Vahram Martirosyane9b37662013-05-24 13:57:12 +0500653 rc = updateSuper(sb, FM_MOUNT);
654 if (rc) {
Joe Percheseb8630d2013-06-04 16:39:15 -0700655 jfs_error(sb, "updateSuper failed\n");
Vahram Martirosyane9b37662013-05-24 13:57:12 +0500656 goto out;
657 }
658 rc = lmLogInit(log);
659 if (rc)
Joe Percheseb8630d2013-06-04 16:39:15 -0700660 jfs_error(sb, "lmLogInit failed\n");
Vahram Martirosyane9b37662013-05-24 13:57:12 +0500661out:
662 txResume(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 }
Vahram Martirosyane9b37662013-05-24 13:57:12 +0500664 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665}
666
Al Viro152a0832010-07-25 00:46:55 +0400667static struct dentry *jfs_do_mount(struct file_system_type *fs_type,
668 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669{
Al Viro152a0832010-07-25 00:46:55 +0400670 return mount_bdev(fs_type, flags, dev_name, data, jfs_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671}
672
673static int jfs_sync_fs(struct super_block *sb, int wait)
674{
675 struct jfs_log *log = JFS_SBI(sb)->log;
676
677 /* log == NULL indicates read-only mount */
Dave Kleikamp1c627822005-05-02 12:25:08 -0600678 if (log) {
Jan Karaa1177822012-07-03 16:45:29 +0200679 /*
680 * Write quota structures to quota file, sync_blockdev() will
681 * write them to disk later
682 */
683 dquot_writeback_dquots(sb, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 jfs_flush_journal(log, wait);
Dave Kleikampcbc3d652005-07-27 09:17:57 -0500685 jfs_syncpt(log, 0);
Dave Kleikamp1c627822005-05-02 12:25:08 -0600686 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
688 return 0;
689}
690
Al Viro34c80b12011-12-08 21:32:45 -0500691static int jfs_show_options(struct seq_file *seq, struct dentry *root)
Mark Bellon8fc27512005-09-06 15:16:54 -0700692{
Al Viro34c80b12011-12-08 21:32:45 -0500693 struct jfs_sb_info *sbi = JFS_SBI(root->d_sb);
Mark Bellon8fc27512005-09-06 15:16:54 -0700694
Eric W. Biedermanc18cdc12012-02-10 11:40:34 -0800695 if (uid_valid(sbi->uid))
696 seq_printf(seq, ",uid=%d", from_kuid(&init_user_ns, sbi->uid));
697 if (gid_valid(sbi->gid))
698 seq_printf(seq, ",gid=%d", from_kgid(&init_user_ns, sbi->gid));
Dave Kleikamp69eb66d2006-03-09 13:59:30 -0600699 if (sbi->umask != -1)
700 seq_printf(seq, ",umask=%03o", sbi->umask);
Mark Bellon8fc27512005-09-06 15:16:54 -0700701 if (sbi->flag & JFS_NOINTEGRITY)
702 seq_puts(seq, ",nointegrity");
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500703 if (sbi->flag & JFS_DISCARD)
704 seq_printf(seq, ",discard=%u", sbi->minblks_trim);
Miklos Szeredi5c5e32c2008-01-24 16:13:21 -0600705 if (sbi->nls_tab)
706 seq_printf(seq, ",iocharset=%s", sbi->nls_tab->charset);
707 if (sbi->flag & JFS_ERR_CONTINUE)
708 seq_printf(seq, ",errors=continue");
709 if (sbi->flag & JFS_ERR_PANIC)
710 seq_printf(seq, ",errors=panic");
Mark Bellon8fc27512005-09-06 15:16:54 -0700711
Dave Kleikamp115ff502006-07-26 14:52:13 -0500712#ifdef CONFIG_QUOTA
Mark Bellon8fc27512005-09-06 15:16:54 -0700713 if (sbi->flag & JFS_USRQUOTA)
714 seq_puts(seq, ",usrquota");
715
716 if (sbi->flag & JFS_GRPQUOTA)
717 seq_puts(seq, ",grpquota");
718#endif
719
720 return 0;
721}
722
Dave Kleikamp115ff502006-07-26 14:52:13 -0500723#ifdef CONFIG_QUOTA
724
725/* Read data from quotafile - avoid pagecache and such because we cannot afford
726 * acquiring the locks... As quota files are never truncated and quota code
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300727 * itself serializes the operations (and no one else should touch the files)
Dave Kleikamp115ff502006-07-26 14:52:13 -0500728 * we don't have to be afraid of races */
729static ssize_t jfs_quota_read(struct super_block *sb, int type, char *data,
730 size_t len, loff_t off)
731{
732 struct inode *inode = sb_dqopt(sb)->files[type];
733 sector_t blk = off >> sb->s_blocksize_bits;
734 int err = 0;
735 int offset = off & (sb->s_blocksize - 1);
736 int tocopy;
737 size_t toread;
738 struct buffer_head tmp_bh;
739 struct buffer_head *bh;
740 loff_t i_size = i_size_read(inode);
741
742 if (off > i_size)
743 return 0;
744 if (off+len > i_size)
745 len = i_size-off;
746 toread = len;
747 while (toread > 0) {
748 tocopy = sb->s_blocksize - offset < toread ?
749 sb->s_blocksize - offset : toread;
750
751 tmp_bh.b_state = 0;
752 tmp_bh.b_size = 1 << inode->i_blkbits;
753 err = jfs_get_block(inode, blk, &tmp_bh, 0);
754 if (err)
755 return err;
756 if (!buffer_mapped(&tmp_bh)) /* A hole? */
757 memset(data, 0, tocopy);
758 else {
759 bh = sb_bread(sb, tmp_bh.b_blocknr);
760 if (!bh)
761 return -EIO;
762 memcpy(data, bh->b_data+offset, tocopy);
763 brelse(bh);
764 }
765 offset = 0;
766 toread -= tocopy;
767 data += tocopy;
768 blk++;
769 }
770 return len;
771}
772
773/* Write to quotafile */
774static ssize_t jfs_quota_write(struct super_block *sb, int type,
775 const char *data, size_t len, loff_t off)
776{
777 struct inode *inode = sb_dqopt(sb)->files[type];
778 sector_t blk = off >> sb->s_blocksize_bits;
779 int err = 0;
780 int offset = off & (sb->s_blocksize - 1);
781 int tocopy;
782 size_t towrite = len;
783 struct buffer_head tmp_bh;
784 struct buffer_head *bh;
785
786 mutex_lock(&inode->i_mutex);
787 while (towrite > 0) {
788 tocopy = sb->s_blocksize - offset < towrite ?
789 sb->s_blocksize - offset : towrite;
790
791 tmp_bh.b_state = 0;
Dave Kleikamp8bcb2832006-07-28 08:46:05 -0500792 tmp_bh.b_size = 1 << inode->i_blkbits;
Dave Kleikamp115ff502006-07-26 14:52:13 -0500793 err = jfs_get_block(inode, blk, &tmp_bh, 1);
794 if (err)
795 goto out;
796 if (offset || tocopy != sb->s_blocksize)
797 bh = sb_bread(sb, tmp_bh.b_blocknr);
798 else
799 bh = sb_getblk(sb, tmp_bh.b_blocknr);
800 if (!bh) {
801 err = -EIO;
802 goto out;
803 }
804 lock_buffer(bh);
805 memcpy(bh->b_data+offset, data, tocopy);
806 flush_dcache_page(bh->b_page);
807 set_buffer_uptodate(bh);
808 mark_buffer_dirty(bh);
809 unlock_buffer(bh);
810 brelse(bh);
811 offset = 0;
812 towrite -= tocopy;
813 data += tocopy;
814 blk++;
815 }
816out:
Dan Carpenter9c836332009-04-07 14:48:16 +0300817 if (len == towrite) {
818 mutex_unlock(&inode->i_mutex);
Dave Kleikamp115ff502006-07-26 14:52:13 -0500819 return err;
Dan Carpenter9c836332009-04-07 14:48:16 +0300820 }
Dave Kleikamp115ff502006-07-26 14:52:13 -0500821 if (inode->i_size < off+len-towrite)
822 i_size_write(inode, off+len-towrite);
823 inode->i_version++;
824 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
825 mark_inode_dirty(inode);
826 mutex_unlock(&inode->i_mutex);
827 return len - towrite;
828}
829
830#endif
831
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800832static const struct super_operations jfs_super_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 .alloc_inode = jfs_alloc_inode,
834 .destroy_inode = jfs_destroy_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 .dirty_inode = jfs_dirty_inode,
836 .write_inode = jfs_write_inode,
Al Viro62aff862010-06-07 00:28:54 -0400837 .evict_inode = jfs_evict_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 .put_super = jfs_put_super,
839 .sync_fs = jfs_sync_fs,
Takashi Satoc4be0c12009-01-09 16:40:58 -0800840 .freeze_fs = jfs_freeze,
841 .unfreeze_fs = jfs_unfreeze,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 .statfs = jfs_statfs,
843 .remount_fs = jfs_remount,
Dave Kleikamp115ff502006-07-26 14:52:13 -0500844 .show_options = jfs_show_options,
845#ifdef CONFIG_QUOTA
846 .quota_read = jfs_quota_read,
847 .quota_write = jfs_quota_write,
848#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849};
850
Christoph Hellwig39655162007-10-21 16:42:17 -0700851static const struct export_operations jfs_export_operations = {
Christoph Hellwigd425de72007-10-21 16:42:09 -0700852 .fh_to_dentry = jfs_fh_to_dentry,
853 .fh_to_parent = jfs_fh_to_parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 .get_parent = jfs_get_parent,
855};
856
857static struct file_system_type jfs_fs_type = {
858 .owner = THIS_MODULE,
859 .name = "jfs",
Al Viro152a0832010-07-25 00:46:55 +0400860 .mount = jfs_do_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 .kill_sb = kill_block_super,
862 .fs_flags = FS_REQUIRES_DEV,
863};
Eric W. Biederman7f78e032013-03-02 19:39:14 -0800864MODULE_ALIAS_FS("jfs");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700866static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867{
868 struct jfs_inode_info *jfs_ip = (struct jfs_inode_info *) foo;
869
Christoph Lametera35afb82007-05-16 22:10:57 -0700870 memset(jfs_ip, 0, sizeof(struct jfs_inode_info));
871 INIT_LIST_HEAD(&jfs_ip->anon_inode_list);
872 init_rwsem(&jfs_ip->rdwrlock);
873 mutex_init(&jfs_ip->commit_mutex);
874 init_rwsem(&jfs_ip->xattr_sem);
875 spin_lock_init(&jfs_ip->ag_lock);
876 jfs_ip->active_ag = -1;
Christoph Lametera35afb82007-05-16 22:10:57 -0700877 inode_init_once(&jfs_ip->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878}
879
880static int __init init_jfs_fs(void)
881{
882 int i;
883 int rc;
884
885 jfs_inode_cachep =
Dave Kleikamp63f83c92006-10-02 09:55:27 -0500886 kmem_cache_create("jfs_ip", sizeof(struct jfs_inode_info), 0,
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800887 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD,
Paul Mundt20c2df82007-07-20 10:11:58 +0900888 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 if (jfs_inode_cachep == NULL)
890 return -ENOMEM;
891
892 /*
893 * Metapage initialization
894 */
895 rc = metapage_init();
896 if (rc) {
897 jfs_err("metapage_init failed w/rc = %d", rc);
898 goto free_slab;
899 }
900
901 /*
902 * Transaction Manager initialization
903 */
904 rc = txInit();
905 if (rc) {
906 jfs_err("txInit failed w/rc = %d", rc);
907 goto free_metapage;
908 }
909
910 /*
911 * I/O completion thread (endio)
912 */
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -0600913 jfsIOthread = kthread_run(jfsIOWait, NULL, "jfsIO");
914 if (IS_ERR(jfsIOthread)) {
915 rc = PTR_ERR(jfsIOthread);
916 jfs_err("init_jfs_fs: fork failed w/rc = %d", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 goto end_txmngr;
918 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
920 if (commit_threads < 1)
921 commit_threads = num_online_cpus();
922 if (commit_threads > MAX_COMMIT_THREADS)
923 commit_threads = MAX_COMMIT_THREADS;
924
925 for (i = 0; i < commit_threads; i++) {
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -0600926 jfsCommitThread[i] = kthread_run(jfs_lazycommit, NULL, "jfsCommit");
927 if (IS_ERR(jfsCommitThread[i])) {
928 rc = PTR_ERR(jfsCommitThread[i]);
929 jfs_err("init_jfs_fs: fork failed w/rc = %d", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 commit_threads = i;
931 goto kill_committask;
932 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 }
934
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -0600935 jfsSyncThread = kthread_run(jfs_sync, NULL, "jfsSync");
936 if (IS_ERR(jfsSyncThread)) {
937 rc = PTR_ERR(jfsSyncThread);
938 jfs_err("init_jfs_fs: fork failed w/rc = %d", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 goto kill_committask;
940 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
942#ifdef PROC_FS_JFS
943 jfs_proc_init();
944#endif
945
Al Viro76bf09f2012-03-17 18:14:34 -0400946 rc = register_filesystem(&jfs_fs_type);
947 if (!rc)
948 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
Al Viro76bf09f2012-03-17 18:14:34 -0400950#ifdef PROC_FS_JFS
951 jfs_proc_clean();
952#endif
953 kthread_stop(jfsSyncThread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954kill_committask:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 for (i = 0; i < commit_threads; i++)
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -0600956 kthread_stop(jfsCommitThread[i]);
957 kthread_stop(jfsIOthread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958end_txmngr:
959 txExit();
960free_metapage:
961 metapage_exit();
962free_slab:
963 kmem_cache_destroy(jfs_inode_cachep);
964 return rc;
965}
966
967static void __exit exit_jfs_fs(void)
968{
969 int i;
970
971 jfs_info("exit_jfs_fs called");
972
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 txExit();
974 metapage_exit();
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -0600975
976 kthread_stop(jfsIOthread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 for (i = 0; i < commit_threads; i++)
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -0600978 kthread_stop(jfsCommitThread[i]);
979 kthread_stop(jfsSyncThread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980#ifdef PROC_FS_JFS
981 jfs_proc_clean();
982#endif
983 unregister_filesystem(&jfs_fs_type);
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000984
985 /*
986 * Make sure all delayed rcu free inodes are flushed before we
987 * destroy cache.
988 */
989 rcu_barrier();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 kmem_cache_destroy(jfs_inode_cachep);
991}
992
993module_init(init_jfs_fs)
994module_exit(exit_jfs_fs)