Blame view

include/linux/reiserfs_fs_i.h 2.1 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
9
10
11
12
  #ifndef _REISER_FS_I
  #define _REISER_FS_I
  
  #include <linux/list.h>
  
  struct reiserfs_journal_list;
  
  /** bitmasks for i_flags field in reiserfs-specific part of inode */
  typedef enum {
      /** this says what format of key do all items (but stat data) of
        an object have.  If this is set, that format is 3.6 otherwise
        - 3.5 */
bd4c625c0   Linus Torvalds   reiserfs: run scr...
13
  	i_item_key_version_mask = 0x0001,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
14
15
      /** If this is unset, object has 3.5 stat data, otherwise, it has
        3.6 stat data with 64bit size, 32bit nlink etc. */
bd4c625c0   Linus Torvalds   reiserfs: run scr...
16
  	i_stat_data_version_mask = 0x0002,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
17
      /** file might need tail packing on close */
bd4c625c0   Linus Torvalds   reiserfs: run scr...
18
  	i_pack_on_close_mask = 0x0004,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
19
      /** don't pack tail of file */
bd4c625c0   Linus Torvalds   reiserfs: run scr...
20
  	i_nopack_mask = 0x0008,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
21
22
23
      /** If those is set, "safe link" was created for this file during
        truncate or unlink. Safe link is used to avoid leakage of disk
        space on crash with some files open, but unlinked. */
bd4c625c0   Linus Torvalds   reiserfs: run scr...
24
25
26
27
  	i_link_saved_unlink_mask = 0x0010,
  	i_link_saved_truncate_mask = 0x0020,
  	i_has_xattr_dir = 0x0040,
  	i_data_log = 0x0080,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
28
  } reiserfs_inode_flags;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
29
  struct reiserfs_inode_info {
bd4c625c0   Linus Torvalds   reiserfs: run scr...
30
  	__u32 i_key[4];		/* key is still 4 32 bit integers */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
31
32
      /** transient inode flags that are never stored on disk. Bitmasks
        for this field are defined above. */
bd4c625c0   Linus Torvalds   reiserfs: run scr...
33
  	__u32 i_flags;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
34

bd4c625c0   Linus Torvalds   reiserfs: run scr...
35
  	__u32 i_first_direct_byte;	// offset of first byte stored in direct item.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
36

bd4c625c0   Linus Torvalds   reiserfs: run scr...
37
38
  	/* copy of persistent inode flags read from sd_attrs. */
  	__u32 i_attrs;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
39

bd4c625c0   Linus Torvalds   reiserfs: run scr...
40
41
42
43
  	int i_prealloc_block;	/* first unused block of a sequence of unused blocks */
  	int i_prealloc_count;	/* length of that sequence */
  	struct list_head i_prealloc_list;	/* per-transaction list of inodes which
  						 * have preallocated blocks */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
44

bd4c625c0   Linus Torvalds   reiserfs: run scr...
45
46
47
  	unsigned new_packing_locality:1;	/* new_packig_locality is created; new blocks
  						 * for the contents of this directory should be
  						 * displaced */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
48

bd4c625c0   Linus Torvalds   reiserfs: run scr...
49
50
51
  	/* we use these for fsync or O_SYNC to decide which transaction
  	 ** needs to be committed in order for this inode to be properly
  	 ** flushed */
600ed4167   Jeff Mahoney   reiserfs: audit t...
52
  	unsigned int i_trans_id;
bd4c625c0   Linus Torvalds   reiserfs: run scr...
53
  	struct reiserfs_journal_list *i_jl;
0e4f6a791   Al Viro   Fix reiserfs_file...
54
55
  	atomic_t openers;
  	struct mutex tailpack;
068fbb315   Alexey Dobriyan   [PATCH] reiserfs:...
56
  #ifdef CONFIG_REISERFS_FS_XATTR
8b6dd72a4   Jeff Mahoney   reiserfs: make pe...
57
  	struct rw_semaphore i_xattr_sem;
068fbb315   Alexey Dobriyan   [PATCH] reiserfs:...
58
  #endif
bd4c625c0   Linus Torvalds   reiserfs: run scr...
59
  	struct inode vfs_inode;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
60
61
62
  };
  
  #endif