Linux 6.10-rc4
[linux-block.git] / include / linux / pseudo_fs.h
CommitLineData
31d6d5ce
DH
1#ifndef __LINUX_PSEUDO_FS__
2#define __LINUX_PSEUDO_FS__
3
4#include <linux/fs_context.h>
5
6struct pseudo_fs_context {
7 const struct super_operations *ops;
295d3c44 8 const struct xattr_handler * const *xattr;
31d6d5ce
DH
9 const struct dentry_operations *dops;
10 unsigned long magic;
11};
12
13struct pseudo_fs_context *init_pseudo(struct fs_context *fc,
14 unsigned long magic);
15
16#endif