You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
355 B
17 lines
355 B
#ifndef __LINUX_PSEUDO_FS__
|
|
#define __LINUX_PSEUDO_FS__
|
|
|
|
#include <linux/fs_context.h>
|
|
|
|
struct pseudo_fs_context {
|
|
const struct super_operations *ops;
|
|
const struct xattr_handler **xattr;
|
|
const struct dentry_operations *dops;
|
|
unsigned long magic;
|
|
};
|
|
|
|
struct pseudo_fs_context *init_pseudo(struct fs_context *fc,
|
|
unsigned long magic);
|
|
|
|
#endif
|