summaryrefslogtreecommitdiffstats
path: root/libglusterfs
diff options
context:
space:
mode:
authorKrishna Srinivas <ksriniva@redhat.com>2012-04-30 16:43:16 +0530
committerAnand Avati <avati@redhat.com>2012-05-05 12:42:31 -0700
commit9bd1b291e3e107250b38d05702df7cd751382bdc (patch)
treead1a4e0810d7063112c09782c5665fde7e375cc2 /libglusterfs
parent298ff93eab48de51a1bd77e4b12e88a7add1d174 (diff)
libglusterfs/inode.c: do not link the inode in the dentry cache for "." and ".."
Change-Id: I18c2e090c1ca64f47ce70dc63c9f73ea7def2f86 BUG: 810828 Signed-off-by: Krishna Srinivas <ksriniva@redhat.com> Reviewed-on: http://review.gluster.com/3220 Tested-by: Gluster Build System <jenkins@build.gluster.com> Reviewed-by: Anand Avati <avati@redhat.com>
Diffstat (limited to 'libglusterfs')
-rw-r--r--libglusterfs/src/inode.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/libglusterfs/src/inode.c b/libglusterfs/src/inode.c
index fed23ae3539..1db8297923a 100644
--- a/libglusterfs/src/inode.c
+++ b/libglusterfs/src/inode.c
@@ -851,6 +851,11 @@ __inode_link (inode_t *inode, inode_t *parent, const char *name,
}
}
+ if (name) {
+ if (!strcmp(name, ".") || !strcmp(name, ".."))
+ return link_inode;
+ }
+
/* use only link_inode beyond this point */
if (parent) {
old_dentry = __dentry_grep (table, parent, name);