From: adilger Date: Mon, 28 Oct 2002 17:49:14 +0000 (+0000) Subject: Per Mike's observation, we already set lic.lic_body before this point. X-Git-Tag: 0.5.16~109 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=64d57f953cba38084c5b6cab89277f8c959626b2;p=fs%2Flustre-release.git Per Mike's observation, we already set lic.lic_body before this point. --- diff --git a/lustre/llite/namei.c b/lustre/llite/namei.c index 7264964..1dcc8f1 100644 --- a/lustre/llite/namei.c +++ b/lustre/llite/namei.c @@ -249,11 +249,9 @@ static struct dentry *ll_lookup2(struct inode *dir, struct dentry *dentry, if (it->it_status && it->it_status != -EEXIST) GOTO(neg_req, NULL); } else if (it->it_op & (IT_RENAME2 | IT_LINK2)) { - struct mds_body *body = - lustre_msg_buf(request->rq_repmsg, offset); it->it_data = NULL; /* This means the target lookup is negative */ - if (body->valid == 0) + if (lic.lic_body->valid == 0) GOTO(neg_req, NULL); goto iget; }