From patchwork Fri Dec 10 01:22:45 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fred Isaman X-Patchwork-Id: 397422 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id oBA68gGC018031 for ; Fri, 10 Dec 2010 06:08:49 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751544Ab0LJGIs (ORCPT ); Fri, 10 Dec 2010 01:08:48 -0500 Received: from mx2.netapp.com ([216.240.18.37]:64950 "EHLO mx2.netapp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751575Ab0LJGIr (ORCPT ); Fri, 10 Dec 2010 01:08:47 -0500 X-IronPort-AV: E=Sophos;i="4.59,323,1288594800"; d="scan'208";a="493205442" Received: from smtp1.corp.netapp.com ([10.57.156.124]) by mx2-out.netapp.com with ESMTP; 09 Dec 2010 22:08:47 -0800 Received: from localhost.localdomain (kozen-lxp.hq.netapp.com [10.58.53.114] (may be forged)) by smtp1.corp.netapp.com (8.13.1/8.13.1/NTAP-1.6) with ESMTP id oBA68VLl023313 for ; Thu, 9 Dec 2010 22:08:47 -0800 (PST) From: Fred Isaman To: linux-nfs@vger.kernel.org Subject: [PATCH 10/22] pnfs-submit: wave4: fix bug dealing with commit split between DS and MDS Date: Thu, 9 Dec 2010 20:22:45 -0500 Message-Id: <1291944177-7819-11-git-send-email-iisaman@netapp.com> X-Mailer: git-send-email 1.7.2.1 In-Reply-To: <1291944177-7819-1-git-send-email-iisaman@netapp.com> References: <1291944177-7819-1-git-send-email-iisaman@netapp.com> Sender: linux-nfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-nfs@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter1.kernel.org [140.211.167.41]); Fri, 10 Dec 2010 06:08:49 +0000 (UTC) diff --git a/fs/nfs/nfs4filelayout.c b/fs/nfs/nfs4filelayout.c index 055816a..fb0efda 100644 --- a/fs/nfs/nfs4filelayout.c +++ b/fs/nfs/nfs4filelayout.c @@ -497,6 +497,7 @@ filelayout_commit(struct nfs_write_data *data, int sync) struct list_head **ds_page_list = NULL; u16 *indices_used; int num_indices_seen = 0; + bool used_mds = false; const struct rpc_call_ops *call_ops; struct rpc_clnt *clnt; struct nfs_write_data **clone_list = NULL; @@ -546,11 +547,21 @@ filelayout_commit(struct nfs_write_data *data, int sync) if (!clone_list) goto mem_error; for (i = 0; i < num_indices_seen - 1; i++) { + if (indices_used[i] == NFS4_PNFS_MAX_MULTI_CNT) { + used_mds = true; + clone_list[i] = data; + } else { + clone_list[i] = filelayout_clone_write_data(data); + if (!clone_list[i]) + goto mem_error; + } + } + if (used_mds) { clone_list[i] = filelayout_clone_write_data(data); if (!clone_list[i]) goto mem_error; - } - clone_list[i] = data; + } else + clone_list[i] = data; /* * Now send off the RPCs to each ds. Note that it is important * that any RPC to the MDS be sent last (or at least after all