diff options
author | Krishna Srinivas <ksriniva@redhat.com> | 2012-04-30 16:43:16 +0530 |
---|---|---|
committer | Anand Avati <avati@redhat.com> | 2012-05-05 12:42:31 -0700 |
commit | 9bd1b291e3e107250b38d05702df7cd751382bdc (patch) | |
tree | ad1a4e0810d7063112c09782c5665fde7e375cc2 /libglusterfs/src | |
parent | 298ff93eab48de51a1bd77e4b12e88a7add1d174 (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/src')
-rw-r--r-- | libglusterfs/src/inode.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libglusterfs/src/inode.c b/libglusterfs/src/inode.c index fed23ae35..1db829792 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); |