On Tue, 30 Sep 2003, Deepali Naik wrote:
/*
- linux/fs/myfs/bitmap.c
*/
#include "fs.h" #include "myfs_fs.h"
$ grep "fs.h" /usr/src/linux/fs/*.c
bad_inode.c:#include <linux/fs.h> binfmt_aout.c:#include <linux/fs.h> binfmt_elf.c:#include <linux/fs.h> binfmt_som.c:#include <linux/fs.h> [snip]
You'll notice the common thing in all the above files is that they #include <linux/fs.h> and not #include "fs.h"
fs.h expects to be included from above the linux/ directory.
Hope this helps
Philip
PS (to everyone): do not send your messages to linuxers-request. That address is for setting/retrieving your mailing list options. No human reads those mails.