From: adilger Date: Sat, 5 Oct 2002 14:11:23 +0000 (+0000) Subject: Move debugging message outside spinlock. X-Git-Tag: 0.5.14~49 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=df74df80f66434b97c56b4ed15dd3c33124f4ff6;p=fs%2Flustre-release.git Move debugging message outside spinlock. --- diff --git a/lustre/mds/handler.c b/lustre/mds/handler.c index 0ad752b..3d209df 100644 --- a/lustre/mds/handler.c +++ b/lustre/mds/handler.c @@ -762,9 +762,9 @@ static int mds_open(struct ptlrpc_request *req) if (!memcmp(&mfd->mfd_clienthandle, &body->handle, sizeof(mfd->mfd_clienthandle)) && body->fid1.id == mfd->mfd_file->f_dentry->d_inode->i_ino) { - CERROR("Re opening "LPD64"\n", body->fid1.id); de = mfd->mfd_file->f_dentry; spin_unlock(&med->med_open_lock); + CERROR("Re opening "LPD64"\n", body->fid1.id); GOTO(out_pack, rc = 0); } }