-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 344854 b: refs/heads/master c: c0677e6 h: refs/heads/master v: v3
- Loading branch information
Zheng Liu
authored and
Theodore Ts'o
committed
Nov 8, 2012
1 parent
8e92487
commit 945549e
Showing
3 changed files
with
32 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 07aa2ea13814ea60d12f7330b6d5ccfdb0c3ba4d | ||
refs/heads/master: c0677e6d0f9d991adff972b8d06cb83de1f8ee8e |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* | ||
* fs/ext4/extents_status.h | ||
* | ||
* Written by Yongqiang Yang <xiaoqiangnk@gmail.com> | ||
* Modified by | ||
* Allison Henderson <achender@linux.vnet.ibm.com> | ||
* Zheng Liu <wenqing.lz@taobao.com> | ||
* | ||
*/ | ||
|
||
#ifndef _EXT4_EXTENTS_STATUS_H | ||
#define _EXT4_EXTENTS_STATUS_H | ||
|
||
struct extent_status { | ||
struct rb_node rb_node; | ||
ext4_lblk_t start; /* first block extent covers */ | ||
ext4_lblk_t len; /* length of extent in block */ | ||
}; | ||
|
||
struct ext4_es_tree { | ||
struct rb_root root; | ||
struct extent_status *cache_es; /* recently accessed extent */ | ||
}; | ||
|
||
#endif /* _EXT4_EXTENTS_STATUS_H */ |