Fedora kernel-2.6.17-1.2142_FC4 patched with stable patch-2.6.17.4-vs2.0.2-rc26.diff
[linux-2.6.git] / fs / jfs / super.c
1 /*
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>
26 #include <linux/mount.h>
27 #include <linux/moduleparam.h>
28 #include <linux/kthread.h>
29 #include <linux/posix_acl.h>
30 #include <asm/uaccess.h>
31 #include <linux/seq_file.h>
32
33 #include "jfs_incore.h"
34 #include "jfs_filsys.h"
35 #include "jfs_inode.h"
36 #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
43 MODULE_DESCRIPTION("The Journaled Filesystem (JFS)");
44 MODULE_AUTHOR("Steve Best/Dave Kleikamp/Barry Arndt, IBM");
45 MODULE_LICENSE("GPL");
46
47 static kmem_cache_t * jfs_inode_cachep;
48
49 static struct super_operations jfs_super_operations;
50 static struct export_operations jfs_export_operations;
51 static struct file_system_type jfs_fs_type;
52
53 #define MAX_COMMIT_THREADS 64
54 static int commit_threads = 0;
55 module_param(commit_threads, int, 0);
56 MODULE_PARM_DESC(commit_threads, "Number of commit threads");
57
58 static struct task_struct *jfsCommitThread[MAX_COMMIT_THREADS];
59 struct task_struct *jfsIOthread;
60 struct task_struct *jfsSyncThread;
61
62 #ifdef CONFIG_JFS_DEBUG
63 int jfsloglevel = JFS_LOGLEVEL_WARN;
64 module_param(jfsloglevel, int, 0644);
65 MODULE_PARM_DESC(jfsloglevel, "Specify JFS loglevel (0, 1 or 2)");
66 #endif
67
68 static 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
90 void 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
104 static 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
114 static void jfs_destroy_inode(struct inode *inode)
115 {
116         struct jfs_inode_info *ji = JFS_IP(inode);
117
118         BUG_ON(!list_empty(&ji->anon_inode_list));
119
120         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
142 static 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
174 static 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
187         truncate_inode_pages(sbi->direct_inode->i_mapping, 0);
188         iput(sbi->direct_inode);
189         sbi->direct_inode = NULL;
190
191         kfree(sbi);
192 }
193
194 enum {
195         Opt_integrity, Opt_nointegrity, Opt_iocharset, Opt_resize,
196         Opt_resize_nosize, Opt_errors, Opt_ignore, Opt_err, Opt_quota,
197         Opt_usrquota, Opt_grpquota, Opt_uid, Opt_gid, Opt_umask,
198         Opt_tagxid
199 };
200
201 static match_table_t tokens = {
202         {Opt_integrity, "integrity"},
203         {Opt_nointegrity, "nointegrity"},
204         {Opt_iocharset, "iocharset=%s"},
205         {Opt_resize, "resize=%u"},
206         {Opt_resize_nosize, "resize"},
207         {Opt_errors, "errors=%s"},
208         {Opt_tagxid, "tagxid"},
209         {Opt_ignore, "noquota"},
210         {Opt_ignore, "quota"},
211         {Opt_usrquota, "usrquota"},
212         {Opt_grpquota, "grpquota"},
213         {Opt_uid, "uid=%u"},
214         {Opt_gid, "gid=%u"},
215         {Opt_umask, "umask=%u"},
216         {Opt_err, NULL}
217 };
218
219 static int parse_options(char *options, struct super_block *sb, s64 *newLVSize,
220                          int *flag)
221 {
222         void *nls_map = (void *)-1;     /* -1: no change;  NULL: none */
223         char *p;
224         struct jfs_sb_info *sbi = JFS_SBI(sb);
225
226         *newLVSize = 0;
227
228         if (!options)
229                 return 1;
230
231         while ((p = strsep(&options, ",")) != NULL) {
232                 substring_t args[MAX_OPT_ARGS];
233                 int token;
234                 if (!*p)
235                         continue;
236
237                 token = match_token(p, tokens, args);
238                 switch (token) {
239                 case Opt_integrity:
240                         *flag &= ~JFS_NOINTEGRITY;
241                         break;
242                 case Opt_nointegrity:
243                         *flag |= JFS_NOINTEGRITY;
244                         break;
245                 case Opt_ignore:
246                         /* Silently ignore the quota options */
247                         /* Don't do anything ;-) */
248                         break;
249                 case Opt_iocharset:
250                         if (nls_map && nls_map != (void *) -1)
251                                 unload_nls(nls_map);
252                         if (!strcmp(args[0].from, "none"))
253                                 nls_map = NULL;
254                         else {
255                                 nls_map = load_nls(args[0].from);
256                                 if (!nls_map) {
257                                         printk(KERN_ERR
258                                                "JFS: charset not found\n");
259                                         goto cleanup;
260                                 }
261                         }
262                         break;
263                 case Opt_resize:
264                 {
265                         char *resize = args[0].from;
266                         *newLVSize = simple_strtoull(resize, &resize, 0);
267                         break;
268                 }
269                 case Opt_resize_nosize:
270                 {
271                         *newLVSize = sb->s_bdev->bd_inode->i_size >>
272                                 sb->s_blocksize_bits;
273                         if (*newLVSize == 0)
274                                 printk(KERN_ERR
275                                        "JFS: Cannot determine volume size\n");
276                         break;
277                 }
278                 case Opt_errors:
279                 {
280                         char *errors = args[0].from;
281                         if (!errors || !*errors)
282                                 goto cleanup;
283                         if (!strcmp(errors, "continue")) {
284                                 *flag &= ~JFS_ERR_REMOUNT_RO;
285                                 *flag &= ~JFS_ERR_PANIC;
286                                 *flag |= JFS_ERR_CONTINUE;
287                         } else if (!strcmp(errors, "remount-ro")) {
288                                 *flag &= ~JFS_ERR_CONTINUE;
289                                 *flag &= ~JFS_ERR_PANIC;
290                                 *flag |= JFS_ERR_REMOUNT_RO;
291                         } else if (!strcmp(errors, "panic")) {
292                                 *flag &= ~JFS_ERR_CONTINUE;
293                                 *flag &= ~JFS_ERR_REMOUNT_RO;
294                                 *flag |= JFS_ERR_PANIC;
295                         } else {
296                                 printk(KERN_ERR
297                                        "JFS: %s is an invalid error handler\n",
298                                        errors);
299                                 goto cleanup;
300                         }
301                         break;
302                 }
303
304 #if defined(CONFIG_QUOTA)
305                 case Opt_quota:
306                 case Opt_usrquota:
307                         *flag |= JFS_USRQUOTA;
308                         break;
309                 case Opt_grpquota:
310                         *flag |= JFS_GRPQUOTA;
311                         break;
312 #else
313                 case Opt_usrquota:
314                 case Opt_grpquota:
315                 case Opt_quota:
316                         printk(KERN_ERR
317                                "JFS: quota operations not supported\n");
318                         break;
319 #endif
320                 case Opt_uid:
321                 {
322                         char *uid = args[0].from;
323                         sbi->uid = simple_strtoul(uid, &uid, 0);
324                         break;
325                 }
326                 case Opt_gid:
327                 {
328                         char *gid = args[0].from;
329                         sbi->gid = simple_strtoul(gid, &gid, 0);
330                         break;
331                 }
332                 case Opt_umask:
333                 {
334                         char *umask = args[0].from;
335                         sbi->umask = simple_strtoul(umask, &umask, 8);
336                         if (sbi->umask & ~0777) {
337                                 printk(KERN_ERR
338                                        "JFS: Invalid value of umask\n");
339                                 goto cleanup;
340                         }
341                         break;
342                 }
343 #ifndef CONFIG_TAGGING_NONE
344                 case Opt_tagxid:
345                         *flag |= JFS_TAGXID;
346                         break;
347 #endif
348                 default:
349                         printk("jfs: Unrecognized mount option \"%s\" "
350                                         " or missing value\n", p);
351                         goto cleanup;
352                 }
353         }
354
355         if (nls_map != (void *) -1) {
356                 /* Discard old (if remount) */
357                 if (sbi->nls_tab)
358                         unload_nls(sbi->nls_tab);
359                 sbi->nls_tab = nls_map;
360         }
361         return 1;
362
363 cleanup:
364         if (nls_map && nls_map != (void *) -1)
365                 unload_nls(nls_map);
366         return 0;
367 }
368
369 static int jfs_remount(struct super_block *sb, int *flags, char *data)
370 {
371         s64 newLVSize = 0;
372         int rc = 0;
373         int flag = JFS_SBI(sb)->flag;
374
375         if (!parse_options(data, sb, &newLVSize, &flag)) {
376                 return -EINVAL;
377         }
378
379         if ((flag & JFS_TAGXID) && !(sb->s_flags & MS_TAGXID)) {
380                 printk(KERN_ERR "JFS: %s: tagxid not permitted on remount.\n",
381                         sb->s_id);
382                 return -EINVAL;
383         }
384
385         if (newLVSize) {
386                 if (sb->s_flags & MS_RDONLY) {
387                         printk(KERN_ERR
388                   "JFS: resize requires volume to be mounted read-write\n");
389                         return -EROFS;
390                 }
391                 rc = jfs_extendfs(sb, newLVSize, 0);
392                 if (rc)
393                         return rc;
394         }
395
396         if ((sb->s_flags & MS_RDONLY) && !(*flags & MS_RDONLY)) {
397                 /*
398                  * Invalidate any previously read metadata.  fsck may have
399                  * changed the on-disk data since we mounted r/o
400                  */
401                 truncate_inode_pages(JFS_SBI(sb)->direct_inode->i_mapping, 0);
402
403                 JFS_SBI(sb)->flag = flag;
404                 return jfs_mount_rw(sb, 1);
405         }
406         if ((!(sb->s_flags & MS_RDONLY)) && (*flags & MS_RDONLY)) {
407                 rc = jfs_umount_rw(sb);
408                 JFS_SBI(sb)->flag = flag;
409                 return rc;
410         }
411         if ((JFS_SBI(sb)->flag & JFS_NOINTEGRITY) != (flag & JFS_NOINTEGRITY))
412                 if (!(sb->s_flags & MS_RDONLY)) {
413                         rc = jfs_umount_rw(sb);
414                         if (rc)
415                                 return rc;
416                         JFS_SBI(sb)->flag = flag;
417                         return jfs_mount_rw(sb, 1);
418                 }
419         JFS_SBI(sb)->flag = flag;
420
421         return 0;
422 }
423
424 static int jfs_fill_super(struct super_block *sb, void *data, int silent)
425 {
426         struct jfs_sb_info *sbi;
427         struct inode *inode;
428         int rc;
429         s64 newLVSize = 0;
430         int flag;
431
432         jfs_info("In jfs_read_super: s_flags=0x%lx", sb->s_flags);
433
434         if (!new_valid_dev(sb->s_bdev->bd_dev))
435                 return -EOVERFLOW;
436
437         sbi = kzalloc(sizeof (struct jfs_sb_info), GFP_KERNEL);
438         if (!sbi)
439                 return -ENOSPC;
440         sb->s_fs_info = sbi;
441         sbi->sb = sb;
442         sbi->uid = sbi->gid = sbi->umask = -1;
443
444         /* initialize the mount flag and determine the default error handler */
445         flag = JFS_ERR_REMOUNT_RO;
446
447         if (!parse_options((char *) data, sb, &newLVSize, &flag)) {
448                 kfree(sbi);
449                 return -EINVAL;
450         }
451         sbi->flag = flag;
452
453 #ifdef CONFIG_JFS_POSIX_ACL
454         sb->s_flags |= MS_POSIXACL;
455 #endif
456         /* map mount option tagxid */
457         if (sbi->flag & JFS_TAGXID)
458                 sb->s_flags |= MS_TAGXID;
459
460         if (newLVSize) {
461                 printk(KERN_ERR "resize option for remount only\n");
462                 return -EINVAL;
463         }
464
465         /*
466          * Initialize blocksize to 4K.
467          */
468         sb_set_blocksize(sb, PSIZE);
469
470         /*
471          * Set method vectors.
472          */
473         sb->s_op = &jfs_super_operations;
474         sb->s_export_op = &jfs_export_operations;
475
476         /*
477          * Initialize direct-mapping inode/address-space
478          */
479         inode = new_inode(sb);
480         if (inode == NULL)
481                 goto out_kfree;
482         inode->i_ino = 0;
483         inode->i_nlink = 1;
484         inode->i_size = sb->s_bdev->bd_inode->i_size;
485         inode->i_mapping->a_ops = &jfs_metapage_aops;
486         insert_inode_hash(inode);
487         mapping_set_gfp_mask(inode->i_mapping, GFP_NOFS);
488
489         sbi->direct_inode = inode;
490
491         rc = jfs_mount(sb);
492         if (rc) {
493                 if (!silent) {
494                         jfs_err("jfs_mount failed w/return code = %d", rc);
495                 }
496                 goto out_mount_failed;
497         }
498         if (sb->s_flags & MS_RDONLY)
499                 sbi->log = NULL;
500         else {
501                 rc = jfs_mount_rw(sb, 0);
502                 if (rc) {
503                         if (!silent) {
504                                 jfs_err("jfs_mount_rw failed, return code = %d",
505                                         rc);
506                         }
507                         goto out_no_rw;
508                 }
509         }
510
511         sb->s_magic = JFS_SUPER_MAGIC;
512
513         inode = iget(sb, ROOT_I);
514         if (!inode || is_bad_inode(inode))
515                 goto out_no_root;
516         sb->s_root = d_alloc_root(inode);
517         if (!sb->s_root)
518                 goto out_no_root;
519
520         if (sbi->mntflag & JFS_OS2)
521                 sb->s_root->d_op = &jfs_ci_dentry_operations;
522
523         /* logical blocks are represented by 40 bits in pxd_t, etc. */
524         sb->s_maxbytes = ((u64) sb->s_blocksize) << 40;
525 #if BITS_PER_LONG == 32
526         /*
527          * Page cache is indexed by long.
528          * I would use MAX_LFS_FILESIZE, but it's only half as big
529          */
530         sb->s_maxbytes = min(((u64) PAGE_CACHE_SIZE << 32) - 1, sb->s_maxbytes);
531 #endif
532         sb->s_time_gran = 1;
533         return 0;
534
535 out_no_root:
536         jfs_err("jfs_read_super: get root inode failed");
537         if (inode)
538                 iput(inode);
539
540 out_no_rw:
541         rc = jfs_umount(sb);
542         if (rc) {
543                 jfs_err("jfs_umount failed with return code %d", rc);
544         }
545 out_mount_failed:
546         filemap_write_and_wait(sbi->direct_inode->i_mapping);
547         truncate_inode_pages(sbi->direct_inode->i_mapping, 0);
548         make_bad_inode(sbi->direct_inode);
549         iput(sbi->direct_inode);
550         sbi->direct_inode = NULL;
551 out_kfree:
552         if (sbi->nls_tab)
553                 unload_nls(sbi->nls_tab);
554         kfree(sbi);
555         return -EINVAL;
556 }
557
558 static void jfs_write_super_lockfs(struct super_block *sb)
559 {
560         struct jfs_sb_info *sbi = JFS_SBI(sb);
561         struct jfs_log *log = sbi->log;
562
563         if (!(sb->s_flags & MS_RDONLY)) {
564                 txQuiesce(sb);
565                 lmLogShutdown(log);
566                 updateSuper(sb, FM_CLEAN);
567         }
568 }
569
570 static void jfs_unlockfs(struct super_block *sb)
571 {
572         struct jfs_sb_info *sbi = JFS_SBI(sb);
573         struct jfs_log *log = sbi->log;
574         int rc = 0;
575
576         if (!(sb->s_flags & MS_RDONLY)) {
577                 updateSuper(sb, FM_MOUNT);
578                 if ((rc = lmLogInit(log)))
579                         jfs_err("jfs_unlock failed with return code %d", rc);
580                 else
581                         txResume(sb);
582         }
583 }
584
585 static struct super_block *jfs_get_sb(struct file_system_type *fs_type, 
586         int flags, const char *dev_name, void *data)
587 {
588         return get_sb_bdev(fs_type, flags, dev_name, data, jfs_fill_super);
589 }
590
591 static int jfs_sync_fs(struct super_block *sb, int wait)
592 {
593         struct jfs_log *log = JFS_SBI(sb)->log;
594
595         /* log == NULL indicates read-only mount */
596         if (log) {
597                 jfs_flush_journal(log, wait);
598                 jfs_syncpt(log, 0);
599         }
600
601         return 0;
602 }
603
604 static int jfs_show_options(struct seq_file *seq, struct vfsmount *vfs)
605 {
606         struct jfs_sb_info *sbi = JFS_SBI(vfs->mnt_sb);
607
608         if (sbi->uid != -1)
609                 seq_printf(seq, ",uid=%d", sbi->uid);
610         if (sbi->gid != -1)
611                 seq_printf(seq, ",gid=%d", sbi->gid);
612         if (sbi->umask != -1)
613                 seq_printf(seq, ",umask=%03o", sbi->umask);
614         if (sbi->flag & JFS_NOINTEGRITY)
615                 seq_puts(seq, ",nointegrity");
616
617 #if defined(CONFIG_QUOTA)
618         if (sbi->flag & JFS_USRQUOTA)
619                 seq_puts(seq, ",usrquota");
620
621         if (sbi->flag & JFS_GRPQUOTA)
622                 seq_puts(seq, ",grpquota");
623 #endif
624
625         return 0;
626 }
627
628 static struct super_operations jfs_super_operations = {
629         .alloc_inode    = jfs_alloc_inode,
630         .destroy_inode  = jfs_destroy_inode,
631         .read_inode     = jfs_read_inode,
632         .dirty_inode    = jfs_dirty_inode,
633         .write_inode    = jfs_write_inode,
634         .delete_inode   = jfs_delete_inode,
635         .put_super      = jfs_put_super,
636         .sync_fs        = jfs_sync_fs,
637         .write_super_lockfs = jfs_write_super_lockfs,
638         .unlockfs       = jfs_unlockfs,
639         .statfs         = jfs_statfs,
640         .remount_fs     = jfs_remount,
641         .show_options   = jfs_show_options
642 };
643
644 static struct export_operations jfs_export_operations = {
645         .get_parent     = jfs_get_parent,
646 };
647
648 static struct file_system_type jfs_fs_type = {
649         .owner          = THIS_MODULE,
650         .name           = "jfs",
651         .get_sb         = jfs_get_sb,
652         .kill_sb        = kill_block_super,
653         .fs_flags       = FS_REQUIRES_DEV,
654 };
655
656 static void init_once(void *foo, kmem_cache_t * cachep, unsigned long flags)
657 {
658         struct jfs_inode_info *jfs_ip = (struct jfs_inode_info *) foo;
659
660         if ((flags & (SLAB_CTOR_VERIFY | SLAB_CTOR_CONSTRUCTOR)) ==
661             SLAB_CTOR_CONSTRUCTOR) {
662                 memset(jfs_ip, 0, sizeof(struct jfs_inode_info));
663                 INIT_LIST_HEAD(&jfs_ip->anon_inode_list);
664                 init_rwsem(&jfs_ip->rdwrlock);
665                 mutex_init(&jfs_ip->commit_mutex);
666                 init_rwsem(&jfs_ip->xattr_sem);
667                 spin_lock_init(&jfs_ip->ag_lock);
668                 jfs_ip->active_ag = -1;
669 #ifdef CONFIG_JFS_POSIX_ACL
670                 jfs_ip->i_acl = JFS_ACL_NOT_CACHED;
671                 jfs_ip->i_default_acl = JFS_ACL_NOT_CACHED;
672 #endif
673                 inode_init_once(&jfs_ip->vfs_inode);
674         }
675 }
676
677 static int __init init_jfs_fs(void)
678 {
679         int i;
680         int rc;
681
682         jfs_inode_cachep =
683             kmem_cache_create("jfs_ip", sizeof(struct jfs_inode_info), 0, 
684                             SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD,
685                             init_once, NULL);
686         if (jfs_inode_cachep == NULL)
687                 return -ENOMEM;
688
689         /*
690          * Metapage initialization
691          */
692         rc = metapage_init();
693         if (rc) {
694                 jfs_err("metapage_init failed w/rc = %d", rc);
695                 goto free_slab;
696         }
697
698         /*
699          * Transaction Manager initialization
700          */
701         rc = txInit();
702         if (rc) {
703                 jfs_err("txInit failed w/rc = %d", rc);
704                 goto free_metapage;
705         }
706
707         /*
708          * I/O completion thread (endio)
709          */
710         jfsIOthread = kthread_run(jfsIOWait, NULL, "jfsIO");
711         if (IS_ERR(jfsIOthread)) {
712                 rc = PTR_ERR(jfsIOthread);
713                 jfs_err("init_jfs_fs: fork failed w/rc = %d", rc);
714                 goto end_txmngr;
715         }
716
717         if (commit_threads < 1)
718                 commit_threads = num_online_cpus();
719         if (commit_threads > MAX_COMMIT_THREADS)
720                 commit_threads = MAX_COMMIT_THREADS;
721
722         for (i = 0; i < commit_threads; i++) {
723                 jfsCommitThread[i] = kthread_run(jfs_lazycommit, NULL, "jfsCommit");
724                 if (IS_ERR(jfsCommitThread[i])) {
725                         rc = PTR_ERR(jfsCommitThread[i]);
726                         jfs_err("init_jfs_fs: fork failed w/rc = %d", rc);
727                         commit_threads = i;
728                         goto kill_committask;
729                 }
730         }
731
732         jfsSyncThread = kthread_run(jfs_sync, NULL, "jfsSync");
733         if (IS_ERR(jfsSyncThread)) {
734                 rc = PTR_ERR(jfsSyncThread);
735                 jfs_err("init_jfs_fs: fork failed w/rc = %d", rc);
736                 goto kill_committask;
737         }
738
739 #ifdef PROC_FS_JFS
740         jfs_proc_init();
741 #endif
742
743         return register_filesystem(&jfs_fs_type);
744
745 kill_committask:
746         for (i = 0; i < commit_threads; i++)
747                 kthread_stop(jfsCommitThread[i]);
748         kthread_stop(jfsIOthread);
749 end_txmngr:
750         txExit();
751 free_metapage:
752         metapage_exit();
753 free_slab:
754         kmem_cache_destroy(jfs_inode_cachep);
755         return rc;
756 }
757
758 static void __exit exit_jfs_fs(void)
759 {
760         int i;
761
762         jfs_info("exit_jfs_fs called");
763
764         txExit();
765         metapage_exit();
766
767         kthread_stop(jfsIOthread);
768         for (i = 0; i < commit_threads; i++)
769                 kthread_stop(jfsCommitThread[i]);
770         kthread_stop(jfsSyncThread);
771 #ifdef PROC_FS_JFS
772         jfs_proc_clean();
773 #endif
774         unregister_filesystem(&jfs_fs_type);
775         kmem_cache_destroy(jfs_inode_cachep);
776 }
777
778 module_init(init_jfs_fs)
779 module_exit(exit_jfs_fs)