2019-03-25 16:38:23 +00:00
|
|
|
#ifndef __LINUX_PSEUDO_FS__
|
|
|
|
#define __LINUX_PSEUDO_FS__
|
|
|
|
|
|
|
|
#include <linux/fs_context.h>
|
|
|
|
|
|
|
|
struct pseudo_fs_context {
|
|
|
|
const struct super_operations *ops;
|
2024-11-29 13:38:00 +00:00
|
|
|
const struct export_operations *eops;
|
2023-09-30 05:00:33 +00:00
|
|
|
const struct xattr_handler * const *xattr;
|
2019-03-25 16:38:23 +00:00
|
|
|
const struct dentry_operations *dops;
|
|
|
|
unsigned long magic;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct pseudo_fs_context *init_pseudo(struct fs_context *fc,
|
|
|
|
unsigned long magic);
|
|
|
|
|
|
|
|
#endif
|