From patchwork Fri Nov 30 02:36:53 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Yan, Zheng" X-Patchwork-Id: 1823451 Return-Path: X-Original-To: patchwork-ceph-devel@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id ACEE43FC5A for ; Fri, 30 Nov 2012 02:37:11 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755435Ab2K3ChF (ORCPT ); Thu, 29 Nov 2012 21:37:05 -0500 Received: from mga02.intel.com ([134.134.136.20]:8401 "EHLO mga02.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754991Ab2K3ChD (ORCPT ); Thu, 29 Nov 2012 21:37:03 -0500 Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga101.jf.intel.com with ESMTP; 29 Nov 2012 18:37:03 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.84,189,1355126400"; d="scan'208";a="226945417" Received: from zyan5-mobl.sh.intel.com ([10.239.36.120]) by orsmga001.jf.intel.com with ESMTP; 29 Nov 2012 18:37:02 -0800 From: "Yan, Zheng" To: ceph-devel@vger.kernel.org, sage@inktank.com Cc: "Yan, Zheng" Subject: [PATCH 4/5] mds: call eval() after cap is imported Date: Fri, 30 Nov 2012 10:36:53 +0800 Message-Id: <1354243014-21072-5-git-send-email-zheng.z.yan@intel.com> X-Mailer: git-send-email 1.7.11.7 In-Reply-To: <1354243014-21072-1-git-send-email-zheng.z.yan@intel.com> References: <1354243014-21072-1-git-send-email-zheng.z.yan@intel.com> Sender: ceph-devel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: ceph-devel@vger.kernel.org From: "Yan, Zheng" The migrator calls eval() for imported caps after importing a directory tree. We should do the same thing after importing a inode. Signed-off-by: Yan, Zheng --- src/mds/Migrator.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mds/Migrator.cc b/src/mds/Migrator.cc index 41d97e9..fcc06cd 100644 --- a/src/mds/Migrator.cc +++ b/src/mds/Migrator.cc @@ -2613,6 +2613,7 @@ void Migrator::logged_import_caps(CInode *in, assert(cap_imports.count(in)); finish_import_inode_caps(in, from, cap_imports[in]); + mds->locker->eval(in, CEPH_CAP_LOCKS); mds->send_message_mds(new MExportCapsAck(in->ino()), from); }