From patchwork Tue Nov 19 12:59:23 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Marchand X-Patchwork-Id: 63114 X-Patchwork-Delegate: david.marchand@redhat.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 06248A04B4; Tue, 19 Nov 2019 13:59:45 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 9C4632AB; Tue, 19 Nov 2019 13:59:44 +0100 (CET) Received: from us-smtp-1.mimecast.com (us-smtp-delivery-1.mimecast.com [207.211.31.120]) by dpdk.org (Postfix) with ESMTP id 1FE6A1F5 for ; Tue, 19 Nov 2019 13:59:43 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1574168382; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=+zZAbB+KJkh3EzVzMnRxrlcqP9fQuXMvcnl4cV5VO/4=; b=abINk2wzzSIDTn8AiH+C1FTTki6ourmpyqndKJJpZOoBCAGaijOg1WZkuK58rm6mh60NAj uorHjRq5n4HhSwiDMCxMh5xjcZ11L7fFVZ9WyZfq4dXNDbzniKgNRxwhRc+NfbgdHa3pXR n+c8QA04ta3NiUjWgYe6fR1Kl940otI= 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-239-JhHyFwrwN72w9uFqFjx3hg-1; Tue, 19 Nov 2019 07:59:40 -0500 Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id C387BA0E8C; Tue, 19 Nov 2019 12:59:39 +0000 (UTC) Received: from dmarchan.remote.csb (ovpn-204-42.brq.redhat.com [10.40.204.42]) by smtp.corp.redhat.com (Postfix) with ESMTP id 4A1CC1001B05; Tue, 19 Nov 2019 12:59:38 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: stable@dpdk.org, Bruce Richardson Date: Tue, 19 Nov 2019 13:59:23 +0100 Message-Id: <20191119125923.10545-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.84 on 10.5.11.22 X-MC-Unique: JhHyFwrwN72w9uFqFjx3hg-1 X-Mimecast-Spam-Score: 0 Subject: [dpdk-dev] [PATCH] build: remove unneeded meson option X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" The meson option has been missed when removing this code. Fixes: 8e35792c5325 ("eal: remove dead code on NUMA node detection") Cc: stable@dpdk.org Signed-off-by: David Marchand Acked-by: Bruce Richardson --- meson_options.txt | 2 -- 1 file changed, 2 deletions(-) diff --git a/meson_options.txt b/meson_options.txt index 89650b0e9c..e6fcb884be 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,7 +1,5 @@ # Please keep these options sorted alphabetically. -option('allow_invalid_socket_id', type: 'boolean', value: false, - description: 'allow out-of-range NUMA socket id\'s for platforms that don\'t report the value correctly') option('disable_drivers', type: 'string', value: '', description: 'Comma-separated list of drivers to explicitly disable.') option('drivers_install_subdir', type: 'string', value: 'dpdk/pmds-',