Files

19 lines
426 B
C
Raw Permalink Normal View History

#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 14:38:00 +01:00
const struct export_operations *eops;
2023-09-30 02:00:33 -03:00
const struct xattr_handler * const *xattr;
const struct dentry_operations *dops;
unsigned long magic;
2025-10-29 13:20:14 +01:00
unsigned int s_d_flags;
};
struct pseudo_fs_context *init_pseudo(struct fs_context *fc,
unsigned long magic);
#endif