diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2012-03-29 22:30:07 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-03-31 16:03:16 -0400 |
commit | 4613ad180d19082f99551477dcb13cb23d23661b (patch) | |
tree | c90407d53b5e7270c55831e394bd879825e0c6e9 /fs/ext3/dir.c | |
parent | f7699f2b0114fcd0ea5ad5f8aa2142f1bcc27fd0 (diff) |
ext3: move headers to fs/ext3/
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/ext3/dir.c')
-rw-r--r-- | fs/ext3/dir.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/fs/ext3/dir.c b/fs/ext3/dir.c index 34f0a072b935..cc761ad8fa57 100644 --- a/fs/ext3/dir.c +++ b/fs/ext3/dir.c | |||
@@ -21,12 +21,7 @@ | |||
21 | * | 21 | * |
22 | */ | 22 | */ |
23 | 23 | ||
24 | #include <linux/fs.h> | 24 | #include "ext3.h" |
25 | #include <linux/jbd.h> | ||
26 | #include <linux/ext3_fs.h> | ||
27 | #include <linux/buffer_head.h> | ||
28 | #include <linux/slab.h> | ||
29 | #include <linux/rbtree.h> | ||
30 | 25 | ||
31 | static unsigned char ext3_filetype_table[] = { | 26 | static unsigned char ext3_filetype_table[] = { |
32 | DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK | 27 | DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK |