From 62cff8e25cde77af7a0a0b9976e9409f4b416565 Mon Sep 17 00:00:00 2001
From: alex <alex>
Date: Fri, 4 Jun 2004 13:00:09 +0000
Subject: [PATCH] - typo fixed

---
 lustre/mds/handler.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/lustre/mds/handler.c b/lustre/mds/handler.c
index 6b20e03cc0..045daa343c 100644
--- a/lustre/mds/handler.c
+++ b/lustre/mds/handler.c
@@ -949,12 +949,12 @@ static int mds_getattr_name(int offset, struct ptlrpc_request *req,
         cleanup_phase = 2; /* dchild, dparent, locks */
 
 fill_inode:
-        if (dparent) {
-                rc = mds_check_mds_num(obd, dparent->d_cache_inode, name,
-                                       namesize);
-                if (rc)
-                        GOTO(cleanup, rc); 
-        }
+
+        /* let's make sure this name should leave on this mds node */
+        rc = mds_check_mds_num(obd, dparent->d_inode, name, namesize);
+        if (rc)
+                GOTO(cleanup, rc);
+
         if (!DENTRY_VALID(dchild)) {
                 intent_set_disposition(rep, DISP_LOOKUP_NEG);
                 /* in the intent case, the policy clears this error:
-- 
GitLab