nilfs2: move mount options to nilfs object
[pandora-kernel.git] / fs / nilfs2 / sb.h
1 /*
2  * sb.h - NILFS on-memory super block structure.
3  *
4  * Copyright (C) 2005-2008 Nippon Telegraph and Telephone Corporation.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  * Written by Ryusuke Konishi <ryusuke@osrg.net>
21  *
22  */
23
24 #ifndef _NILFS_SB
25 #define _NILFS_SB
26
27 #include <linux/types.h>
28 #include <linux/fs.h>
29
30 struct the_nilfs;
31 struct nilfs_sc_info;
32
33 /*
34  * NILFS super-block data in memory
35  */
36 struct nilfs_sb_info {
37         uid_t s_resuid;
38         gid_t s_resgid;
39
40         unsigned long s_interval;       /* construction interval */
41         unsigned long s_watermark;      /* threshold of data amount
42                                            for the segment construction */
43
44         /* Fundamental members */
45         struct super_block *s_super;    /* reverse pointer to super_block */
46         struct the_nilfs *s_nilfs;
47
48         /* Segment constructor */
49         struct list_head s_dirty_files; /* dirty files list */
50         struct nilfs_sc_info *s_sc_info; /* segment constructor info */
51         spinlock_t s_inode_lock;        /* Lock for the nilfs inode.
52                                            It covers s_dirty_files list */
53
54         /* Inode allocator */
55         spinlock_t s_next_gen_lock;
56         u32 s_next_generation;
57 };
58
59 static inline struct nilfs_sb_info *NILFS_SB(struct super_block *sb)
60 {
61         return sb->s_fs_info;
62 }
63
64 static inline struct nilfs_sc_info *NILFS_SC(struct nilfs_sb_info *sbi)
65 {
66         return sbi->s_sc_info;
67 }
68
69 #endif /* _NILFS_SB */