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