diff options
author | Christoph Hellwig <hch@lst.de> | 2008-02-23 15:23:51 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-23 17:12:15 -0800 |
commit | 45254b4fb2aef51c94a7397df1e481c4137b4b97 (patch) | |
tree | 3898868f385c9f96dd8147f7458ec74c2fe3828a /fs/efs/symlink.c | |
parent | 48f15b93b2c9f4ec9b8af08ab78f7a27db7c8378 (diff) | |
download | op-kernel-dev-45254b4fb2aef51c94a7397df1e481c4137b4b97.zip op-kernel-dev-45254b4fb2aef51c94a7397df1e481c4137b4b97.tar.gz |
efs: move headers out of include/linux/
Merge include/linux/efs_fs{_i,_dir}.h into fs/efs/efs.h. efs_vh.h remains
there because this is the IRIX volume header and shouldn't really be
handled by efs but by the partitioning code. efs_sb.h remains there for
now because it's exported to userspace. Of course this wrong and aboot
should have a copy of it's own, but I'll leave that to a separate patch to
avoid any contention.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/efs/symlink.c')
-rw-r--r-- | fs/efs/symlink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/efs/symlink.c b/fs/efs/symlink.c index 1d30d2f..41911ec 100644 --- a/fs/efs/symlink.c +++ b/fs/efs/symlink.c @@ -7,10 +7,10 @@ */ #include <linux/string.h> -#include <linux/efs_fs.h> #include <linux/pagemap.h> #include <linux/buffer_head.h> #include <linux/smp_lock.h> +#include "efs.h" static int efs_symlink_readpage(struct file *file, struct page *page) { |