diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-02-08 04:21:31 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-08 09:22:39 -0800 |
commit | e542059884bb6d651d7ffc64eacedbab2b64078c (patch) | |
tree | 336dc9a9b9fec99b9e744b2f754a27606e40eb49 /fs/ufs/symlink.c | |
parent | bdc807871d58285737d50dc6163d0feb72cb0dc2 (diff) |
drop linux/ufs_fs.h from userspace export and relocate it to fs/ufs/ufs_fs.h
Per previous discussions about cleaning up ufs_fs.h, people just want
this straight up dropped from userspace export. The only remaining
consumer (silo) has been fixed a while ago to not rely on this header.
This allows use to move it completely from include/linux/ to fs/ufs/
seeing as how the only in-kernel consumer is fs/ufs/.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Cc: Jan Kara <jack@ucw.cz>
Cc: 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/ufs/symlink.c')
-rw-r--r-- | fs/ufs/symlink.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/ufs/symlink.c b/fs/ufs/symlink.c index 43ac10e75a4..c0156eda44b 100644 --- a/fs/ufs/symlink.c +++ b/fs/ufs/symlink.c @@ -27,7 +27,8 @@ #include <linux/fs.h> #include <linux/namei.h> -#include <linux/ufs_fs.h> + +#include "ufs_fs.h" #include "ufs.h" |