Searched refs:dbgfs_root (Results 1 – 9 of 9) sorted by relevance
/linux-5.19.10/drivers/cpufreq/ |
D | s3c24xx-cpufreq-debugfs.c | 23 static struct dentry *dbgfs_root; variable 144 dbgfs_root = debugfs_create_dir("s3c-cpufreq", NULL); in s3c_freq_debugfs_init() 145 if (IS_ERR(dbgfs_root)) { in s3c_freq_debugfs_init() 147 return PTR_ERR(dbgfs_root); in s3c_freq_debugfs_init() 150 dbgfs_file_io = debugfs_create_file("io-timing", S_IRUGO, dbgfs_root, in s3c_freq_debugfs_init() 153 dbgfs_file_info = debugfs_create_file("info", S_IRUGO, dbgfs_root, in s3c_freq_debugfs_init() 156 dbgfs_file_board = debugfs_create_file("board", S_IRUGO, dbgfs_root, in s3c_freq_debugfs_init()
|
/linux-5.19.10/drivers/net/ethernet/huawei/hinic/ |
D | hinic_debugfs.c | 267 nic_dev->sq_dbgfs = debugfs_create_dir("SQs", nic_dev->dbgfs_root); in hinic_sq_dbgfs_init() 277 nic_dev->rq_dbgfs = debugfs_create_dir("RQs", nic_dev->dbgfs_root); in hinic_rq_dbgfs_init() 288 nic_dev->func_tbl_dbgfs = debugfs_create_dir("func_table", nic_dev->dbgfs_root); in hinic_func_tbl_dbgfs_init() 299 nic_dev->dbgfs_root = debugfs_create_dir(pci_name(nic_dev->hwdev->hwif->pdev), in hinic_dbg_init() 305 debugfs_remove_recursive(nic_dev->dbgfs_root); in hinic_dbg_uninit() 306 nic_dev->dbgfs_root = NULL; in hinic_dbg_uninit()
|
D | hinic_dev.h | 112 struct dentry *dbgfs_root; member
|
/linux-5.19.10/drivers/usb/mtu3/ |
D | mtu3_debugfs.c | 357 dir_prb = debugfs_create_dir("probe", ssusb->dbgfs_root); in mtu3_debugfs_create_prb_files() 393 dir_eps = debugfs_create_dir("eps", ssusb->dbgfs_root); in mtu3_debugfs_create_ep_dirs() 406 dir_regs = debugfs_create_dir("regs", ssusb->dbgfs_root); in ssusb_dev_debugfs_init() 424 debugfs_create_file("link-state", 0444, ssusb->dbgfs_root, in ssusb_dev_debugfs_init() 426 debugfs_create_file("ep-used", 0444, ssusb->dbgfs_root, in ssusb_dev_debugfs_init() 524 struct dentry *root = ssusb->dbgfs_root; in ssusb_dr_debugfs_init() 532 ssusb->dbgfs_root = in ssusb_debugfs_create_root() 538 debugfs_remove_recursive(ssusb->dbgfs_root); in ssusb_debugfs_remove_root() 539 ssusb->dbgfs_root = NULL; in ssusb_debugfs_remove_root()
|
D | mtu3.h | 261 struct dentry *dbgfs_root; member
|
/linux-5.19.10/mm/damon/ |
D | dbgfs.c | 1002 struct dentry *dbgfs_root; in __damon_dbgfs_init() local 1009 dbgfs_root = debugfs_create_dir("damon", NULL); in __damon_dbgfs_init() 1012 debugfs_create_file(file_names[i], 0600, dbgfs_root, NULL, in __damon_dbgfs_init() 1014 dbgfs_fill_ctx_dir(dbgfs_root, dbgfs_ctxs[0]); in __damon_dbgfs_init() 1016 dbgfs_dirs = kmalloc_array(1, sizeof(dbgfs_root), GFP_KERNEL); in __damon_dbgfs_init() 1018 debugfs_remove(dbgfs_root); in __damon_dbgfs_init() 1021 dbgfs_dirs[0] = dbgfs_root; in __damon_dbgfs_init()
|
/linux-5.19.10/drivers/usb/musb/ |
D | musb_dsps.c | 114 struct dentry *dbgfs_root; member 416 glue->dbgfs_root = root; in dsps_musb_dbg_init() 506 debugfs_remove_recursive(glue->dbgfs_root); in dsps_musb_exit()
|
/linux-5.19.10/drivers/dma/ |
D | pxa_dma.c | 131 struct dentry *dbgfs_root; member 350 pdev->dbgfs_root = debugfs_create_dir(dev_name(pdev->slave.dev), NULL); in pxad_init_debugfs() 352 debugfs_create_file("state", 0400, pdev->dbgfs_root, pdev, &state_fops); in pxad_init_debugfs() 354 chandir = debugfs_create_dir("channels", pdev->dbgfs_root); in pxad_init_debugfs() 362 debugfs_remove_recursive(pdev->dbgfs_root); in pxad_cleanup_debugfs()
|
/linux-5.19.10/drivers/crypto/axis/ |
D | artpec6_crypto.c | 2820 static struct dentry *dbgfs_root; variable 2824 dbgfs_root = debugfs_create_dir("artpec6_crypto", NULL); in artpec6_crypto_init_debugfs() 2827 fault_create_debugfs_attr("fail_status_read", dbgfs_root, in artpec6_crypto_init_debugfs() 2830 fault_create_debugfs_attr("fail_dma_array_full", dbgfs_root, in artpec6_crypto_init_debugfs() 2837 debugfs_remove_recursive(dbgfs_root); in artpec6_crypto_free_debugfs() 2838 dbgfs_root = NULL; in artpec6_crypto_free_debugfs()
|