Linux 6.14-rc1
[linux.git] / include / linux / pseudo_fs.h
blob2503f7625d65e7b1fbe9e64d5abf06cd8f017b5f
1 #ifndef __LINUX_PSEUDO_FS__
2 #define __LINUX_PSEUDO_FS__
4 #include <linux/fs_context.h>
6 struct pseudo_fs_context {
7 const struct super_operations *ops;
8 const struct export_operations *eops;
9 const struct xattr_handler * const *xattr;
10 const struct dentry_operations *dops;
11 unsigned long magic;
14 struct pseudo_fs_context *init_pseudo(struct fs_context *fc,
15 unsigned long magic);
17 #endif