Back to home page

OSCL-LXR

 
 

    


0001 #ifndef __LINUX_PSEUDO_FS__
0002 #define __LINUX_PSEUDO_FS__
0003 
0004 #include <linux/fs_context.h>
0005 
0006 struct pseudo_fs_context {
0007     const struct super_operations *ops;
0008     const struct xattr_handler **xattr;
0009     const struct dentry_operations *dops;
0010     unsigned long magic;
0011 };
0012 
0013 struct pseudo_fs_context *init_pseudo(struct fs_context *fc,
0014                       unsigned long magic);
0015 
0016 #endif