/* * * Definitions for mount interface. This describes the in the kernel build * linkedlist with mounted filesystems. * * Author: Marco van Wieringen * */ #ifndef _LINUX_MOUNT_H #define _LINUX_MOUNT_H #include #include struct vfsmount { struct dentry *mnt_root; /* root of the mounted tree */ struct super_block *mnt_sb; /* pointer to superblock */ int mnt_flags; }; #endif /* _LINUX_MOUNT_H */