diff options
Diffstat (limited to 'include/linux/fs_struct.h')
| -rw-r--r-- | include/linux/fs_struct.h | 6 | 
1 files changed, 2 insertions, 4 deletions
diff --git a/include/linux/fs_struct.h b/include/linux/fs_struct.h index 11a36ceddf73..e3e7254412da 100644 --- a/include/linux/fs_struct.h +++ b/include/linux/fs_struct.h @@ -1,15 +1,13 @@  #ifndef _LINUX_FS_STRUCT_H  #define _LINUX_FS_STRUCT_H -struct dentry; -struct vfsmount; +#include <linux/path.h>  struct fs_struct {  	atomic_t count;  	rwlock_t lock;  	int umask; -	struct dentry * root, * pwd, * altroot; -	struct vfsmount * rootmnt, * pwdmnt, * altrootmnt; +	struct path root, pwd, altroot;  };  #define INIT_FS {				\  | 
