Commit | Line | Data |
---|---|---|
31d6d5ce DH |
1 | #ifndef __LINUX_PSEUDO_FS__ |
2 | #define __LINUX_PSEUDO_FS__ | |
3 | ||
4 | #include <linux/fs_context.h> | |
5 | ||
6 | struct pseudo_fs_context { | |
7 | const struct super_operations *ops; | |
d2ab36bb | 8 | const struct export_operations *eops; |
295d3c44 | 9 | const struct xattr_handler * const *xattr; |
31d6d5ce DH |
10 | const struct dentry_operations *dops; |
11 | unsigned long magic; | |
12 | }; | |
13 | ||
14 | struct pseudo_fs_context *init_pseudo(struct fs_context *fc, | |
15 | unsigned long magic); | |
16 | ||
17 | #endif |