]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blob - include/linux/pseudo_fs.h
Merge tag 'pm-5.14-rc8' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
[mirror_ubuntu-jammy-kernel.git] / include / linux / pseudo_fs.h
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;
8 const struct xattr_handler **xattr;
9 const struct dentry_operations *dops;
10 unsigned long magic;
11 };
12
13 struct pseudo_fs_context *init_pseudo(struct fs_context *fc,
14 unsigned long magic);
15
16 #endif