1DEBUGFS_REMOVE(9) The debugfs filesystem DEBUGFS_REMOVE(9)
2
3
4
6 debugfs_remove - removes a file or directory from the debugfs
7 filesystem
8
10 void debugfs_remove(struct dentry * dentry);
11
13 dentry
14 a pointer to a the dentry of the file or directory to be removed.
15
17 This function removes a file or directory in debugfs that was
18 previously created with a call to another debugfs function (like
19 debugfs_create_file or variants thereof.)
20
21 This function is required to be called in order for the file to be
22 removed, no automatic cleanup of files will happen when a module is
23 removed, you are responsible here.
24
26Kernel Hackers Manual 3.10 June 2019 DEBUGFS_REMOVE(9)