debugfs: use list_next_entry() in debugfs_remove_recursive()
authorOleg Nesterov <[email protected]>
Tue, 12 Nov 2013 23:10:04 +0000 (15:10 -0800)
committerLinus Torvalds <[email protected]>
Wed, 13 Nov 2013 03:09:24 +0000 (12:09 +0900)
Change debugfs_remove_recursive() to use list_next_entry(child), no
changes in generated code.

Signed-off-by: Oleg Nesterov <[email protected]>
Cc: Eilon Greenstein <[email protected]>
Cc: Greg Kroah-Hartman <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
fs/debugfs/inode.c

index c7c83ff0f752ce6a86d6e42a420e34ed996ae8ca..9c0444cccbe108b245338a0d40a5d702fbe45407 100644 (file)
@@ -566,8 +566,7 @@ void debugfs_remove_recursive(struct dentry *dentry)
        mutex_lock(&parent->d_inode->i_mutex);
 
        if (child != dentry) {
-               next = list_entry(child->d_u.d_child.next, struct dentry,
-                                       d_u.d_child);
+               next = list_next_entry(child, d_u.d_child);
                goto up;
        }