1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (C) International Business Machines Corp., 2000-2004
4 * Portions Copyright (C) Christoph Hellwig, 2001-2002
8 #include <linux/module.h>
9 #include <linux/parser.h>
10 #include <linux/completion.h>
11 #include <linux/vfs.h>
12 #include <linux/quotaops.h>
13 #include <linux/mount.h>
14 #include <linux/moduleparam.h>
15 #include <linux/kthread.h>
16 #include <linux/posix_acl.h>
17 #include <linux/buffer_head.h>
18 #include <linux/exportfs.h>
19 #include <linux/crc32.h>
20 #include <linux/slab.h>
21 #include <linux/uaccess.h>
22 #include <linux/seq_file.h>
23 #include <linux/blkdev.h>
25 #include "jfs_incore.h"
26 #include "jfs_filsys.h"
27 #include "jfs_inode.h"
28 #include "jfs_metapage.h"
29 #include "jfs_superblock.h"
33 #include "jfs_debug.h"
34 #include "jfs_xattr.h"
35 #include "jfs_dinode.h"
37 MODULE_DESCRIPTION("The Journaled Filesystem (JFS)");
38 MODULE_AUTHOR("Steve Best/Dave Kleikamp/Barry Arndt, IBM");
39 MODULE_LICENSE("GPL");
41 static struct kmem_cache *jfs_inode_cachep;
43 static const struct super_operations jfs_super_operations;
44 static const struct export_operations jfs_export_operations;
45 static struct file_system_type jfs_fs_type;
47 #define MAX_COMMIT_THREADS 64
48 static int commit_threads;
49 module_param(commit_threads, int, 0);
50 MODULE_PARM_DESC(commit_threads, "Number of commit threads");
52 static struct task_struct *jfsCommitThread[MAX_COMMIT_THREADS];
53 struct task_struct *jfsIOthread;
54 struct task_struct *jfsSyncThread;
56 #ifdef CONFIG_JFS_DEBUG
57 int jfsloglevel = JFS_LOGLEVEL_WARN;
58 module_param(jfsloglevel, int, 0644);
59 MODULE_PARM_DESC(jfsloglevel, "Specify JFS loglevel (0, 1 or 2)");
62 static void jfs_handle_error(struct super_block *sb)
64 struct jfs_sb_info *sbi = JFS_SBI(sb);
69 updateSuper(sb, FM_DIRTY);
71 if (sbi->flag & JFS_ERR_PANIC)
72 panic("JFS (device %s): panic forced after error\n",
74 else if (sbi->flag & JFS_ERR_REMOUNT_RO) {
75 jfs_err("ERROR: (device %s): remounting filesystem as read-only",
77 sb->s_flags |= SB_RDONLY;
80 /* nothing is done for continue beyond marking the superblock dirty */
83 void jfs_error(struct super_block *sb, const char *fmt, ...)
93 pr_err("ERROR: (device %s): %ps: %pV\n",
94 sb->s_id, __builtin_return_address(0), &vaf);
101 static struct inode *jfs_alloc_inode(struct super_block *sb)
103 struct jfs_inode_info *jfs_inode;
105 jfs_inode = alloc_inode_sb(sb, jfs_inode_cachep, GFP_NOFS);
109 memset(&jfs_inode->i_dquot, 0, sizeof(jfs_inode->i_dquot));
111 return &jfs_inode->vfs_inode;
114 static void jfs_free_inode(struct inode *inode)
116 kmem_cache_free(jfs_inode_cachep, JFS_IP(inode));
119 static int jfs_statfs(struct dentry *dentry, struct kstatfs *buf)
121 struct jfs_sb_info *sbi = JFS_SBI(dentry->d_sb);
123 struct inomap *imap = JFS_IP(sbi->ipimap)->i_imap;
125 jfs_info("In jfs_statfs");
126 buf->f_type = JFS_SUPER_MAGIC;
127 buf->f_bsize = sbi->bsize;
128 buf->f_blocks = sbi->bmap->db_mapsize;
129 buf->f_bfree = sbi->bmap->db_nfree;
130 buf->f_bavail = sbi->bmap->db_nfree;
132 * If we really return the number of allocated & free inodes, some
133 * applications will fail because they won't see enough free inodes.
134 * We'll try to calculate some guess as to how many inodes we can
137 * buf->f_files = atomic_read(&imap->im_numinos);
138 * buf->f_ffree = atomic_read(&imap->im_numfree);
140 maxinodes = min((s64) atomic_read(&imap->im_numinos) +
141 ((sbi->bmap->db_nfree >> imap->im_l2nbperiext)
142 << L2INOSPEREXT), (s64) 0xffffffffLL);
143 buf->f_files = maxinodes;
144 buf->f_ffree = maxinodes - (atomic_read(&imap->im_numinos) -
145 atomic_read(&imap->im_numfree));
146 buf->f_fsid.val[0] = crc32_le(0, (char *)&sbi->uuid,
147 sizeof(sbi->uuid)/2);
148 buf->f_fsid.val[1] = crc32_le(0,
149 (char *)&sbi->uuid + sizeof(sbi->uuid)/2,
150 sizeof(sbi->uuid)/2);
152 buf->f_namelen = JFS_NAME_MAX;
157 static int jfs_quota_off(struct super_block *sb, int type);
158 static int jfs_quota_on(struct super_block *sb, int type, int format_id,
159 const struct path *path);
161 static void jfs_quota_off_umount(struct super_block *sb)
165 for (type = 0; type < MAXQUOTAS; type++)
166 jfs_quota_off(sb, type);
169 static const struct quotactl_ops jfs_quotactl_ops = {
170 .quota_on = jfs_quota_on,
171 .quota_off = jfs_quota_off,
172 .quota_sync = dquot_quota_sync,
173 .get_state = dquot_get_state,
174 .set_info = dquot_set_dqinfo,
175 .get_dqblk = dquot_get_dqblk,
176 .set_dqblk = dquot_set_dqblk,
177 .get_nextdqblk = dquot_get_next_dqblk,
180 static inline void jfs_quota_off_umount(struct super_block *sb)
185 static void jfs_put_super(struct super_block *sb)
187 struct jfs_sb_info *sbi = JFS_SBI(sb);
190 jfs_info("In jfs_put_super");
192 jfs_quota_off_umount(sb);
196 jfs_err("jfs_umount failed with return code %d", rc);
198 unload_nls(sbi->nls_tab);
200 truncate_inode_pages(sbi->direct_inode->i_mapping, 0);
201 iput(sbi->direct_inode);
207 Opt_integrity, Opt_nointegrity, Opt_iocharset, Opt_resize,
208 Opt_resize_nosize, Opt_errors, Opt_ignore, Opt_err, Opt_quota,
209 Opt_usrquota, Opt_grpquota, Opt_uid, Opt_gid, Opt_umask,
210 Opt_discard, Opt_nodiscard, Opt_discard_minblk
213 static const match_table_t tokens = {
214 {Opt_integrity, "integrity"},
215 {Opt_nointegrity, "nointegrity"},
216 {Opt_iocharset, "iocharset=%s"},
217 {Opt_resize, "resize=%u"},
218 {Opt_resize_nosize, "resize"},
219 {Opt_errors, "errors=%s"},
220 {Opt_ignore, "noquota"},
221 {Opt_quota, "quota"},
222 {Opt_usrquota, "usrquota"},
223 {Opt_grpquota, "grpquota"},
226 {Opt_umask, "umask=%u"},
227 {Opt_discard, "discard"},
228 {Opt_nodiscard, "nodiscard"},
229 {Opt_discard_minblk, "discard=%u"},
233 static int parse_options(char *options, struct super_block *sb, s64 *newLVSize,
236 void *nls_map = (void *)-1; /* -1: no change; NULL: none */
238 struct jfs_sb_info *sbi = JFS_SBI(sb);
245 while ((p = strsep(&options, ",")) != NULL) {
246 substring_t args[MAX_OPT_ARGS];
251 token = match_token(p, tokens, args);
254 *flag &= ~JFS_NOINTEGRITY;
256 case Opt_nointegrity:
257 *flag |= JFS_NOINTEGRITY;
260 /* Silently ignore the quota options */
261 /* Don't do anything ;-) */
264 if (nls_map && nls_map != (void *) -1)
266 if (!strcmp(args[0].from, "none"))
269 nls_map = load_nls(args[0].from);
271 pr_err("JFS: charset not found\n");
278 char *resize = args[0].from;
279 int rc = kstrtoll(resize, 0, newLVSize);
285 case Opt_resize_nosize:
287 *newLVSize = sb_bdev_nr_blocks(sb);
289 pr_err("JFS: Cannot determine volume size\n");
294 char *errors = args[0].from;
295 if (!errors || !*errors)
297 if (!strcmp(errors, "continue")) {
298 *flag &= ~JFS_ERR_REMOUNT_RO;
299 *flag &= ~JFS_ERR_PANIC;
300 *flag |= JFS_ERR_CONTINUE;
301 } else if (!strcmp(errors, "remount-ro")) {
302 *flag &= ~JFS_ERR_CONTINUE;
303 *flag &= ~JFS_ERR_PANIC;
304 *flag |= JFS_ERR_REMOUNT_RO;
305 } else if (!strcmp(errors, "panic")) {
306 *flag &= ~JFS_ERR_CONTINUE;
307 *flag &= ~JFS_ERR_REMOUNT_RO;
308 *flag |= JFS_ERR_PANIC;
310 pr_err("JFS: %s is an invalid error handler\n",
320 *flag |= JFS_USRQUOTA;
323 *flag |= JFS_GRPQUOTA;
329 pr_err("JFS: quota operations not supported\n");
334 char *uid = args[0].from;
336 int rc = kstrtouint(uid, 0, &val);
340 sbi->uid = make_kuid(current_user_ns(), val);
341 if (!uid_valid(sbi->uid))
348 char *gid = args[0].from;
350 int rc = kstrtouint(gid, 0, &val);
354 sbi->gid = make_kgid(current_user_ns(), val);
355 if (!gid_valid(sbi->gid))
362 char *umask = args[0].from;
363 int rc = kstrtouint(umask, 8, &sbi->umask);
367 if (sbi->umask & ~0777) {
368 pr_err("JFS: Invalid value of umask\n");
375 /* if set to 1, even copying files will cause
377 * -> user has more control over the online trimming
379 sbi->minblks_trim = 64;
380 if (bdev_max_discard_sectors(sb->s_bdev))
381 *flag |= JFS_DISCARD;
383 pr_err("JFS: discard option not supported on device\n");
387 *flag &= ~JFS_DISCARD;
390 case Opt_discard_minblk:
392 char *minblks_trim = args[0].from;
394 if (bdev_max_discard_sectors(sb->s_bdev)) {
395 *flag |= JFS_DISCARD;
396 rc = kstrtouint(minblks_trim, 0,
401 pr_err("JFS: discard option not supported on device\n");
406 printk("jfs: Unrecognized mount option \"%s\" or missing value\n",
412 if (nls_map != (void *) -1) {
413 /* Discard old (if remount) */
414 unload_nls(sbi->nls_tab);
415 sbi->nls_tab = nls_map;
420 if (nls_map && nls_map != (void *) -1)
425 static int jfs_remount(struct super_block *sb, int *flags, char *data)
429 int flag = JFS_SBI(sb)->flag;
433 if (!parse_options(data, sb, &newLVSize, &flag))
438 pr_err("JFS: resize requires volume to be mounted read-write\n");
441 rc = jfs_extendfs(sb, newLVSize, 0);
446 if (sb_rdonly(sb) && !(*flags & SB_RDONLY)) {
448 * Invalidate any previously read metadata. fsck may have
449 * changed the on-disk data since we mounted r/o
451 truncate_inode_pages(JFS_SBI(sb)->direct_inode->i_mapping, 0);
453 JFS_SBI(sb)->flag = flag;
454 ret = jfs_mount_rw(sb, 1);
456 /* mark the fs r/w for quota activity */
457 sb->s_flags &= ~SB_RDONLY;
459 dquot_resume(sb, -1);
462 if (!sb_rdonly(sb) && (*flags & SB_RDONLY)) {
463 rc = dquot_suspend(sb, -1);
466 rc = jfs_umount_rw(sb);
467 JFS_SBI(sb)->flag = flag;
470 if ((JFS_SBI(sb)->flag & JFS_NOINTEGRITY) != (flag & JFS_NOINTEGRITY))
471 if (!sb_rdonly(sb)) {
472 rc = jfs_umount_rw(sb);
476 JFS_SBI(sb)->flag = flag;
477 ret = jfs_mount_rw(sb, 1);
480 JFS_SBI(sb)->flag = flag;
485 static int jfs_fill_super(struct super_block *sb, void *data, int silent)
487 struct jfs_sb_info *sbi;
491 int flag, ret = -EINVAL;
493 jfs_info("In jfs_read_super: s_flags=0x%lx", sb->s_flags);
495 sbi = kzalloc(sizeof(struct jfs_sb_info), GFP_KERNEL);
500 sb->s_max_links = JFS_LINK_MAX;
502 sb->s_time_max = U32_MAX;
504 sbi->uid = INVALID_UID;
505 sbi->gid = INVALID_GID;
508 /* initialize the mount flag and determine the default error handler */
509 flag = JFS_ERR_REMOUNT_RO;
511 if (!parse_options((char *) data, sb, &newLVSize, &flag))
515 #ifdef CONFIG_JFS_POSIX_ACL
516 sb->s_flags |= SB_POSIXACL;
520 pr_err("resize option for remount only\n");
525 * Initialize blocksize to 4K.
527 sb_set_blocksize(sb, PSIZE);
530 * Set method vectors.
532 sb->s_op = &jfs_super_operations;
533 sb->s_export_op = &jfs_export_operations;
534 sb->s_xattr = jfs_xattr_handlers;
536 sb->dq_op = &dquot_operations;
537 sb->s_qcop = &jfs_quotactl_ops;
538 sb->s_quota_types = QTYPE_MASK_USR | QTYPE_MASK_GRP;
542 * Initialize direct-mapping inode/address-space
544 inode = new_inode(sb);
549 inode->i_size = bdev_nr_bytes(sb->s_bdev);
550 inode->i_mapping->a_ops = &jfs_metapage_aops;
551 inode_fake_hash(inode);
552 mapping_set_gfp_mask(inode->i_mapping, GFP_NOFS);
554 sbi->direct_inode = inode;
559 jfs_err("jfs_mount failed w/return code = %d", rc);
560 goto out_mount_failed;
565 rc = jfs_mount_rw(sb, 0);
568 jfs_err("jfs_mount_rw failed, return code = %d",
575 sb->s_magic = JFS_SUPER_MAGIC;
577 if (sbi->mntflag & JFS_OS2)
578 sb->s_d_op = &jfs_ci_dentry_operations;
580 inode = jfs_iget(sb, ROOT_I);
582 ret = PTR_ERR(inode);
585 sb->s_root = d_make_root(inode);
589 /* logical blocks are represented by 40 bits in pxd_t, etc.
590 * and page cache is indexed by long
592 sb->s_maxbytes = min(((loff_t)sb->s_blocksize) << 40, MAX_LFS_FILESIZE);
597 jfs_err("jfs_read_super: get root dentry failed");
602 jfs_err("jfs_umount failed with return code %d", rc);
604 filemap_write_and_wait(sbi->direct_inode->i_mapping);
605 truncate_inode_pages(sbi->direct_inode->i_mapping, 0);
606 make_bad_inode(sbi->direct_inode);
607 iput(sbi->direct_inode);
608 sbi->direct_inode = NULL;
610 unload_nls(sbi->nls_tab);
616 static int jfs_freeze(struct super_block *sb)
618 struct jfs_sb_info *sbi = JFS_SBI(sb);
619 struct jfs_log *log = sbi->log;
622 if (!sb_rdonly(sb)) {
624 rc = lmLogShutdown(log);
626 jfs_error(sb, "lmLogShutdown failed\n");
628 /* let operations fail rather than hang */
633 rc = updateSuper(sb, FM_CLEAN);
635 jfs_err("jfs_freeze: updateSuper failed");
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.
646 static int jfs_unfreeze(struct super_block *sb)
648 struct jfs_sb_info *sbi = JFS_SBI(sb);
649 struct jfs_log *log = sbi->log;
652 if (!sb_rdonly(sb)) {
653 rc = updateSuper(sb, FM_MOUNT);
655 jfs_error(sb, "updateSuper failed\n");
660 jfs_error(sb, "lmLogInit failed\n");
667 static struct dentry *jfs_do_mount(struct file_system_type *fs_type,
668 int flags, const char *dev_name, void *data)
670 return mount_bdev(fs_type, flags, dev_name, data, jfs_fill_super);
673 static int jfs_sync_fs(struct super_block *sb, int wait)
675 struct jfs_log *log = JFS_SBI(sb)->log;
677 /* log == NULL indicates read-only mount */
680 * Write quota structures to quota file, sync_blockdev() will
681 * write them to disk later
683 dquot_writeback_dquots(sb, -1);
684 jfs_flush_journal(log, wait);
691 static int jfs_show_options(struct seq_file *seq, struct dentry *root)
693 struct jfs_sb_info *sbi = JFS_SBI(root->d_sb);
695 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));
699 if (sbi->umask != -1)
700 seq_printf(seq, ",umask=%03o", sbi->umask);
701 if (sbi->flag & JFS_NOINTEGRITY)
702 seq_puts(seq, ",nointegrity");
703 if (sbi->flag & JFS_DISCARD)
704 seq_printf(seq, ",discard=%u", sbi->minblks_trim);
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");
713 if (sbi->flag & JFS_USRQUOTA)
714 seq_puts(seq, ",usrquota");
716 if (sbi->flag & JFS_GRPQUOTA)
717 seq_puts(seq, ",grpquota");
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
727 * itself serializes the operations (and no one else should touch the files)
728 * we don't have to be afraid of races */
729 static ssize_t jfs_quota_read(struct super_block *sb, int type, char *data,
730 size_t len, loff_t off)
732 struct inode *inode = sb_dqopt(sb)->files[type];
733 sector_t blk = off >> sb->s_blocksize_bits;
735 int offset = off & (sb->s_blocksize - 1);
738 struct buffer_head tmp_bh;
739 struct buffer_head *bh;
740 loff_t i_size = i_size_read(inode);
744 if (off+len > i_size)
748 tocopy = sb->s_blocksize - offset < toread ?
749 sb->s_blocksize - offset : toread;
752 tmp_bh.b_size = i_blocksize(inode);
753 err = jfs_get_block(inode, blk, &tmp_bh, 0);
756 if (!buffer_mapped(&tmp_bh)) /* A hole? */
757 memset(data, 0, tocopy);
759 bh = sb_bread(sb, tmp_bh.b_blocknr);
762 memcpy(data, bh->b_data+offset, tocopy);
773 /* Write to quotafile */
774 static ssize_t jfs_quota_write(struct super_block *sb, int type,
775 const char *data, size_t len, loff_t off)
777 struct inode *inode = sb_dqopt(sb)->files[type];
778 sector_t blk = off >> sb->s_blocksize_bits;
780 int offset = off & (sb->s_blocksize - 1);
782 size_t towrite = len;
783 struct buffer_head tmp_bh;
784 struct buffer_head *bh;
787 while (towrite > 0) {
788 tocopy = sb->s_blocksize - offset < towrite ?
789 sb->s_blocksize - offset : towrite;
792 tmp_bh.b_size = i_blocksize(inode);
793 err = jfs_get_block(inode, blk, &tmp_bh, 1);
796 if (offset || tocopy != sb->s_blocksize)
797 bh = sb_bread(sb, tmp_bh.b_blocknr);
799 bh = sb_getblk(sb, tmp_bh.b_blocknr);
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);
817 if (len == towrite) {
821 if (inode->i_size < off+len-towrite)
822 i_size_write(inode, off+len-towrite);
823 inode->i_mtime = inode->i_ctime = current_time(inode);
824 mark_inode_dirty(inode);
826 return len - towrite;
829 static struct dquot **jfs_get_dquots(struct inode *inode)
831 return JFS_IP(inode)->i_dquot;
834 static int jfs_quota_on(struct super_block *sb, int type, int format_id,
835 const struct path *path)
840 err = dquot_quota_on(sb, type, format_id, path);
844 inode = d_inode(path->dentry);
846 JFS_IP(inode)->mode2 |= JFS_NOATIME_FL | JFS_IMMUTABLE_FL;
847 inode_set_flags(inode, S_NOATIME | S_IMMUTABLE,
848 S_NOATIME | S_IMMUTABLE);
850 mark_inode_dirty(inode);
855 static int jfs_quota_off(struct super_block *sb, int type)
857 struct inode *inode = sb_dqopt(sb)->files[type];
860 if (!inode || !igrab(inode))
863 err = dquot_quota_off(sb, type);
868 JFS_IP(inode)->mode2 &= ~(JFS_NOATIME_FL | JFS_IMMUTABLE_FL);
869 inode_set_flags(inode, 0, S_NOATIME | S_IMMUTABLE);
871 mark_inode_dirty(inode);
876 return dquot_quota_off(sb, type);
880 static const struct super_operations jfs_super_operations = {
881 .alloc_inode = jfs_alloc_inode,
882 .free_inode = jfs_free_inode,
883 .dirty_inode = jfs_dirty_inode,
884 .write_inode = jfs_write_inode,
885 .evict_inode = jfs_evict_inode,
886 .put_super = jfs_put_super,
887 .sync_fs = jfs_sync_fs,
888 .freeze_fs = jfs_freeze,
889 .unfreeze_fs = jfs_unfreeze,
890 .statfs = jfs_statfs,
891 .remount_fs = jfs_remount,
892 .show_options = jfs_show_options,
894 .quota_read = jfs_quota_read,
895 .quota_write = jfs_quota_write,
896 .get_dquots = jfs_get_dquots,
900 static const struct export_operations jfs_export_operations = {
901 .fh_to_dentry = jfs_fh_to_dentry,
902 .fh_to_parent = jfs_fh_to_parent,
903 .get_parent = jfs_get_parent,
906 static struct file_system_type jfs_fs_type = {
907 .owner = THIS_MODULE,
909 .mount = jfs_do_mount,
910 .kill_sb = kill_block_super,
911 .fs_flags = FS_REQUIRES_DEV,
913 MODULE_ALIAS_FS("jfs");
915 static void init_once(void *foo)
917 struct jfs_inode_info *jfs_ip = (struct jfs_inode_info *) foo;
919 memset(jfs_ip, 0, sizeof(struct jfs_inode_info));
920 INIT_LIST_HEAD(&jfs_ip->anon_inode_list);
921 init_rwsem(&jfs_ip->rdwrlock);
922 mutex_init(&jfs_ip->commit_mutex);
923 init_rwsem(&jfs_ip->xattr_sem);
924 spin_lock_init(&jfs_ip->ag_lock);
925 jfs_ip->active_ag = -1;
926 inode_init_once(&jfs_ip->vfs_inode);
929 static int __init init_jfs_fs(void)
935 kmem_cache_create_usercopy("jfs_ip", sizeof(struct jfs_inode_info),
936 0, SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD|SLAB_ACCOUNT,
937 offsetof(struct jfs_inode_info, i_inline_all),
938 sizeof_field(struct jfs_inode_info, i_inline_all),
940 if (jfs_inode_cachep == NULL)
944 * Metapage initialization
946 rc = metapage_init();
948 jfs_err("metapage_init failed w/rc = %d", rc);
953 * Transaction Manager initialization
957 jfs_err("txInit failed w/rc = %d", rc);
962 * I/O completion thread (endio)
964 jfsIOthread = kthread_run(jfsIOWait, NULL, "jfsIO");
965 if (IS_ERR(jfsIOthread)) {
966 rc = PTR_ERR(jfsIOthread);
967 jfs_err("init_jfs_fs: fork failed w/rc = %d", rc);
971 if (commit_threads < 1)
972 commit_threads = num_online_cpus();
973 if (commit_threads > MAX_COMMIT_THREADS)
974 commit_threads = MAX_COMMIT_THREADS;
976 for (i = 0; i < commit_threads; i++) {
977 jfsCommitThread[i] = kthread_run(jfs_lazycommit, NULL,
979 if (IS_ERR(jfsCommitThread[i])) {
980 rc = PTR_ERR(jfsCommitThread[i]);
981 jfs_err("init_jfs_fs: fork failed w/rc = %d", rc);
983 goto kill_committask;
987 jfsSyncThread = kthread_run(jfs_sync, NULL, "jfsSync");
988 if (IS_ERR(jfsSyncThread)) {
989 rc = PTR_ERR(jfsSyncThread);
990 jfs_err("init_jfs_fs: fork failed w/rc = %d", rc);
991 goto kill_committask;
998 rc = register_filesystem(&jfs_fs_type);
1005 kthread_stop(jfsSyncThread);
1007 for (i = 0; i < commit_threads; i++)
1008 kthread_stop(jfsCommitThread[i]);
1009 kthread_stop(jfsIOthread);
1015 kmem_cache_destroy(jfs_inode_cachep);
1019 static void __exit exit_jfs_fs(void)
1023 jfs_info("exit_jfs_fs called");
1028 kthread_stop(jfsIOthread);
1029 for (i = 0; i < commit_threads; i++)
1030 kthread_stop(jfsCommitThread[i]);
1031 kthread_stop(jfsSyncThread);
1035 unregister_filesystem(&jfs_fs_type);
1038 * Make sure all delayed rcu free inodes are flushed before we
1042 kmem_cache_destroy(jfs_inode_cachep);
1045 module_init(init_jfs_fs)
1046 module_exit(exit_jfs_fs)