pseudo_fs.h 355 B

12345678910111213141516
  1. #ifndef __LINUX_PSEUDO_FS__
  2. #define __LINUX_PSEUDO_FS__
  3. #include <linux/fs_context.h>
  4. struct pseudo_fs_context {
  5. const struct super_operations *ops;
  6. const struct xattr_handler **xattr;
  7. const struct dentry_operations *dops;
  8. unsigned long magic;
  9. };
  10. struct pseudo_fs_context *init_pseudo(struct fs_context *fc,
  11. unsigned long magic);
  12. #endif