Blame view

fs/ufs/ufs.h 5.03 KB
bcd6d4ecf   Christoph Hellwig   ufs: move non-lay...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  #ifndef _UFS_UFS_H
  #define _UFS_UFS_H 1
  
  #define UFS_MAX_GROUP_LOADED 8
  #define UFS_CGNO_EMPTY ((unsigned)-1)
  
  struct ufs_sb_private_info;
  struct ufs_cg_private_info;
  struct ufs_csum;
  
  struct ufs_sb_info {
  	struct ufs_sb_private_info * s_uspi;
  	struct ufs_csum	* s_csp;
  	unsigned s_bytesex;
  	unsigned s_flags;
  	struct buffer_head ** s_ucg;
  	struct ufs_cg_private_info * s_ucpi[UFS_MAX_GROUP_LOADED];
  	unsigned s_cgno[UFS_MAX_GROUP_LOADED];
  	unsigned short s_cg_loaded;
  	unsigned s_mount_opt;
788257d61   Arnd Bergmann   ufs: remove the BKL
21
22
  	struct mutex mutex;
  	struct task_struct *mutex_owner;
bcd6d4ecf   Christoph Hellwig   ufs: move non-lay...
23
24
25
26
27
  };
  
  struct ufs_inode_info {
  	union {
  		__fs32	i_data[15];
f33219b7a   Duane Griffin   ufs: don't trunca...
28
  		__u8	i_symlink[2 * 4 * 15];
bcd6d4ecf   Christoph Hellwig   ufs: move non-lay...
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
  		__fs64	u2_i_data[15];
  	} i_u1;
  	__u32	i_flags;
  	__u32	i_shadow;
  	__u32	i_unused1;
  	__u32	i_unused2;
  	__u32	i_oeftflag;
  	__u16	i_osync;
  	__u64	i_lastfrag;
  	__u32   i_dir_start_lookup;
  	struct inode vfs_inode;
  };
  
  /* mount options */
  #define UFS_MOUNT_ONERROR		0x0000000F
  #define UFS_MOUNT_ONERROR_PANIC		0x00000001
  #define UFS_MOUNT_ONERROR_LOCK		0x00000002
  #define UFS_MOUNT_ONERROR_UMOUNT	0x00000004
  #define UFS_MOUNT_ONERROR_REPAIR	0x00000008
  
  #define UFS_MOUNT_UFSTYPE		0x0000FFF0
  #define UFS_MOUNT_UFSTYPE_OLD		0x00000010
  #define UFS_MOUNT_UFSTYPE_44BSD		0x00000020
  #define UFS_MOUNT_UFSTYPE_SUN		0x00000040
  #define UFS_MOUNT_UFSTYPE_NEXTSTEP	0x00000080
  #define UFS_MOUNT_UFSTYPE_NEXTSTEP_CD	0x00000100
  #define UFS_MOUNT_UFSTYPE_OPENSTEP	0x00000200
  #define UFS_MOUNT_UFSTYPE_SUNx86	0x00000400
  #define UFS_MOUNT_UFSTYPE_HP	        0x00000800
  #define UFS_MOUNT_UFSTYPE_UFS2		0x00001000
  #define UFS_MOUNT_UFSTYPE_SUNOS		0x00002000
  
  #define ufs_clear_opt(o,opt)	o &= ~UFS_MOUNT_##opt
  #define ufs_set_opt(o,opt)	o |= UFS_MOUNT_##opt
  #define ufs_test_opt(o,opt)	((o) & UFS_MOUNT_##opt)
  
  /*
   * Debug code
   */
  #ifdef CONFIG_UFS_DEBUG
  #	define UFSD(f, a...)	{					\
  		printk ("UFSD (%s, %d): %s:",				\
9746077a7   Harvey Harrison   ufs: replace rema...
71
  			__FILE__, __LINE__, __func__);		\
bcd6d4ecf   Christoph Hellwig   ufs: move non-lay...
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
  		printk (f, ## a);					\
  	}
  #else
  #	define UFSD(f, a...)	/**/
  #endif
  
  /* balloc.c */
  extern void ufs_free_fragments (struct inode *, u64, unsigned);
  extern void ufs_free_blocks (struct inode *, u64, unsigned);
  extern u64 ufs_new_fragments(struct inode *, void *, u64, u64,
  			     unsigned, int *, struct page *);
  
  /* cylinder.c */
  extern struct ufs_cg_private_info * ufs_load_cylinder (struct super_block *, unsigned);
  extern void ufs_put_cylinder (struct super_block *, unsigned);
  
  /* dir.c */
  extern const struct inode_operations ufs_dir_inode_operations;
  extern int ufs_add_link (struct dentry *, struct inode *);
