rename __dentry_kill to dentry_kill

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
diff --git a/fs/dcache.c b/fs/dcache.c
index d8b1e29..0192b83 100644
--- a/fs/dcache.c
+++ b/fs/dcache.c
@@ -450,7 +450,7 @@
  * list before dropping locks.  Otherwise we kill it off
  * and return 1.
  */
-static int __dentry_kill(struct dentry *dentry, struct list_head *list)
+static int dentry_kill(struct dentry *dentry, struct list_head *list)
 {
 	struct inode *inode = dentry->d_inode;
 	struct dentry *parent = NULL;
@@ -595,7 +595,7 @@
 			spin_unlock(&parent->d_lock);
 		goto keep_it;
 	}
-	if (likely(__dentry_kill(dentry, NULL)))
+	if (likely(dentry_kill(dentry, NULL)))
 		dentry = parent;
 	if (dentry)
 		goto repeat;
@@ -847,7 +847,7 @@
 			continue;
 		}
 
-		if (!__dentry_kill(dentry, list))
+		if (!dentry_kill(dentry, list))
 			continue;
 
 		/*
@@ -866,7 +866,7 @@
 					spin_unlock(&parent->d_lock);
 				break;
 			}
-			if (likely(__dentry_kill(dentry, NULL)))
+			if (likely(dentry_kill(dentry, NULL)))
 				dentry = parent;
 		}
 	}