From patchwork Thu Nov 26 08:35:29 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yi Zhang X-Patchwork-Id: 11933043 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-15.8 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_CR_TRAILER,INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3DB11C64E75 for ; Thu, 26 Nov 2020 08:36:18 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id DCD522145D for ; Thu, 26 Nov 2020 08:36:17 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b="BfAQfk0t" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727498AbgKZIgH (ORCPT ); Thu, 26 Nov 2020 03:36:07 -0500 Received: from us-smtp-delivery-124.mimecast.com ([216.205.24.124]:41441 "EHLO us-smtp-delivery-124.mimecast.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726392AbgKZIgG (ORCPT ); Thu, 26 Nov 2020 03:36:06 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1606379765; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=b1JUCFxP98Y6dqOjE3XLdXL2MOBEQrR1ym0p8vqzfFo=; b=BfAQfk0tCcs7moiIFrXKljdemJaV2ArY9msdRTlKA+2XaPEWf7wjhtoHFoDjsmJov4b6MY UX/ddyxx9f5XjH6EzArRmaVOun59WoU3qZ2bRLy9by7xLw0MUmu3vwFEAzDh2+A4zpJOCZ gjBBsL5Kep2nuY3bBgCL+HLi+mIh1R4= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-15--JoODfOmPliVtZxArPpDmg-1; Thu, 26 Nov 2020 03:36:03 -0500 X-MC-Unique: -JoODfOmPliVtZxArPpDmg-1 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id A277B9A229; Thu, 26 Nov 2020 08:36:01 +0000 (UTC) Received: from dhcp-12-105.nay.redhat.com (unknown [10.66.61.33]) by smtp.corp.redhat.com (Postfix) with ESMTP id C84E819C66; Thu, 26 Nov 2020 08:35:59 +0000 (UTC) From: Yi Zhang To: osandov@osandov.com, bvanassche@acm.org Cc: linux-block@vger.kernel.org, linux-nvme@lists.infradead.org, sagi@grimberg.me Subject: [PATCH V3 blktests 2/5] tests/nvmeof-mp/rc: run nvmeof-mp tests if we set multipath=N Date: Thu, 26 Nov 2020 16:35:29 +0800 Message-Id: <20201126083532.27509-3-yi.zhang@redhat.com> In-Reply-To: <20201126083532.27509-1-yi.zhang@redhat.com> References: <20201126083532.27509-1-yi.zhang@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.84 on 10.5.11.23 Precedence: bulk List-ID: X-Mailing-List: linux-block@vger.kernel.org To enable it, just do bellow step before we run it: $ echo "options nvme_core multipath=N" >/etc/modprobe.d/nvme.conf Reviewed-by: Bart Van Assche Signed-off-by: Yi Zhang --- tests/nvmeof-mp/rc | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/tests/nvmeof-mp/rc b/tests/nvmeof-mp/rc index d7a7c87..c77526f 100755 --- a/tests/nvmeof-mp/rc +++ b/tests/nvmeof-mp/rc @@ -16,9 +16,11 @@ group_requires() { # Since the nvmeof-mp tests are based on the dm-mpath driver, these # tests are incompatible with the NVME_MULTIPATH kernel configuration - # option. - if _have_kernel_option NVME_MULTIPATH; then - SKIP_REASON="CONFIG_NVME_MULTIPATH has been set in .config" + # option with multipathing enabled in the nvme_core kernel module. + if _have_kernel_option NVME_MULTIPATH && \ + _have_module_param_value nvme_core multipath Y; then + SKIP_REASON="CONFIG_NVME_MULTIPATH has been set in .config \ +and multipathing has been enabled in the nvme_core kernel module" return fi