VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   33 Branches   55 Tags
author: David Howells <dhowells@redhat.com> 2015-03-05 12:46:49 +0000 committer: Al Viro <viro@zeniv.linux.org.uk> 2015-04-15 15:05:30 -0400 commit: 7ceab50c0be56cf1bbaf2b3dd1c6cda80e5335fb parent: 698934df8b45da2a06816ee2d7f9a9034e671e62
Commit Summary:
VFS: Fix up debugfs to use d_is_dir() in place of S_ISDIR()
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/fs/debugfs/inode.c b/fs/debugfs/inode.c
index 96400ab42d13..26856ecdea5e 100644
--- a/fs/debugfs/inode.c
+++ b/fs/debugfs/inode.c
@@ -521,7 +521,7 @@ static int __debugfs_remove(struct dentry *dentry, struct dentry *parent)
 
 	if (debugfs_positive(dentry)) {
 		dget(dentry);
-		if (S_ISDIR(dentry->d_inode->i_mode))
+		if (d_is_dir(dentry))
 			ret = simple_rmdir(parent->d_inode, dentry);
 		else
 			simple_unlink(parent->d_inode, dentry);