2 * Copyright (C) International Business Machines Corp., 2000-2004
3 * Portions Copyright (C) Christoph Hellwig, 2001-2002
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.
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.
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
21 #include <linux/module.h>
22 #include <linux/parser.h>
23 #include <linux/completion.h>
24 #include <linux/vfs.h>
25 #include <linux/quotaops.h>
26 #include <linux/mount.h>
27 #include <linux/moduleparam.h>
28 #include <linux/kthread.h>
29 #include <linux/posix_acl.h>
30 #include <linux/buffer_head.h>
31 #include <linux/exportfs.h>
32 #include <linux/crc32.h>
33 #include <linux/slab.h>
34 #include <linux/uaccess.h>
35 #include <linux/seq_file.h>
36 #include <linux/blkdev.h>
38 #include "jfs_incore.h"
39 #include "jfs_filsys.h"
40 #include "jfs_inode.h"
41 #include "jfs_metapage.h"
42 #include "jfs_superblock.h"
46 #include "jfs_debug.h"
47 #include "jfs_xattr.h"
48 #include "jfs_dinode.h"
50 MODULE_DESCRIPTION("The Journaled Filesystem (JFS)");
51 MODULE_AUTHOR("Steve Best/Dave Kleikamp/Barry Arndt, IBM");
52 MODULE_LICENSE("GPL");
54 static struct kmem_cache
*jfs_inode_cachep
;
56 static const struct super_operations jfs_super_operations
;
57 static const struct export_operations jfs_export_operations
;
58 static struct file_system_type jfs_fs_type
;
60 #define MAX_COMMIT_THREADS 64
61 static int commit_threads
;
62 module_param(commit_threads
, int, 0);
63 MODULE_PARM_DESC(commit_threads
, "Number of commit threads");
65 static struct task_struct
*jfsCommitThread
[MAX_COMMIT_THREADS
];
66 struct task_struct
*jfsIOthread
;
67 struct task_struct
*jfsSyncThread
;
69 #ifdef CONFIG_JFS_DEBUG
70 int jfsloglevel
= JFS_LOGLEVEL_WARN
;
71 module_param(jfsloglevel
, int, 0644);
72 MODULE_PARM_DESC(jfsloglevel
, "Specify JFS loglevel (0, 1 or 2)");
75 static void jfs_handle_error(struct super_block
*sb
)
77 struct jfs_sb_info
*sbi
= JFS_SBI(sb
);
79 if (sb
->s_flags
& MS_RDONLY
)
82 updateSuper(sb
, FM_DIRTY
);
84 if (sbi
->flag
& JFS_ERR_PANIC
)
85 panic("JFS (device %s): panic forced after error\n",
87 else if (sbi
->flag
& JFS_ERR_REMOUNT_RO
) {
88 jfs_err("ERROR: (device %s): remounting filesystem as read-only",
90 sb
->s_flags
|= MS_RDONLY
;
93 /* nothing is done for continue beyond marking the superblock dirty */
96 void jfs_error(struct super_block
*sb
, const char *fmt
, ...)
106 pr_err("ERROR: (device %s): %ps: %pV\n",
107 sb
->s_id
, __builtin_return_address(0), &vaf
);
111 jfs_handle_error(sb
);
114 static struct inode
*jfs_alloc_inode(struct super_block
*sb
)
116 struct jfs_inode_info
*jfs_inode
;
118 jfs_inode
= kmem_cache_alloc(jfs_inode_cachep
, GFP_NOFS
);
122 memset(&jfs_inode
->i_dquot
, 0, sizeof(jfs_inode
->i_dquot
));
124 return &jfs_inode
->vfs_inode
;
127 static void jfs_i_callback(struct rcu_head
*head
)
129 struct inode
*inode
= container_of(head
, struct inode
, i_rcu
);
130 struct jfs_inode_info
*ji
= JFS_IP(inode
);
131 kmem_cache_free(jfs_inode_cachep
, ji
);
134 static void jfs_destroy_inode(struct inode
*inode
)
136 struct jfs_inode_info
*ji
= JFS_IP(inode
);
138 BUG_ON(!list_empty(&ji
->anon_inode_list
));
140 spin_lock_irq(&ji
->ag_lock
);
141 if (ji
->active_ag
!= -1) {
142 struct bmap
*bmap
= JFS_SBI(inode
->i_sb
)->bmap
;
143 atomic_dec(&bmap
->db_active
[ji
->active_ag
]);
146 spin_unlock_irq(&ji
->ag_lock
);
147 call_rcu(&inode
->i_rcu
, jfs_i_callback
);
150 static int jfs_statfs(struct dentry
*dentry
, struct kstatfs
*buf
)
152 struct jfs_sb_info
*sbi
= JFS_SBI(dentry
->d_sb
);
154 struct inomap
*imap
= JFS_IP(sbi
->ipimap
)->i_imap
;
156 jfs_info("In jfs_statfs");
157 buf
->f_type
= JFS_SUPER_MAGIC
;
158 buf
->f_bsize
= sbi
->bsize
;
159 buf
->f_blocks
= sbi
->bmap
->db_mapsize
;
160 buf
->f_bfree
= sbi
->bmap
->db_nfree
;
161 buf
->f_bavail
= sbi
->bmap
->db_nfree
;
163 * If we really return the number of allocated & free inodes, some
164 * applications will fail because they won't see enough free inodes.
165 * We'll try to calculate some guess as to how many inodes we can
168 * buf->f_files = atomic_read(&imap->im_numinos);
169 * buf->f_ffree = atomic_read(&imap->im_numfree);
171 maxinodes
= min((s64
) atomic_read(&imap
->im_numinos
) +
172 ((sbi
->bmap
->db_nfree
>> imap
->im_l2nbperiext
)
173 << L2INOSPEREXT
), (s64
) 0xffffffffLL
);
174 buf
->f_files
= maxinodes
;
175 buf
->f_ffree
= maxinodes
- (atomic_read(&imap
->im_numinos
) -
176 atomic_read(&imap
->im_numfree
));
177 buf
->f_fsid
.val
[0] = (u32
)crc32_le(0, sbi
->uuid
, sizeof(sbi
->uuid
)/2);
178 buf
->f_fsid
.val
[1] = (u32
)crc32_le(0, sbi
->uuid
+ sizeof(sbi
->uuid
)/2,
179 sizeof(sbi
->uuid
)/2);
181 buf
->f_namelen
= JFS_NAME_MAX
;
186 static int jfs_quota_off(struct super_block
*sb
, int type
);
187 static int jfs_quota_on(struct super_block
*sb
, int type
, int format_id
,
188 const struct path
*path
);
190 static void jfs_quota_off_umount(struct super_block
*sb
)
194 for (type
= 0; type
< MAXQUOTAS
; type
++)
195 jfs_quota_off(sb
, type
);
198 static const struct quotactl_ops jfs_quotactl_ops
= {
199 .quota_on
= jfs_quota_on
,
200 .quota_off
= jfs_quota_off
,
201 .quota_sync
= dquot_quota_sync
,
202 .get_state
= dquot_get_state
,
203 .set_info
= dquot_set_dqinfo
,
204 .get_dqblk
= dquot_get_dqblk
,
205 .set_dqblk
= dquot_set_dqblk
,
206 .get_nextdqblk
= dquot_get_next_dqblk
,
209 static inline void jfs_quota_off_umount(struct super_block
*sb
)
214 static void jfs_put_super(struct super_block
*sb
)
216 struct jfs_sb_info
*sbi
= JFS_SBI(sb
);
219 jfs_info("In jfs_put_super");
221 jfs_quota_off_umount(sb
);
225 jfs_err("jfs_umount failed with return code %d", rc
);
227 unload_nls(sbi
->nls_tab
);
229 truncate_inode_pages(sbi
->direct_inode
->i_mapping
, 0);
230 iput(sbi
->direct_inode
);
236 Opt_integrity
, Opt_nointegrity
, Opt_iocharset
, Opt_resize
,
237 Opt_resize_nosize
, Opt_errors
, Opt_ignore
, Opt_err
, Opt_quota
,
238 Opt_usrquota
, Opt_grpquota
, Opt_uid
, Opt_gid
, Opt_umask
,
239 Opt_discard
, Opt_nodiscard
, Opt_discard_minblk
242 static const match_table_t tokens
= {
243 {Opt_integrity
, "integrity"},
244 {Opt_nointegrity
, "nointegrity"},
245 {Opt_iocharset
, "iocharset=%s"},
246 {Opt_resize
, "resize=%u"},
247 {Opt_resize_nosize
, "resize"},
248 {Opt_errors
, "errors=%s"},
249 {Opt_ignore
, "noquota"},
250 {Opt_ignore
, "quota"},
251 {Opt_usrquota
, "usrquota"},
252 {Opt_grpquota
, "grpquota"},
255 {Opt_umask
, "umask=%u"},
256 {Opt_discard
, "discard"},
257 {Opt_nodiscard
, "nodiscard"},
258 {Opt_discard_minblk
, "discard=%u"},
262 static int parse_options(char *options
, struct super_block
*sb
, s64
*newLVSize
,
265 void *nls_map
= (void *)-1; /* -1: no change; NULL: none */
267 struct jfs_sb_info
*sbi
= JFS_SBI(sb
);
274 while ((p
= strsep(&options
, ",")) != NULL
) {
275 substring_t args
[MAX_OPT_ARGS
];
280 token
= match_token(p
, tokens
, args
);
283 *flag
&= ~JFS_NOINTEGRITY
;
285 case Opt_nointegrity
:
286 *flag
|= JFS_NOINTEGRITY
;
289 /* Silently ignore the quota options */
290 /* Don't do anything ;-) */
293 if (nls_map
&& nls_map
!= (void *) -1)
295 if (!strcmp(args
[0].from
, "none"))
298 nls_map
= load_nls(args
[0].from
);
300 pr_err("JFS: charset not found\n");
307 char *resize
= args
[0].from
;
308 int rc
= kstrtoll(resize
, 0, newLVSize
);
314 case Opt_resize_nosize
:
316 *newLVSize
= i_size_read(sb
->s_bdev
->bd_inode
) >>
317 sb
->s_blocksize_bits
;
319 pr_err("JFS: Cannot determine volume size\n");
324 char *errors
= args
[0].from
;
325 if (!errors
|| !*errors
)
327 if (!strcmp(errors
, "continue")) {
328 *flag
&= ~JFS_ERR_REMOUNT_RO
;
329 *flag
&= ~JFS_ERR_PANIC
;
330 *flag
|= JFS_ERR_CONTINUE
;
331 } else if (!strcmp(errors
, "remount-ro")) {
332 *flag
&= ~JFS_ERR_CONTINUE
;
333 *flag
&= ~JFS_ERR_PANIC
;
334 *flag
|= JFS_ERR_REMOUNT_RO
;
335 } else if (!strcmp(errors
, "panic")) {
336 *flag
&= ~JFS_ERR_CONTINUE
;
337 *flag
&= ~JFS_ERR_REMOUNT_RO
;
338 *flag
|= JFS_ERR_PANIC
;
340 pr_err("JFS: %s is an invalid error handler\n",
350 *flag
|= JFS_USRQUOTA
;
353 *flag
|= JFS_GRPQUOTA
;
359 pr_err("JFS: quota operations not supported\n");
364 char *uid
= args
[0].from
;
366 int rc
= kstrtouint(uid
, 0, &val
);
370 sbi
->uid
= make_kuid(current_user_ns(), val
);
371 if (!uid_valid(sbi
->uid
))
378 char *gid
= args
[0].from
;
380 int rc
= kstrtouint(gid
, 0, &val
);
384 sbi
->gid
= make_kgid(current_user_ns(), val
);
385 if (!gid_valid(sbi
->gid
))
392 char *umask
= args
[0].from
;
393 int rc
= kstrtouint(umask
, 8, &sbi
->umask
);
397 if (sbi
->umask
& ~0777) {
398 pr_err("JFS: Invalid value of umask\n");
406 struct request_queue
*q
= bdev_get_queue(sb
->s_bdev
);
407 /* if set to 1, even copying files will cause
409 * -> user has more control over the online trimming
411 sbi
->minblks_trim
= 64;
412 if (blk_queue_discard(q
))
413 *flag
|= JFS_DISCARD
;
415 pr_err("JFS: discard option not supported on device\n");
420 *flag
&= ~JFS_DISCARD
;
423 case Opt_discard_minblk
:
425 struct request_queue
*q
= bdev_get_queue(sb
->s_bdev
);
426 char *minblks_trim
= args
[0].from
;
428 if (blk_queue_discard(q
)) {
429 *flag
|= JFS_DISCARD
;
430 rc
= kstrtouint(minblks_trim
, 0,
435 pr_err("JFS: discard option not supported on device\n");
440 printk("jfs: Unrecognized mount option \"%s\" or missing value\n",
446 if (nls_map
!= (void *) -1) {
447 /* Discard old (if remount) */
448 unload_nls(sbi
->nls_tab
);
449 sbi
->nls_tab
= nls_map
;
454 if (nls_map
&& nls_map
!= (void *) -1)
459 static int jfs_remount(struct super_block
*sb
, int *flags
, char *data
)
463 int flag
= JFS_SBI(sb
)->flag
;
467 if (!parse_options(data
, sb
, &newLVSize
, &flag
))
471 if (sb
->s_flags
& MS_RDONLY
) {
472 pr_err("JFS: resize requires volume to be mounted read-write\n");
475 rc
= jfs_extendfs(sb
, newLVSize
, 0);
480 if ((sb
->s_flags
& MS_RDONLY
) && !(*flags
& MS_RDONLY
)) {
482 * Invalidate any previously read metadata. fsck may have
483 * changed the on-disk data since we mounted r/o
485 truncate_inode_pages(JFS_SBI(sb
)->direct_inode
->i_mapping
, 0);
487 JFS_SBI(sb
)->flag
= flag
;
488 ret
= jfs_mount_rw(sb
, 1);
490 /* mark the fs r/w for quota activity */
491 sb
->s_flags
&= ~MS_RDONLY
;
493 dquot_resume(sb
, -1);
496 if ((!(sb
->s_flags
& MS_RDONLY
)) && (*flags
& MS_RDONLY
)) {
497 rc
= dquot_suspend(sb
, -1);
500 rc
= jfs_umount_rw(sb
);
501 JFS_SBI(sb
)->flag
= flag
;
504 if ((JFS_SBI(sb
)->flag
& JFS_NOINTEGRITY
) != (flag
& JFS_NOINTEGRITY
))
505 if (!(sb
->s_flags
& MS_RDONLY
)) {
506 rc
= jfs_umount_rw(sb
);
510 JFS_SBI(sb
)->flag
= flag
;
511 ret
= jfs_mount_rw(sb
, 1);
514 JFS_SBI(sb
)->flag
= flag
;
519 static int jfs_fill_super(struct super_block
*sb
, void *data
, int silent
)
521 struct jfs_sb_info
*sbi
;
525 int flag
, ret
= -EINVAL
;
527 jfs_info("In jfs_read_super: s_flags=0x%lx", sb
->s_flags
);
529 sbi
= kzalloc(sizeof(struct jfs_sb_info
), GFP_KERNEL
);
534 sb
->s_max_links
= JFS_LINK_MAX
;
536 sbi
->uid
= INVALID_UID
;
537 sbi
->gid
= INVALID_GID
;
540 /* initialize the mount flag and determine the default error handler */
541 flag
= JFS_ERR_REMOUNT_RO
;
543 if (!parse_options((char *) data
, sb
, &newLVSize
, &flag
))
547 #ifdef CONFIG_JFS_POSIX_ACL
548 sb
->s_flags
|= MS_POSIXACL
;
552 pr_err("resize option for remount only\n");
557 * Initialize blocksize to 4K.
559 sb_set_blocksize(sb
, PSIZE
);
562 * Set method vectors.
564 sb
->s_op
= &jfs_super_operations
;
565 sb
->s_export_op
= &jfs_export_operations
;
566 sb
->s_xattr
= jfs_xattr_handlers
;
568 sb
->dq_op
= &dquot_operations
;
569 sb
->s_qcop
= &jfs_quotactl_ops
;
570 sb
->s_quota_types
= QTYPE_MASK_USR
| QTYPE_MASK_GRP
;
574 * Initialize direct-mapping inode/address-space
576 inode
= new_inode(sb
);
582 inode
->i_size
= i_size_read(sb
->s_bdev
->bd_inode
);
583 inode
->i_mapping
->a_ops
= &jfs_metapage_aops
;
584 hlist_add_fake(&inode
->i_hash
);
585 mapping_set_gfp_mask(inode
->i_mapping
, GFP_NOFS
);
587 sbi
->direct_inode
= inode
;
592 jfs_err("jfs_mount failed w/return code = %d", rc
);
593 goto out_mount_failed
;
595 if (sb
->s_flags
& MS_RDONLY
)
598 rc
= jfs_mount_rw(sb
, 0);
601 jfs_err("jfs_mount_rw failed, return code = %d",
608 sb
->s_magic
= JFS_SUPER_MAGIC
;
610 if (sbi
->mntflag
& JFS_OS2
)
611 sb
->s_d_op
= &jfs_ci_dentry_operations
;
613 inode
= jfs_iget(sb
, ROOT_I
);
615 ret
= PTR_ERR(inode
);
618 sb
->s_root
= d_make_root(inode
);
622 /* logical blocks are represented by 40 bits in pxd_t, etc. */
623 sb
->s_maxbytes
= ((u64
) sb
->s_blocksize
) << 40;
624 #if BITS_PER_LONG == 32
626 * Page cache is indexed by long.
627 * I would use MAX_LFS_FILESIZE, but it's only half as big
629 sb
->s_maxbytes
= min(((u64
) PAGE_SIZE
<< 32) - 1,
630 (u64
)sb
->s_maxbytes
);
636 jfs_err("jfs_read_super: get root dentry failed");
641 jfs_err("jfs_umount failed with return code %d", rc
);
643 filemap_write_and_wait(sbi
->direct_inode
->i_mapping
);
644 truncate_inode_pages(sbi
->direct_inode
->i_mapping
, 0);
645 make_bad_inode(sbi
->direct_inode
);
646 iput(sbi
->direct_inode
);
647 sbi
->direct_inode
= NULL
;
649 unload_nls(sbi
->nls_tab
);
655 static int jfs_freeze(struct super_block
*sb
)
657 struct jfs_sb_info
*sbi
= JFS_SBI(sb
);
658 struct jfs_log
*log
= sbi
->log
;
661 if (!(sb
->s_flags
& MS_RDONLY
)) {
663 rc
= lmLogShutdown(log
);
665 jfs_error(sb
, "lmLogShutdown failed\n");
667 /* let operations fail rather than hang */
672 rc
= updateSuper(sb
, FM_CLEAN
);
674 jfs_err("jfs_freeze: updateSuper failed");
676 * Don't fail here. Everything succeeded except
677 * marking the superblock clean, so there's really
678 * no harm in leaving it frozen for now.
685 static int jfs_unfreeze(struct super_block
*sb
)
687 struct jfs_sb_info
*sbi
= JFS_SBI(sb
);
688 struct jfs_log
*log
= sbi
->log
;
691 if (!(sb
->s_flags
& MS_RDONLY
)) {
692 rc
= updateSuper(sb
, FM_MOUNT
);
694 jfs_error(sb
, "updateSuper failed\n");
699 jfs_error(sb
, "lmLogInit failed\n");
706 static struct dentry
*jfs_do_mount(struct file_system_type
*fs_type
,
707 int flags
, const char *dev_name
, void *data
)
709 return mount_bdev(fs_type
, flags
, dev_name
, data
, jfs_fill_super
);
712 static int jfs_sync_fs(struct super_block
*sb
, int wait
)
714 struct jfs_log
*log
= JFS_SBI(sb
)->log
;
716 /* log == NULL indicates read-only mount */
719 * Write quota structures to quota file, sync_blockdev() will
720 * write them to disk later
722 dquot_writeback_dquots(sb
, -1);
723 jfs_flush_journal(log
, wait
);
730 static int jfs_show_options(struct seq_file
*seq
, struct dentry
*root
)
732 struct jfs_sb_info
*sbi
= JFS_SBI(root
->d_sb
);
734 if (uid_valid(sbi
->uid
))
735 seq_printf(seq
, ",uid=%d", from_kuid(&init_user_ns
, sbi
->uid
));
736 if (gid_valid(sbi
->gid
))
737 seq_printf(seq
, ",gid=%d", from_kgid(&init_user_ns
, sbi
->gid
));
738 if (sbi
->umask
!= -1)
739 seq_printf(seq
, ",umask=%03o", sbi
->umask
);
740 if (sbi
->flag
& JFS_NOINTEGRITY
)
741 seq_puts(seq
, ",nointegrity");
742 if (sbi
->flag
& JFS_DISCARD
)
743 seq_printf(seq
, ",discard=%u", sbi
->minblks_trim
);
745 seq_printf(seq
, ",iocharset=%s", sbi
->nls_tab
->charset
);
746 if (sbi
->flag
& JFS_ERR_CONTINUE
)
747 seq_printf(seq
, ",errors=continue");
748 if (sbi
->flag
& JFS_ERR_PANIC
)
749 seq_printf(seq
, ",errors=panic");
752 if (sbi
->flag
& JFS_USRQUOTA
)
753 seq_puts(seq
, ",usrquota");
755 if (sbi
->flag
& JFS_GRPQUOTA
)
756 seq_puts(seq
, ",grpquota");
764 /* Read data from quotafile - avoid pagecache and such because we cannot afford
765 * acquiring the locks... As quota files are never truncated and quota code
766 * itself serializes the operations (and no one else should touch the files)
767 * we don't have to be afraid of races */
768 static ssize_t
jfs_quota_read(struct super_block
*sb
, int type
, char *data
,
769 size_t len
, loff_t off
)
771 struct inode
*inode
= sb_dqopt(sb
)->files
[type
];
772 sector_t blk
= off
>> sb
->s_blocksize_bits
;
774 int offset
= off
& (sb
->s_blocksize
- 1);
777 struct buffer_head tmp_bh
;
778 struct buffer_head
*bh
;
779 loff_t i_size
= i_size_read(inode
);
783 if (off
+len
> i_size
)
787 tocopy
= sb
->s_blocksize
- offset
< toread
?
788 sb
->s_blocksize
- offset
: toread
;
791 tmp_bh
.b_size
= i_blocksize(inode
);
792 err
= jfs_get_block(inode
, blk
, &tmp_bh
, 0);
795 if (!buffer_mapped(&tmp_bh
)) /* A hole? */
796 memset(data
, 0, tocopy
);
798 bh
= sb_bread(sb
, tmp_bh
.b_blocknr
);
801 memcpy(data
, bh
->b_data
+offset
, tocopy
);
812 /* Write to quotafile */
813 static ssize_t
jfs_quota_write(struct super_block
*sb
, int type
,
814 const char *data
, size_t len
, loff_t off
)
816 struct inode
*inode
= sb_dqopt(sb
)->files
[type
];
817 sector_t blk
= off
>> sb
->s_blocksize_bits
;
819 int offset
= off
& (sb
->s_blocksize
- 1);
821 size_t towrite
= len
;
822 struct buffer_head tmp_bh
;
823 struct buffer_head
*bh
;
826 while (towrite
> 0) {
827 tocopy
= sb
->s_blocksize
- offset
< towrite
?
828 sb
->s_blocksize
- offset
: towrite
;
831 tmp_bh
.b_size
= i_blocksize(inode
);
832 err
= jfs_get_block(inode
, blk
, &tmp_bh
, 1);
835 if (offset
|| tocopy
!= sb
->s_blocksize
)
836 bh
= sb_bread(sb
, tmp_bh
.b_blocknr
);
838 bh
= sb_getblk(sb
, tmp_bh
.b_blocknr
);
844 memcpy(bh
->b_data
+offset
, data
, tocopy
);
845 flush_dcache_page(bh
->b_page
);
846 set_buffer_uptodate(bh
);
847 mark_buffer_dirty(bh
);
856 if (len
== towrite
) {
860 if (inode
->i_size
< off
+len
-towrite
)
861 i_size_write(inode
, off
+len
-towrite
);
863 inode
->i_mtime
= inode
->i_ctime
= current_time(inode
);
864 mark_inode_dirty(inode
);
866 return len
- towrite
;
869 static struct dquot
**jfs_get_dquots(struct inode
*inode
)
871 return JFS_IP(inode
)->i_dquot
;
874 static int jfs_quota_on(struct super_block
*sb
, int type
, int format_id
,
875 const struct path
*path
)
880 err
= dquot_quota_on(sb
, type
, format_id
, path
);
884 inode
= d_inode(path
->dentry
);
886 JFS_IP(inode
)->mode2
|= JFS_NOATIME_FL
| JFS_IMMUTABLE_FL
;
887 inode_set_flags(inode
, S_NOATIME
| S_IMMUTABLE
,
888 S_NOATIME
| S_IMMUTABLE
);
890 mark_inode_dirty(inode
);
895 static int jfs_quota_off(struct super_block
*sb
, int type
)
897 struct inode
*inode
= sb_dqopt(sb
)->files
[type
];
900 if (!inode
|| !igrab(inode
))
903 err
= dquot_quota_off(sb
, type
);
908 JFS_IP(inode
)->mode2
&= ~(JFS_NOATIME_FL
| JFS_IMMUTABLE_FL
);
909 inode_set_flags(inode
, 0, S_NOATIME
| S_IMMUTABLE
);
911 mark_inode_dirty(inode
);
916 return dquot_quota_off(sb
, type
);
920 static const struct super_operations jfs_super_operations
= {
921 .alloc_inode
= jfs_alloc_inode
,
922 .destroy_inode
= jfs_destroy_inode
,
923 .dirty_inode
= jfs_dirty_inode
,
924 .write_inode
= jfs_write_inode
,
925 .evict_inode
= jfs_evict_inode
,
926 .put_super
= jfs_put_super
,
927 .sync_fs
= jfs_sync_fs
,
928 .freeze_fs
= jfs_freeze
,
929 .unfreeze_fs
= jfs_unfreeze
,
930 .statfs
= jfs_statfs
,
931 .remount_fs
= jfs_remount
,
932 .show_options
= jfs_show_options
,
934 .quota_read
= jfs_quota_read
,
935 .quota_write
= jfs_quota_write
,
936 .get_dquots
= jfs_get_dquots
,
940 static const struct export_operations jfs_export_operations
= {
941 .fh_to_dentry
= jfs_fh_to_dentry
,
942 .fh_to_parent
= jfs_fh_to_parent
,
943 .get_parent
= jfs_get_parent
,
946 static struct file_system_type jfs_fs_type
= {
947 .owner
= THIS_MODULE
,
949 .mount
= jfs_do_mount
,
950 .kill_sb
= kill_block_super
,
951 .fs_flags
= FS_REQUIRES_DEV
,
953 MODULE_ALIAS_FS("jfs");
955 static void init_once(void *foo
)
957 struct jfs_inode_info
*jfs_ip
= (struct jfs_inode_info
*) foo
;
959 memset(jfs_ip
, 0, sizeof(struct jfs_inode_info
));
960 INIT_LIST_HEAD(&jfs_ip
->anon_inode_list
);
961 init_rwsem(&jfs_ip
->rdwrlock
);
962 mutex_init(&jfs_ip
->commit_mutex
);
963 init_rwsem(&jfs_ip
->xattr_sem
);
964 spin_lock_init(&jfs_ip
->ag_lock
);
965 jfs_ip
->active_ag
= -1;
966 inode_init_once(&jfs_ip
->vfs_inode
);
969 static int __init
init_jfs_fs(void)
975 kmem_cache_create("jfs_ip", sizeof(struct jfs_inode_info
), 0,
976 SLAB_RECLAIM_ACCOUNT
|SLAB_MEM_SPREAD
|SLAB_ACCOUNT
,
978 if (jfs_inode_cachep
== NULL
)
982 * Metapage initialization
984 rc
= metapage_init();
986 jfs_err("metapage_init failed w/rc = %d", rc
);
991 * Transaction Manager initialization
995 jfs_err("txInit failed w/rc = %d", rc
);
1000 * I/O completion thread (endio)
1002 jfsIOthread
= kthread_run(jfsIOWait
, NULL
, "jfsIO");
1003 if (IS_ERR(jfsIOthread
)) {
1004 rc
= PTR_ERR(jfsIOthread
);
1005 jfs_err("init_jfs_fs: fork failed w/rc = %d", rc
);
1009 if (commit_threads
< 1)
1010 commit_threads
= num_online_cpus();
1011 if (commit_threads
> MAX_COMMIT_THREADS
)
1012 commit_threads
= MAX_COMMIT_THREADS
;
1014 for (i
= 0; i
< commit_threads
; i
++) {
1015 jfsCommitThread
[i
] = kthread_run(jfs_lazycommit
, NULL
,
1017 if (IS_ERR(jfsCommitThread
[i
])) {
1018 rc
= PTR_ERR(jfsCommitThread
[i
]);
1019 jfs_err("init_jfs_fs: fork failed w/rc = %d", rc
);
1021 goto kill_committask
;
1025 jfsSyncThread
= kthread_run(jfs_sync
, NULL
, "jfsSync");
1026 if (IS_ERR(jfsSyncThread
)) {
1027 rc
= PTR_ERR(jfsSyncThread
);
1028 jfs_err("init_jfs_fs: fork failed w/rc = %d", rc
);
1029 goto kill_committask
;
1036 rc
= register_filesystem(&jfs_fs_type
);
1043 kthread_stop(jfsSyncThread
);
1045 for (i
= 0; i
< commit_threads
; i
++)
1046 kthread_stop(jfsCommitThread
[i
]);
1047 kthread_stop(jfsIOthread
);
1053 kmem_cache_destroy(jfs_inode_cachep
);
1057 static void __exit
exit_jfs_fs(void)
1061 jfs_info("exit_jfs_fs called");
1066 kthread_stop(jfsIOthread
);
1067 for (i
= 0; i
< commit_threads
; i
++)
1068 kthread_stop(jfsCommitThread
[i
]);
1069 kthread_stop(jfsSyncThread
);
1073 unregister_filesystem(&jfs_fs_type
);
1076 * Make sure all delayed rcu free inodes are flushed before we
1080 kmem_cache_destroy(jfs_inode_cachep
);
1083 module_init(init_jfs_fs
)
1084 module_exit(exit_jfs_fs
)