cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

kdebugfs.c (326B)


      1// SPDX-License-Identifier: GPL-2.0
      2#include <linux/module.h>
      3#include <linux/init.h>
      4#include <linux/debugfs.h>
      5
      6struct dentry *arch_debugfs_dir;
      7EXPORT_SYMBOL(arch_debugfs_dir);
      8
      9static int __init arch_kdebugfs_init(void)
     10{
     11	arch_debugfs_dir = debugfs_create_dir("sh", NULL);
     12	return 0;
     13}
     14arch_initcall(arch_kdebugfs_init);