]> bbs.cooldavid.org Git - net-next-2.6.git/blame - include/linux/reiserfs_fs_i.h
reiserfs: audit transaction ids to always be unsigned ints
[net-next-2.6.git] / include / linux / reiserfs_fs_i.h
CommitLineData
1da177e4
LT
1#ifndef _REISER_FS_I
2#define _REISER_FS_I
3
4#include <linux/list.h>
5
6struct reiserfs_journal_list;
7
8/** bitmasks for i_flags field in reiserfs-specific part of inode */
9typedef enum {
10 /** this says what format of key do all items (but stat data) of
11 an object have. If this is set, that format is 3.6 otherwise
12 - 3.5 */
bd4c625c 13 i_item_key_version_mask = 0x0001,
1da177e4
LT
14 /** If this is unset, object has 3.5 stat data, otherwise, it has
15 3.6 stat data with 64bit size, 32bit nlink etc. */
bd4c625c 16 i_stat_data_version_mask = 0x0002,
1da177e4 17 /** file might need tail packing on close */
bd4c625c 18 i_pack_on_close_mask = 0x0004,
1da177e4 19 /** don't pack tail of file */
bd4c625c 20 i_nopack_mask = 0x0008,
1da177e4
LT
21 /** If those is set, "safe link" was created for this file during
22 truncate or unlink. Safe link is used to avoid leakage of disk
23 space on crash with some files open, but unlinked. */
bd4c625c
LT
24 i_link_saved_unlink_mask = 0x0010,
25 i_link_saved_truncate_mask = 0x0020,
26 i_has_xattr_dir = 0x0040,
27 i_data_log = 0x0080,
de14569f 28 i_ever_mapped = 0x0100
1da177e4
LT
29} reiserfs_inode_flags;
30
1da177e4 31struct reiserfs_inode_info {
bd4c625c 32 __u32 i_key[4]; /* key is still 4 32 bit integers */
1da177e4
LT
33 /** transient inode flags that are never stored on disk. Bitmasks
34 for this field are defined above. */
bd4c625c 35 __u32 i_flags;
1da177e4 36
bd4c625c 37 __u32 i_first_direct_byte; // offset of first byte stored in direct item.
1da177e4 38
bd4c625c
LT
39 /* copy of persistent inode flags read from sd_attrs. */
40 __u32 i_attrs;
1da177e4 41
bd4c625c
LT
42 int i_prealloc_block; /* first unused block of a sequence of unused blocks */
43 int i_prealloc_count; /* length of that sequence */
44 struct list_head i_prealloc_list; /* per-transaction list of inodes which
45 * have preallocated blocks */
1da177e4 46
bd4c625c
LT
47 unsigned new_packing_locality:1; /* new_packig_locality is created; new blocks
48 * for the contents of this directory should be
49 * displaced */
1da177e4 50
bd4c625c
LT
51 /* we use these for fsync or O_SYNC to decide which transaction
52 ** needs to be committed in order for this inode to be properly
53 ** flushed */
600ed416 54 unsigned int i_trans_id;
bd4c625c 55 struct reiserfs_journal_list *i_jl;
de14569f 56 struct mutex i_mmap;
cfe14677 57#ifdef CONFIG_REISERFS_FS_POSIX_ACL
bd4c625c
LT
58 struct posix_acl *i_acl_access;
59 struct posix_acl *i_acl_default;
cfe14677 60#endif
068fbb31 61#ifdef CONFIG_REISERFS_FS_XATTR
bd4c625c 62 struct rw_semaphore xattr_sem;
068fbb31 63#endif
bd4c625c 64 struct inode vfs_inode;
1da177e4
LT
65};
66
67#endif