89031bc79   Al Viro   sanitize const/si...
91
  extern ino_t ufs_inode_by_name(struct inode *, const struct qstr *);
bcd6d4ecf   Christoph Hellwig   ufs: move non-lay...
92
  extern int ufs_make_empty(struct inode *, struct inode *);
89031bc79   Al Viro   sanitize const/si...
93
  extern struct ufs_dir_entry *ufs_find_entry(struct inode *, const struct qstr *, struct page **);
bcd6d4ecf   Christoph Hellwig   ufs: move non-lay...
94
95
96
97
98
99
100
101
102
  extern int ufs_delete_entry(struct inode *, struct ufs_dir_entry *, struct page *);
  extern int ufs_empty_dir (struct inode *);
  extern struct ufs_dir_entry *ufs_dotdot(struct inode *, struct page **);
  extern void ufs_set_link(struct inode *dir, struct ufs_dir_entry *de,
  			 struct page *page, struct inode *inode);
  
  /* file.c */
  extern const struct inode_operations ufs_file_inode_operations;
  extern const struct file_operations ufs_file_operations;
bcd6d4ecf   Christoph Hellwig   ufs: move non-lay...
103
104
105
106
  extern const struct address_space_operations ufs_aops;
  
  /* ialloc.c */
  extern void ufs_free_inode (struct inode *inode);
6a9a06d9c   Al Viro   ufs: propagate um...
107
  extern struct inode * ufs_new_inode (struct inode *, umode_t);
bcd6d4ecf   Christoph Hellwig   ufs: move non-lay...
108
109
  
  /* inode.c */
b55c460da   David Howells   iget: stop UFS fr...
110
  extern struct inode *ufs_iget(struct super_block *, unsigned long);
a9185b41a   Christoph Hellwig   pass writeback_co...
111
  extern int ufs_write_inode (struct inode *, struct writeback_control *);
bcd6d4ecf   Christoph Hellwig   ufs: move non-lay...
112
  extern int ufs_sync_inode (struct inode *);
58e8268c7   Al Viro   switch ufs to ->e...
113
  extern void ufs_evict_inode (struct inode *);
bcd6d4ecf   Christoph Hellwig   ufs: move non-lay...
114
115
116
117
118
119
  extern int ufs_getfrag_block (struct inode *inode, sector_t fragment, struct buffer_head *bh_result, int create);
  
  /* namei.c */
  extern const struct file_operations ufs_dir_operations;
  
  /* super.c */
b9075fa96   Joe Perches   treewide: use __p...
120
121
122
123
124
125
  extern __printf(3, 4)
  void ufs_warning(struct super_block *, const char *, const char *, ...);
  extern __printf(3, 4)
  void ufs_error(struct super_block *, const char *, const char *, ...);
  extern __printf(3, 4)
  void ufs_panic(struct super_block *, const char *, const char *, ...);
bcd6d4ecf   Christoph Hellwig   ufs: move non-lay...
126
127
128
  
  /* symlink.c */
  extern const struct inode_operations ufs_fast_symlink_inode_operations;
311b9549e   Dmitry Monakhov   ufs: add ufs spec...
129
  extern const struct inode_operations ufs_symlink_inode_operations;
bcd6d4ecf   Christoph Hellwig   ufs: move non-lay...
130
131
132
  
  /* truncate.c */
  extern int ufs_truncate (struct inode *, loff_t);
311b9549e   Dmitry Monakhov   ufs: add ufs spec...
133
  extern int ufs_setattr(struct dentry *dentry, struct iattr *attr);
bcd6d4ecf   Christoph Hellwig   ufs: move non-lay...
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
  
  static inline struct ufs_sb_info *UFS_SB(struct super_block *sb)
  {
  	return sb->s_fs_info;
  }
  
  static inline struct ufs_inode_info *UFS_I(struct inode *inode)
  {
  	return container_of(inode, struct ufs_inode_info, vfs_inode);
  }
  
  /*
   * Give cylinder group number for a file system block.
   * Give cylinder group block number for a file system block.
   */
  /* #define	ufs_dtog(d)	((d) / uspi->s_fpg) */
  static inline u64 ufs_dtog(struct ufs_sb_private_info * uspi, u64 b)
  {
  	do_div(b, uspi->s_fpg);
  	return b;
  }
  /* #define	ufs_dtogd(d)	((d) % uspi->s_fpg) */
  static inline u32 ufs_dtogd(struct ufs_sb_private_info * uspi, u64 b)
  {
  	return do_div(b, uspi->s_fpg);
  }
788257d61   Arnd Bergmann   ufs: remove the BKL
160
161
  extern void lock_ufs(struct super_block *sb);
  extern void unlock_ufs(struct super_block *sb);
bcd6d4ecf   Christoph Hellwig   ufs: move non-lay...
162
  #endif /* _UFS_UFS_H */