diff options
author | Jan Schmidt <list.btrfs@jan-o-sch.net> | 2012-05-16 10:57:09 -0400 |
---|---|---|
committer | Jan Schmidt <list.btrfs@jan-o-sch.net> | 2012-05-26 06:17:53 -0400 |
commit | 64947ec0d16dd20d6542b58cf82c8d5f9678cabf (patch) | |
tree | 149082d2a5ae1fe3900c753f3129e83dd5ff6e9e /fs/btrfs/ctree.h | |
parent | 5581a51a59a1f5f51ac3d4bacafb738d35e0350b (diff) |
Btrfs: move struct seq_list to ctree.h
Signed-off-by: Jan Schmidt <list.btrfs@jan-o-sch.net>
Diffstat (limited to 'fs/btrfs/ctree.h')
-rw-r--r-- | fs/btrfs/ctree.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/fs/btrfs/ctree.h b/fs/btrfs/ctree.h index e863188a3f17..e0da6dbeb570 100644 --- a/fs/btrfs/ctree.h +++ b/fs/btrfs/ctree.h | |||
@@ -3098,4 +3098,11 @@ void btrfs_reada_detach(void *handle); | |||
3098 | int btree_readahead_hook(struct btrfs_root *root, struct extent_buffer *eb, | 3098 | int btree_readahead_hook(struct btrfs_root *root, struct extent_buffer *eb, |
3099 | u64 start, int err); | 3099 | u64 start, int err); |
3100 | 3100 | ||
3101 | /* delayed seq elem */ | ||
3102 | struct seq_list { | ||
3103 | struct list_head list; | ||
3104 | u64 seq; | ||
3105 | u32 flags; | ||
3106 | }; | ||
3107 | |||
3101 | #endif | 3108 | #endif |