Home
last modified time | relevance | path

Searched refs:dbg_root (Results 1 – 6 of 6) sorted by relevance

/linux-4.4.14/drivers/net/ethernet/intel/fm10k/
Dfm10k_debugfs.c28 static struct dentry *dbg_root; variable
230 if (dbg_root) in fm10k_dbg_intfc_init()
231 interface->dbg_intfc = debugfs_create_dir(name, dbg_root); in fm10k_dbg_intfc_init()
240 if (dbg_root) in fm10k_dbg_intfc_exit()
250 dbg_root = debugfs_create_dir(fm10k_driver_name, NULL); in fm10k_dbg_init()
258 debugfs_remove_recursive(dbg_root); in fm10k_dbg_exit()
259 dbg_root = NULL; in fm10k_dbg_exit()
/linux-4.4.14/drivers/net/ethernet/mellanox/mlx5/core/
Ddebugfs.c110 dev->priv.qp_debugfs = debugfs_create_dir("QPs", dev->priv.dbg_root); in mlx5_qp_debugfs_init()
130 dev->priv.eq_debugfs = debugfs_create_dir("EQs", dev->priv.dbg_root); in mlx5_eq_debugfs_init()
207 *cmd = debugfs_create_dir("commands", dev->priv.dbg_root); in mlx5_cmdif_debugfs_init()
262 dev->priv.cq_debugfs = debugfs_create_dir("CQs", dev->priv.dbg_root); in mlx5_cq_debugfs_init()
Dcmd.c1150 debugfs_remove_recursive(dbg->dbg_root); in clean_debug_files()
1161 dbg->dbg_root = debugfs_create_dir("cmd", dev->priv.dbg_root); in create_debugfs_files()
1162 if (!dbg->dbg_root) in create_debugfs_files()
1165 dbg->dbg_in = debugfs_create_file("in", 0400, dbg->dbg_root, in create_debugfs_files()
1170 dbg->dbg_out = debugfs_create_file("out", 0200, dbg->dbg_root, in create_debugfs_files()
1175 dbg->dbg_outlen = debugfs_create_file("out_len", 0600, dbg->dbg_root, in create_debugfs_files()
1180 dbg->dbg_status = debugfs_create_u8("status", 0600, dbg->dbg_root, in create_debugfs_files()
1185 dbg->dbg_run = debugfs_create_file("run", 0200, dbg->dbg_root, dev, &fops); in create_debugfs_files()
Dmain.c856 priv->dbg_root = debugfs_create_dir(dev_name(&pdev->dev), mlx5_debugfs_root); in mlx5_pci_init()
857 if (!priv->dbg_root) in mlx5_pci_init()
897 debugfs_remove(priv->dbg_root); in mlx5_pci_init()
907 debugfs_remove(priv->dbg_root); in mlx5_pci_close()
/linux-4.4.14/include/linux/mlx5/
Ddriver.h205 struct dentry *dbg_root; member
479 struct dentry *dbg_root; member
/linux-4.4.14/drivers/infiniband/hw/mlx5/
Dmr.c524 cache->root = debugfs_create_dir("mr_cache", dev->mdev->priv.dbg_root); in mlx5_mr_cache_debugfs_init()