blob: ab63333470042e7874c58f8004c15ccb1ceccac6 [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
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * 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
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19
20#include <linux/fs.h>
21#include <linux/config.h>
22#include <linux/module.h>
23#include <linux/parser.h>
24#include <linux/completion.h>
25#include <linux/vfs.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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/uaccess.h>
Mark Bellon8fc27512005-09-06 15:16:54 -070031#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33#include "jfs_incore.h"
34#include "jfs_filsys.h"
Dave Kleikamp1868f4a2005-05-04 15:29:35 -050035#include "jfs_inode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "jfs_metapage.h"
37#include "jfs_superblock.h"
38#include "jfs_dmap.h"
39#include "jfs_imap.h"
40#include "jfs_acl.h"
41#include "jfs_debug.h"
42
43MODULE_DESCRIPTION("The Journaled Filesystem (JFS)");
44MODULE_AUTHOR("Steve Best/Dave Kleikamp/Barry Arndt, IBM");
45MODULE_LICENSE("GPL");
46
47static kmem_cache_t * jfs_inode_cachep;
48
49static struct super_operations jfs_super_operations;
50static struct export_operations jfs_export_operations;
51static struct file_system_type jfs_fs_type;
52
53#define MAX_COMMIT_THREADS 64
54static int commit_threads = 0;
55module_param(commit_threads, int, 0);
56MODULE_PARM_DESC(commit_threads, "Number of commit threads");
57
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -060058static struct task_struct *jfsCommitThread[MAX_COMMIT_THREADS];
59struct task_struct *jfsIOthread;
60struct task_struct *jfsSyncThread;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62#ifdef CONFIG_JFS_DEBUG
63int jfsloglevel = JFS_LOGLEVEL_WARN;
64module_param(jfsloglevel, int, 0644);
65MODULE_PARM_DESC(jfsloglevel, "Specify JFS loglevel (0, 1 or 2)");
66#endif
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068static void jfs_handle_error(struct super_block *sb)
69{
70 struct jfs_sb_info *sbi = JFS_SBI(sb);
71
72 if (sb->s_flags & MS_RDONLY)
73 return;
74
75 updateSuper(sb, FM_DIRTY);
76
77 if (sbi->flag & JFS_ERR_PANIC)
78 panic("JFS (device %s): panic forced after error\n",
79 sb->s_id);
80 else if (sbi->flag & JFS_ERR_REMOUNT_RO) {
81 jfs_err("ERROR: (device %s): remounting filesystem "
82 "as read-only\n",
83 sb->s_id);
84 sb->s_flags |= MS_RDONLY;
85 }
86
87 /* nothing is done for continue beyond marking the superblock dirty */
88}
89
90void jfs_error(struct super_block *sb, const char * function, ...)
91{
92 static char error_buf[256];
93 va_list args;
94
95 va_start(args, function);
96 vsprintf(error_buf, function, args);
97 va_end(args);
98
99 printk(KERN_ERR "ERROR: (device %s): %s\n", sb->s_id, error_buf);
100
101 jfs_handle_error(sb);
102}
103
104static struct inode *jfs_alloc_inode(struct super_block *sb)
105{
106 struct jfs_inode_info *jfs_inode;
107
108 jfs_inode = kmem_cache_alloc(jfs_inode_cachep, GFP_NOFS);
109 if (!jfs_inode)
110 return NULL;
111 return &jfs_inode->vfs_inode;
112}
113
114static void jfs_destroy_inode(struct inode *inode)
115{
116 struct jfs_inode_info *ji = JFS_IP(inode);
117
Dave Kleikamp8a9cd6d2005-08-10 11:14:39 -0500118 BUG_ON(!list_empty(&ji->anon_inode_list));
119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 spin_lock_irq(&ji->ag_lock);
121 if (ji->active_ag != -1) {
122 struct bmap *bmap = JFS_SBI(inode->i_sb)->bmap;
123 atomic_dec(&bmap->db_active[ji->active_ag]);
124 ji->active_ag = -1;
125 }
126 spin_unlock_irq(&ji->ag_lock);
127
128#ifdef CONFIG_JFS_POSIX_ACL
129 if (ji->i_acl != JFS_ACL_NOT_CACHED) {
130 posix_acl_release(ji->i_acl);
131 ji->i_acl = JFS_ACL_NOT_CACHED;
132 }
133 if (ji->i_default_acl != JFS_ACL_NOT_CACHED) {
134 posix_acl_release(ji->i_default_acl);
135 ji->i_default_acl = JFS_ACL_NOT_CACHED;
136 }
137#endif
138
139 kmem_cache_free(jfs_inode_cachep, ji);
140}
141
142static int jfs_statfs(struct super_block *sb, struct kstatfs *buf)
143{
144 struct jfs_sb_info *sbi = JFS_SBI(sb);
145 s64 maxinodes;
146 struct inomap *imap = JFS_IP(sbi->ipimap)->i_imap;
147
148 jfs_info("In jfs_statfs");
149 buf->f_type = JFS_SUPER_MAGIC;
150 buf->f_bsize = sbi->bsize;
151 buf->f_blocks = sbi->bmap->db_mapsize;
152 buf->f_bfree = sbi->bmap->db_nfree;
153 buf->f_bavail = sbi->bmap->db_nfree;
154 /*
155 * If we really return the number of allocated & free inodes, some
156 * applications will fail because they won't see enough free inodes.
157 * We'll try to calculate some guess as to how may inodes we can
158 * really allocate
159 *
160 * buf->f_files = atomic_read(&imap->im_numinos);
161 * buf->f_ffree = atomic_read(&imap->im_numfree);
162 */
163 maxinodes = min((s64) atomic_read(&imap->im_numinos) +
164 ((sbi->bmap->db_nfree >> imap->im_l2nbperiext)
165 << L2INOSPEREXT), (s64) 0xffffffffLL);
166 buf->f_files = maxinodes;
167 buf->f_ffree = maxinodes - (atomic_read(&imap->im_numinos) -
168 atomic_read(&imap->im_numfree));
169
170 buf->f_namelen = JFS_NAME_MAX;
171 return 0;
172}
173
174static void jfs_put_super(struct super_block *sb)
175{
176 struct jfs_sb_info *sbi = JFS_SBI(sb);
177 int rc;
178
179 jfs_info("In jfs_put_super");
180 rc = jfs_umount(sb);
181 if (rc)
182 jfs_err("jfs_umount failed with return code %d", rc);
183 if (sbi->nls_tab)
184 unload_nls(sbi->nls_tab);
185 sbi->nls_tab = NULL;
186
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600187 truncate_inode_pages(sbi->direct_inode->i_mapping, 0);
188 iput(sbi->direct_inode);
189 sbi->direct_inode = NULL;
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 kfree(sbi);
192}
193
194enum {
195 Opt_integrity, Opt_nointegrity, Opt_iocharset, Opt_resize,
Mark Bellon8fc27512005-09-06 15:16:54 -0700196 Opt_resize_nosize, Opt_errors, Opt_ignore, Opt_err, Opt_quota,
197 Opt_usrquota, Opt_grpquota
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198};
199
200static match_table_t tokens = {
201 {Opt_integrity, "integrity"},
202 {Opt_nointegrity, "nointegrity"},
203 {Opt_iocharset, "iocharset=%s"},
204 {Opt_resize, "resize=%u"},
205 {Opt_resize_nosize, "resize"},
206 {Opt_errors, "errors=%s"},
207 {Opt_ignore, "noquota"},
208 {Opt_ignore, "quota"},
Mark Bellon8fc27512005-09-06 15:16:54 -0700209 {Opt_usrquota, "usrquota"},
210 {Opt_grpquota, "grpquota"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 {Opt_err, NULL}
212};
213
214static int parse_options(char *options, struct super_block *sb, s64 *newLVSize,
215 int *flag)
216{
217 void *nls_map = (void *)-1; /* -1: no change; NULL: none */
218 char *p;
219 struct jfs_sb_info *sbi = JFS_SBI(sb);
220
221 *newLVSize = 0;
222
223 if (!options)
224 return 1;
225
226 while ((p = strsep(&options, ",")) != NULL) {
227 substring_t args[MAX_OPT_ARGS];
228 int token;
229 if (!*p)
230 continue;
231
232 token = match_token(p, tokens, args);
233 switch (token) {
234 case Opt_integrity:
235 *flag &= ~JFS_NOINTEGRITY;
236 break;
237 case Opt_nointegrity:
238 *flag |= JFS_NOINTEGRITY;
239 break;
240 case Opt_ignore:
241 /* Silently ignore the quota options */
242 /* Don't do anything ;-) */
243 break;
244 case Opt_iocharset:
245 if (nls_map && nls_map != (void *) -1)
246 unload_nls(nls_map);
247 if (!strcmp(args[0].from, "none"))
248 nls_map = NULL;
249 else {
250 nls_map = load_nls(args[0].from);
251 if (!nls_map) {
252 printk(KERN_ERR
253 "JFS: charset not found\n");
254 goto cleanup;
255 }
256 }
257 break;
258 case Opt_resize:
259 {
260 char *resize = args[0].from;
261 *newLVSize = simple_strtoull(resize, &resize, 0);
262 break;
263 }
264 case Opt_resize_nosize:
265 {
266 *newLVSize = sb->s_bdev->bd_inode->i_size >>
267 sb->s_blocksize_bits;
268 if (*newLVSize == 0)
269 printk(KERN_ERR
270 "JFS: Cannot determine volume size\n");
271 break;
272 }
273 case Opt_errors:
274 {
275 char *errors = args[0].from;
276 if (!errors || !*errors)
277 goto cleanup;
278 if (!strcmp(errors, "continue")) {
279 *flag &= ~JFS_ERR_REMOUNT_RO;
280 *flag &= ~JFS_ERR_PANIC;
281 *flag |= JFS_ERR_CONTINUE;
282 } else if (!strcmp(errors, "remount-ro")) {
283 *flag &= ~JFS_ERR_CONTINUE;
284 *flag &= ~JFS_ERR_PANIC;
285 *flag |= JFS_ERR_REMOUNT_RO;
286 } else if (!strcmp(errors, "panic")) {
287 *flag &= ~JFS_ERR_CONTINUE;
288 *flag &= ~JFS_ERR_REMOUNT_RO;
289 *flag |= JFS_ERR_PANIC;
290 } else {
291 printk(KERN_ERR
292 "JFS: %s is an invalid error handler\n",
293 errors);
294 goto cleanup;
295 }
296 break;
297 }
Mark Bellon8fc27512005-09-06 15:16:54 -0700298
299#if defined(CONFIG_QUOTA)
300 case Opt_quota:
301 case Opt_usrquota:
302 *flag |= JFS_USRQUOTA;
303 break;
304 case Opt_grpquota:
305 *flag |= JFS_GRPQUOTA;
306 break;
307#else
308 case Opt_usrquota:
309 case Opt_grpquota:
310 case Opt_quota:
311 printk(KERN_ERR
312 "JFS: quota operations not supported\n");
313 break;
314#endif
315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 default:
317 printk("jfs: Unrecognized mount option \"%s\" "
318 " or missing value\n", p);
319 goto cleanup;
320 }
321 }
322
323 if (nls_map != (void *) -1) {
324 /* Discard old (if remount) */
325 if (sbi->nls_tab)
326 unload_nls(sbi->nls_tab);
327 sbi->nls_tab = nls_map;
328 }
329 return 1;
330
331cleanup:
332 if (nls_map && nls_map != (void *) -1)
333 unload_nls(nls_map);
334 return 0;
335}
336
337static int jfs_remount(struct super_block *sb, int *flags, char *data)
338{
339 s64 newLVSize = 0;
340 int rc = 0;
341 int flag = JFS_SBI(sb)->flag;
342
343 if (!parse_options(data, sb, &newLVSize, &flag)) {
344 return -EINVAL;
345 }
346 if (newLVSize) {
347 if (sb->s_flags & MS_RDONLY) {
348 printk(KERN_ERR
349 "JFS: resize requires volume to be mounted read-write\n");
350 return -EROFS;
351 }
352 rc = jfs_extendfs(sb, newLVSize, 0);
353 if (rc)
354 return rc;
355 }
356
357 if ((sb->s_flags & MS_RDONLY) && !(*flags & MS_RDONLY)) {
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600358 /*
359 * Invalidate any previously read metadata. fsck may have
360 * changed the on-disk data since we mounted r/o
361 */
362 truncate_inode_pages(JFS_SBI(sb)->direct_inode->i_mapping, 0);
363
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 JFS_SBI(sb)->flag = flag;
365 return jfs_mount_rw(sb, 1);
366 }
367 if ((!(sb->s_flags & MS_RDONLY)) && (*flags & MS_RDONLY)) {
368 rc = jfs_umount_rw(sb);
369 JFS_SBI(sb)->flag = flag;
370 return rc;
371 }
372 if ((JFS_SBI(sb)->flag & JFS_NOINTEGRITY) != (flag & JFS_NOINTEGRITY))
373 if (!(sb->s_flags & MS_RDONLY)) {
374 rc = jfs_umount_rw(sb);
375 if (rc)
376 return rc;
377 JFS_SBI(sb)->flag = flag;
378 return jfs_mount_rw(sb, 1);
379 }
380 JFS_SBI(sb)->flag = flag;
381
382 return 0;
383}
384
385static int jfs_fill_super(struct super_block *sb, void *data, int silent)
386{
387 struct jfs_sb_info *sbi;
388 struct inode *inode;
389 int rc;
390 s64 newLVSize = 0;
391 int flag;
392
393 jfs_info("In jfs_read_super: s_flags=0x%lx", sb->s_flags);
394
395 if (!new_valid_dev(sb->s_bdev->bd_dev))
396 return -EOVERFLOW;
397
Eric Sesterhenn5b3030e2006-02-23 09:47:13 -0600398 sbi = kzalloc(sizeof (struct jfs_sb_info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 if (!sbi)
400 return -ENOSPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 sb->s_fs_info = sbi;
402 sbi->sb = sb;
403
404 /* initialize the mount flag and determine the default error handler */
405 flag = JFS_ERR_REMOUNT_RO;
406
407 if (!parse_options((char *) data, sb, &newLVSize, &flag)) {
408 kfree(sbi);
409 return -EINVAL;
410 }
411 sbi->flag = flag;
412
413#ifdef CONFIG_JFS_POSIX_ACL
414 sb->s_flags |= MS_POSIXACL;
415#endif
416
417 if (newLVSize) {
418 printk(KERN_ERR "resize option for remount only\n");
419 return -EINVAL;
420 }
421
422 /*
423 * Initialize blocksize to 4K.
424 */
425 sb_set_blocksize(sb, PSIZE);
426
427 /*
428 * Set method vectors.
429 */
430 sb->s_op = &jfs_super_operations;
431 sb->s_export_op = &jfs_export_operations;
432
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600433 /*
434 * Initialize direct-mapping inode/address-space
435 */
436 inode = new_inode(sb);
437 if (inode == NULL)
438 goto out_kfree;
439 inode->i_ino = 0;
440 inode->i_nlink = 1;
441 inode->i_size = sb->s_bdev->bd_inode->i_size;
442 inode->i_mapping->a_ops = &jfs_metapage_aops;
Dave Kleikampac17b8b2005-10-03 15:32:11 -0500443 insert_inode_hash(inode);
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600444 mapping_set_gfp_mask(inode->i_mapping, GFP_NOFS);
445
446 sbi->direct_inode = inode;
447
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 rc = jfs_mount(sb);
449 if (rc) {
450 if (!silent) {
451 jfs_err("jfs_mount failed w/return code = %d", rc);
452 }
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600453 goto out_mount_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 }
455 if (sb->s_flags & MS_RDONLY)
456 sbi->log = NULL;
457 else {
458 rc = jfs_mount_rw(sb, 0);
459 if (rc) {
460 if (!silent) {
461 jfs_err("jfs_mount_rw failed, return code = %d",
462 rc);
463 }
464 goto out_no_rw;
465 }
466 }
467
468 sb->s_magic = JFS_SUPER_MAGIC;
469
470 inode = iget(sb, ROOT_I);
471 if (!inode || is_bad_inode(inode))
472 goto out_no_root;
473 sb->s_root = d_alloc_root(inode);
474 if (!sb->s_root)
475 goto out_no_root;
476
477 if (sbi->mntflag & JFS_OS2)
478 sb->s_root->d_op = &jfs_ci_dentry_operations;
479
480 /* logical blocks are represented by 40 bits in pxd_t, etc. */
481 sb->s_maxbytes = ((u64) sb->s_blocksize) << 40;
482#if BITS_PER_LONG == 32
483 /*
484 * Page cache is indexed by long.
485 * I would use MAX_LFS_FILESIZE, but it's only half as big
486 */
487 sb->s_maxbytes = min(((u64) PAGE_CACHE_SIZE << 32) - 1, sb->s_maxbytes);
488#endif
489 sb->s_time_gran = 1;
490 return 0;
491
492out_no_root:
493 jfs_err("jfs_read_super: get root inode failed");
494 if (inode)
495 iput(inode);
496
497out_no_rw:
498 rc = jfs_umount(sb);
499 if (rc) {
500 jfs_err("jfs_umount failed with return code %d", rc);
501 }
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600502out_mount_failed:
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800503 filemap_write_and_wait(sbi->direct_inode->i_mapping);
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600504 truncate_inode_pages(sbi->direct_inode->i_mapping, 0);
505 make_bad_inode(sbi->direct_inode);
506 iput(sbi->direct_inode);
507 sbi->direct_inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508out_kfree:
509 if (sbi->nls_tab)
510 unload_nls(sbi->nls_tab);
511 kfree(sbi);
512 return -EINVAL;
513}
514
515static void jfs_write_super_lockfs(struct super_block *sb)
516{
517 struct jfs_sb_info *sbi = JFS_SBI(sb);
518 struct jfs_log *log = sbi->log;
519
520 if (!(sb->s_flags & MS_RDONLY)) {
521 txQuiesce(sb);
522 lmLogShutdown(log);
523 updateSuper(sb, FM_CLEAN);
524 }
525}
526
527static void jfs_unlockfs(struct super_block *sb)
528{
529 struct jfs_sb_info *sbi = JFS_SBI(sb);
530 struct jfs_log *log = sbi->log;
531 int rc = 0;
532
533 if (!(sb->s_flags & MS_RDONLY)) {
534 updateSuper(sb, FM_MOUNT);
535 if ((rc = lmLogInit(log)))
536 jfs_err("jfs_unlock failed with return code %d", rc);
537 else
538 txResume(sb);
539 }
540}
541
542static struct super_block *jfs_get_sb(struct file_system_type *fs_type,
543 int flags, const char *dev_name, void *data)
544{
545 return get_sb_bdev(fs_type, flags, dev_name, data, jfs_fill_super);
546}
547
548static int jfs_sync_fs(struct super_block *sb, int wait)
549{
550 struct jfs_log *log = JFS_SBI(sb)->log;
551
552 /* log == NULL indicates read-only mount */
Dave Kleikamp1c627822005-05-02 12:25:08 -0600553 if (log) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 jfs_flush_journal(log, wait);
Dave Kleikampcbc3d652005-07-27 09:17:57 -0500555 jfs_syncpt(log, 0);
Dave Kleikamp1c627822005-05-02 12:25:08 -0600556 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
558 return 0;
559}
560
Mark Bellon8fc27512005-09-06 15:16:54 -0700561static int jfs_show_options(struct seq_file *seq, struct vfsmount *vfs)
562{
563 struct jfs_sb_info *sbi = JFS_SBI(vfs->mnt_sb);
564
565 if (sbi->flag & JFS_NOINTEGRITY)
566 seq_puts(seq, ",nointegrity");
567 else
568 seq_puts(seq, ",integrity");
569
570#if defined(CONFIG_QUOTA)
571 if (sbi->flag & JFS_USRQUOTA)
572 seq_puts(seq, ",usrquota");
573
574 if (sbi->flag & JFS_GRPQUOTA)
575 seq_puts(seq, ",grpquota");
576#endif
577
578 return 0;
579}
580
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581static struct super_operations jfs_super_operations = {
582 .alloc_inode = jfs_alloc_inode,
583 .destroy_inode = jfs_destroy_inode,
584 .read_inode = jfs_read_inode,
585 .dirty_inode = jfs_dirty_inode,
586 .write_inode = jfs_write_inode,
587 .delete_inode = jfs_delete_inode,
588 .put_super = jfs_put_super,
589 .sync_fs = jfs_sync_fs,
590 .write_super_lockfs = jfs_write_super_lockfs,
591 .unlockfs = jfs_unlockfs,
592 .statfs = jfs_statfs,
593 .remount_fs = jfs_remount,
Mark Bellon8fc27512005-09-06 15:16:54 -0700594 .show_options = jfs_show_options
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595};
596
597static struct export_operations jfs_export_operations = {
598 .get_parent = jfs_get_parent,
599};
600
601static struct file_system_type jfs_fs_type = {
602 .owner = THIS_MODULE,
603 .name = "jfs",
604 .get_sb = jfs_get_sb,
605 .kill_sb = kill_block_super,
606 .fs_flags = FS_REQUIRES_DEV,
607};
608
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609static void init_once(void *foo, kmem_cache_t * cachep, unsigned long flags)
610{
611 struct jfs_inode_info *jfs_ip = (struct jfs_inode_info *) foo;
612
613 if ((flags & (SLAB_CTOR_VERIFY | SLAB_CTOR_CONSTRUCTOR)) ==
614 SLAB_CTOR_CONSTRUCTOR) {
615 memset(jfs_ip, 0, sizeof(struct jfs_inode_info));
616 INIT_LIST_HEAD(&jfs_ip->anon_inode_list);
617 init_rwsem(&jfs_ip->rdwrlock);
Ingo Molnar1de87442006-01-24 15:22:50 -0600618 mutex_init(&jfs_ip->commit_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 init_rwsem(&jfs_ip->xattr_sem);
620 spin_lock_init(&jfs_ip->ag_lock);
621 jfs_ip->active_ag = -1;
622#ifdef CONFIG_JFS_POSIX_ACL
623 jfs_ip->i_acl = JFS_ACL_NOT_CACHED;
624 jfs_ip->i_default_acl = JFS_ACL_NOT_CACHED;
625#endif
626 inode_init_once(&jfs_ip->vfs_inode);
627 }
628}
629
630static int __init init_jfs_fs(void)
631{
632 int i;
633 int rc;
634
635 jfs_inode_cachep =
636 kmem_cache_create("jfs_ip", sizeof(struct jfs_inode_info), 0,
637 SLAB_RECLAIM_ACCOUNT, init_once, NULL);
638 if (jfs_inode_cachep == NULL)
639 return -ENOMEM;
640
641 /*
642 * Metapage initialization
643 */
644 rc = metapage_init();
645 if (rc) {
646 jfs_err("metapage_init failed w/rc = %d", rc);
647 goto free_slab;
648 }
649
650 /*
651 * Transaction Manager initialization
652 */
653 rc = txInit();
654 if (rc) {
655 jfs_err("txInit failed w/rc = %d", rc);
656 goto free_metapage;
657 }
658
659 /*
660 * I/O completion thread (endio)
661 */
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -0600662 jfsIOthread = kthread_run(jfsIOWait, NULL, "jfsIO");
663 if (IS_ERR(jfsIOthread)) {
664 rc = PTR_ERR(jfsIOthread);
665 jfs_err("init_jfs_fs: fork failed w/rc = %d", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 goto end_txmngr;
667 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
669 if (commit_threads < 1)
670 commit_threads = num_online_cpus();
671 if (commit_threads > MAX_COMMIT_THREADS)
672 commit_threads = MAX_COMMIT_THREADS;
673
674 for (i = 0; i < commit_threads; i++) {
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -0600675 jfsCommitThread[i] = kthread_run(jfs_lazycommit, NULL, "jfsCommit");
676 if (IS_ERR(jfsCommitThread[i])) {
677 rc = PTR_ERR(jfsCommitThread[i]);
678 jfs_err("init_jfs_fs: fork failed w/rc = %d", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 commit_threads = i;
680 goto kill_committask;
681 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 }
683
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -0600684 jfsSyncThread = kthread_run(jfs_sync, NULL, "jfsSync");
685 if (IS_ERR(jfsSyncThread)) {
686 rc = PTR_ERR(jfsSyncThread);
687 jfs_err("init_jfs_fs: fork failed w/rc = %d", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 goto kill_committask;
689 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
691#ifdef PROC_FS_JFS
692 jfs_proc_init();
693#endif
694
695 return register_filesystem(&jfs_fs_type);
696
697kill_committask:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 for (i = 0; i < commit_threads; i++)
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -0600699 kthread_stop(jfsCommitThread[i]);
700 kthread_stop(jfsIOthread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701end_txmngr:
702 txExit();
703free_metapage:
704 metapage_exit();
705free_slab:
706 kmem_cache_destroy(jfs_inode_cachep);
707 return rc;
708}
709
710static void __exit exit_jfs_fs(void)
711{
712 int i;
713
714 jfs_info("exit_jfs_fs called");
715
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 txExit();
717 metapage_exit();
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -0600718
719 kthread_stop(jfsIOthread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 for (i = 0; i < commit_threads; i++)
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -0600721 kthread_stop(jfsCommitThread[i]);
722 kthread_stop(jfsSyncThread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723#ifdef PROC_FS_JFS
724 jfs_proc_clean();
725#endif
726 unregister_filesystem(&jfs_fs_type);
727 kmem_cache_destroy(jfs_inode_cachep);
728}
729
730module_init(init_jfs_fs)
731module_exit(exit_jfs_fs)