From patchwork Wed Nov 8 00:15:13 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Benjamin Marzinski X-Patchwork-Id: 10047385 X-Patchwork-Delegate: christophe.varoqui@free.fr 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 CD57860247 for ; Wed, 8 Nov 2017 00:15:54 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id BCC26290A3 for ; Wed, 8 Nov 2017 00:15:54 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id B1EC0292C5; Wed, 8 Nov 2017 00:15:54 +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=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) (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 80299290A3 for ; Wed, 8 Nov 2017 00:15:54 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id AD13B5D9E8; Wed, 8 Nov 2017 00:15:53 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com AD13B5D9E8 Authentication-Results: ext-mx01.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx01.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=dm-devel-bounces@redhat.com Received: from colo-mx.corp.redhat.com (colo-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.20]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 9178C60C9C; Wed, 8 Nov 2017 00:15:53 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 6AA141800BDD; Wed, 8 Nov 2017 00:15:53 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id vA80Fg4d008970 for ; Tue, 7 Nov 2017 19:15:42 -0500 Received: by smtp.corp.redhat.com (Postfix) id 6E9105D6AE; Wed, 8 Nov 2017 00:15:42 +0000 (UTC) Delivered-To: dm-devel@redhat.com Received: from redhat.com (octiron.msp.redhat.com [10.15.80.209]) by smtp.corp.redhat.com (Postfix) with SMTP id 323FC5D6A9; Wed, 8 Nov 2017 00:15:38 +0000 (UTC) Received: by redhat.com (sSMTP sendmail emulation); Tue, 07 Nov 2017 18:15:38 -0600 From: "Benjamin Marzinski" To: device-mapper development Date: Tue, 7 Nov 2017 18:15:13 -0600 Message-Id: <1510100116-6206-4-git-send-email-bmarzins@redhat.com> In-Reply-To: <1510100116-6206-1-git-send-email-bmarzins@redhat.com> References: <1510100116-6206-1-git-send-email-bmarzins@redhat.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 X-loop: dm-devel@redhat.com Cc: Martin Wilck Subject: [dm-devel] [PATCH 3/6] multipath: there is no "none" path state X-BeenThere: dm-devel@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: device-mapper development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: dm-devel-bounces@redhat.com Errors-To: dm-devel-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.25]); Wed, 08 Nov 2017 00:15:54 +0000 (UTC) X-Virus-Scanned: ClamAV using ClamSMTP There is a "none" path checker, but not a "none" path state. Signed-off-by: Benjamin Marzinski --- libmultipath/checkers.c | 1 - 1 file changed, 1 deletion(-) diff --git a/libmultipath/checkers.c b/libmultipath/checkers.c index cd6d6a3..94d8486 100644 --- a/libmultipath/checkers.c +++ b/libmultipath/checkers.c @@ -19,7 +19,6 @@ char *checker_state_names[] = { "timeout", "removed", "delayed", - "none", }; static LIST_HEAD(checkers);