debugfs.c 388 B

12345678910111213141516171819202122
  1. #include <linux/init.h>
  2. #include <linux/debugfs.h>
  3. #include <linux/slab.h>
  4. #include <linux/module.h>
  5. #include "debugfs.h"
  6. static struct dentry *d_xen_debug;
  7. struct dentry * __init xen_init_debugfs(void)
  8. {
  9. if (!d_xen_debug) {
  10. d_xen_debug = debugfs_create_dir("xen", NULL);
  11. if (!d_xen_debug)
  12. pr_warning("Could not create 'xen' debugfs directory\n");
  13. }
  14. return d_xen_debug;
  15. }