From f6ff3f769a8e84e9148c3c47c9e82d1bcb7d6f6a Mon Sep 17 00:00:00 2001 From: Chaskiel M Grundman Date: Tue, 2 Aug 2005 19:59:46 +0000 Subject: [PATCH] linux-vnode-aliases-20050802 FIXES 18613 you can end up hanging when you end up with multiple aliases for a single direct ory (dentry) as a result of @sys or multiple mountpoints. don't end up with multiple aliases, and avoid the situation --- src/afs/LINUX/osi_vnodeops.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/afs/LINUX/osi_vnodeops.c b/src/afs/LINUX/osi_vnodeops.c index 9187614cf..67e2621a2 100644 --- a/src/afs/LINUX/osi_vnodeops.c +++ b/src/afs/LINUX/osi_vnodeops.c @@ -913,6 +913,7 @@ afs_linux_lookup(struct inode *dip, struct dentry *dp) if (res) { if (d_unhashed(res)) d_rehash(res); + iput(ip); } else #endif d_add(dp, ip); -- 2.39.5