From patchwork Wed Aug 3 23:23:16 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dan Williams X-Patchwork-Id: 9262335 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id D29086048F for ; Wed, 3 Aug 2016 23:26:04 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id C378C27FA1 for ; Wed, 3 Aug 2016 23:26:04 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id B84F928068; Wed, 3 Aug 2016 23:26:04 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=2.0 tests=BAYES_00, RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.1 Received: from ml01.01.org (ml01.01.org [198.145.21.10]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id 5DF2C27FA1 for ; Wed, 3 Aug 2016 23:26:04 +0000 (UTC) Received: from [127.0.0.1] (localhost [IPv6:::1]) by ml01.01.org (Postfix) with ESMTP id 50BC91A1E28; Wed, 3 Aug 2016 16:26:04 -0700 (PDT) X-Original-To: linux-nvdimm@lists.01.org Delivered-To: linux-nvdimm@lists.01.org Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by ml01.01.org (Postfix) with ESMTP id 874FB1A1E28 for ; Wed, 3 Aug 2016 16:26:02 -0700 (PDT) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga102.jf.intel.com with ESMTP; 03 Aug 2016 16:26:02 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos; i="5.28,468,1464678000"; d="scan'208"; a="1029324657" Received: from dwillia2-desk3.jf.intel.com (HELO dwillia2-desk3.amr.corp.intel.com) ([10.54.39.14]) by orsmga002.jf.intel.com with ESMTP; 03 Aug 2016 16:25:41 -0700 Subject: [ndctl PATCH 2/4] test: ensure create.sh always picks a suitable BTT-host namespace From: Dan Williams To: linux-nvdimm@lists.01.org Date: Wed, 03 Aug 2016 16:23:16 -0700 Message-ID: <147026659678.11162.9148598870507509552.stgit@dwillia2-desk3.amr.corp.intel.com> In-Reply-To: <147026658649.11162.4510254495491443980.stgit@dwillia2-desk3.amr.corp.intel.com> References: <147026658649.11162.4510254495491443980.stgit@dwillia2-desk3.amr.corp.intel.com> User-Agent: StGit/0.17.1-9-g687f MIME-Version: 1.0 X-BeenThere: linux-nvdimm@lists.01.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: "Linux-nvdimm developer list." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: linux-nvdimm-bounces@lists.01.org Sender: "Linux-nvdimm" X-Virus-Scanned: ClamAV using ClamSMTP The default namespace picked by create-namespace might not be suitable to host a BTT. Specify this size to guarantee a usable selection. Signed-off-by: Dan Williams --- test/create.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/create.sh b/test/create.sh index b0dcdb7da2bd..e9777f25e31a 100755 --- a/test/create.sh +++ b/test/create.sh @@ -44,7 +44,7 @@ eval $(echo $json | sed -e "$json2var") # create blk dev="x" -json=$($NDCTL create-namespace $BUS -t blk -m raw) +json=$($NDCTL create-namespace $BUS -t blk -m raw -s 17M) eval $(echo $json | sed -e "$json2var") [ $dev = "x" ] && echo "fail: $LINENO" && exit 1 [ $mode != "raw" ] && echo "fail: $LINENO" && exit 1