ext4_fs_i.h 4.7 KB
Newer Older
1
/*
2
 *  linux/include/linux/ext4_fs_i.h
3 4 5 6 7 8 9 10 11 12 13 14 15
 *
 * Copyright (C) 1992, 1993, 1994, 1995
 * Remy Card (card@masi.ibp.fr)
 * Laboratoire MASI - Institut Blaise Pascal
 * Universite Pierre et Marie Curie (Paris VI)
 *
 *  from
 *
 *  linux/include/linux/minix_fs_i.h
 *
 *  Copyright (C) 1991, 1992  Linus Torvalds
 */

16 17
#ifndef _LINUX_EXT4_FS_I
#define _LINUX_EXT4_FS_I
18 19 20 21 22 23 24

#include <linux/rwsem.h>
#include <linux/rbtree.h>
#include <linux/seqlock.h>
#include <linux/mutex.h>

/* data type for block offset of block group */
25
typedef int ext4_grpblk_t;
26 27

/* data type for filesystem-wide blocks number */
28
typedef sector_t ext4_fsblk_t;
29

30
#if BITS_PER_LONG == 64
31
#define E3FSBLK "%lu"
32 33 34
#else
#define E3FSBLK "%llu"
#endif
35

36 37 38
struct ext4_reserve_window {
	ext4_fsblk_t	_rsv_start;	/* First byte reserved */
	ext4_fsblk_t	_rsv_end;	/* Last byte reserved or 0 */
39 40
};

41
struct ext4_reserve_window_node {
42 43 44
	struct rb_node		rsv_node;
	__u32			rsv_goal_size;
	__u32			rsv_alloc_hit;
45
	struct ext4_reserve_window	rsv_window;
46 47
};

48
struct ext4_block_alloc_info {
49
	/* information about reservation window */
50
	struct ext4_reserve_window_node	rsv_window_node;
51
	/*
52
	 * was i_next_alloc_block in ext4_inode_info
53 54 55 56 57 58
	 * is the logical (file-relative) number of the
	 * most-recently-allocated block in this file.
	 * We use this for detecting linearly ascending allocation requests.
	 */
	__u32                   last_alloc_logical_block;
	/*
59
	 * Was i_next_alloc_goal in ext4_inode_info
60 61 62 63 64
	 * is the *physical* companion to i_next_alloc_block.
	 * it the the physical block number of the block which was most-recentl
	 * allocated to this file.  This give us the goal (target) for the next
	 * allocation when we detect linearly ascending requests.
	 */
65
	ext4_fsblk_t		last_alloc_physical_block;
66 67 68 69 70
};

#define rsv_start rsv_window._rsv_start
#define rsv_end rsv_window._rsv_end

A
Alex Tomas 已提交
71 72 73 74 75 76 77 78 79 80
/*
 * storage for cached extent
 */
struct ext4_ext_cache {
	__u32	ec_start;
	__u32	ec_block;
	__u32	ec_len; /* must be 32bit to return holes */
	__u32	ec_type;
};

81 82 83
/*
 * third extended file system inode data in memory
 */
84
struct ext4_inode_info {
85 86
	__le32	i_data[15];	/* unconverted */
	__u32	i_flags;
87
#ifdef EXT4_FRAGMENTS
88 89 90 91
	__u32	i_faddr;
	__u8	i_frag_no;
	__u8	i_frag_size;
#endif
92
	ext4_fsblk_t	i_file_acl;
93 94 95 96 97 98 99 100 101 102 103
	__u32	i_dir_acl;
	__u32	i_dtime;

	/*
	 * i_block_group is the number of the block group which contains
	 * this file's inode.  Constant across the lifetime of the inode,
	 * it is ued for making block allocation decisions - we try to
	 * place a file's data blocks near its inode block, and new inodes
	 * near to their parent directory's inode.
	 */
	__u32	i_block_group;
104
	__u32	i_state;		/* Dynamic state flags for ext4 */
105 106

	/* block reservation info */
107
	struct ext4_block_alloc_info *i_block_alloc_info;
108 109

	__u32	i_dir_start_lookup;
110
#ifdef CONFIG_EXT4DEV_FS_XATTR
111 112 113 114 115 116 117 118 119
	/*
	 * Extended attributes can be read independently of the main file
	 * data. Taking i_mutex even when reading would cause contention
	 * between readers of EAs and writers of regular file data, so
	 * instead we synchronize on xattr_sem when reading or changing
	 * EAs.
	 */
	struct rw_semaphore xattr_sem;
#endif
120
#ifdef CONFIG_EXT4DEV_FS_POSIX_ACL
121 122 123 124 125 126 127 128 129
	struct posix_acl	*i_acl;
	struct posix_acl	*i_default_acl;
#endif

	struct list_head i_orphan;	/* unlinked but open inodes */

	/*
	 * i_disksize keeps track of what the inode size is ON DISK, not
	 * in memory.  During truncate, i_size is set to the new size by
130
	 * the VFS prior to calling ext4_truncate(), but the filesystem won't
131 132 133 134 135 136 137 138 139
	 * set i_disksize to 0 until the truncate is actually under way.
	 *
	 * The intent is that i_disksize always represents the blocks which
	 * are used by this file.  This allows recovery to restart truncate
	 * on orphans if we crash during truncate.  We actually write i_disksize
	 * into the on-disk inode when writing inodes out, instead of i_size.
	 *
	 * The only time when i_disksize and i_size may be different is when
	 * a truncate is in progress.  The only things which change i_disksize
140
	 * are ext4_get_block (growth) and ext4_truncate (shrinkth).
141 142 143 144 145 146 147
	 */
	loff_t	i_disksize;

	/* on-disk additional length */
	__u16 i_extra_isize;

	/*
148 149
	 * truncate_mutex is for serialising ext4_truncate() against
	 * ext4_getblock().  In the 2.4 ext2 design, great chunks of inode's
150
	 * data tree are chopped off during truncate. We can't do that in
151
	 * ext4 because whenever we perform intermediate commits during
152 153 154 155 156 157 158
	 * truncate, the inode and all the metadata blocks *must* be in a
	 * consistent state which allows truncation of the orphans to restart
	 * during recovery.  Hence we must fix the get_block-vs-truncate race
	 * by other means, so we have truncate_mutex.
	 */
	struct mutex truncate_mutex;
	struct inode vfs_inode;
A
Alex Tomas 已提交
159 160 161

	unsigned long i_ext_generation;
	struct ext4_ext_cache i_cached_extent;
162 163
};

164
#endif	/* _LINUX_EXT4_FS_I */