From patchwork Fri Mar 1 15:46:51 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luca Boccassi X-Patchwork-Id: 50723 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 3C4662C0C; Fri, 1 Mar 2019 16:47:01 +0100 (CET) Received: from mail-wr1-f65.google.com (mail-wr1-f65.google.com [209.85.221.65]) by dpdk.org (Postfix) with ESMTP id 3C97D2BF4 for ; Fri, 1 Mar 2019 16:46:59 +0100 (CET) Received: by mail-wr1-f65.google.com with SMTP id w2so26352946wrt.11 for ; Fri, 01 Mar 2019 07:46:59 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=9EmC59cSVBjWyZI/Uk2I0EoTW9Y82XTvCetTrIUHMyE=; b=PRmhmGWt66AtcJYaYrUEr4lh/BmexkSA41/wx1+csBzjfstJlMjm+4cqpmOcJ51wzH rLbif84UcTmGIH5EdTf8oGpjwvt2r/QATZ75MsWh9n67BbTp8kLxGFv85ihBVip2nCNh tXV82mEhR/Fk8Yn8JxQL4MrqJ5Hi6N/dP4WaAmzFeK/AvC5BhLATEwYJcleztjqnMoqA Rh3w/yS4GpIUgL73jHDedpLqt/4HxWI/VKgXdK9toPQYjDAFD12R21BF28kVqiFFXmRP 5Ywqf/EJRAsQNRP/BLPaOfKk5O5LJCwWygWw+PBT2y3V+5qLT4r9H7UzbUtA8BaHMgNQ BQCw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=9EmC59cSVBjWyZI/Uk2I0EoTW9Y82XTvCetTrIUHMyE=; b=Q9m2+S2LnZbBjH01FxxqCT6HT5sF9WGMR1j66iDTcX8JrLK2NoHwjRI+G2itMwOeeM 9l1RmX2bCFd81cJ4fh290NHh9mBiOiVjO3PHMG6hVMm0Z6RukD0jn2FxeowT4OTGnTmy MON5frlXg7YXth6tfV7dCYgu2ZFkVT6zT579W7en92N6B+/o6371S+YXI/31c/baxqEH eb1bTlV7yfXMtkhC6JJvzCuaGf7d3uxywIFX5ODlSFCtV5Hzza4RqSZoOgsSxoetysYU gvM3dhbTHgicDSqTc5i1H/yof/ohe3BGRwXfr+pgVUYi4H4dfWqNVVSBcOAd5kNvUPeq HBAg== X-Gm-Message-State: APjAAAVAbfukVXeIRFbofL+qCkw1xipnCPprs6zbuR6ksWxXFIh4QQU7 SjQKiscDJC+1PII28ruKQEZ7fS6N7Ds= X-Google-Smtp-Source: APXvYqxyPhHzcVeJj6upZEQiEZqN2ie/X35O3Y2QO/ilAVwZhNg2IXcZ8jbOCESNMfok8I4V0UIlPA== X-Received: by 2002:adf:e3cb:: with SMTP id k11mr4022986wrm.263.1551455218339; Fri, 01 Mar 2019 07:46:58 -0800 (PST) Received: from localhost ([2a01:4b00:f419:6f00:b00c:66c8:99df:336]) by smtp.gmail.com with ESMTPSA id 65sm27677464wrb.62.2019.03.01.07.46.57 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Fri, 01 Mar 2019 07:46:57 -0800 (PST) From: luca.boccassi@gmail.com To: dev@dpdk.org Cc: bruce.richardson@intel.com Date: Fri, 1 Mar 2019 15:46:51 +0000 Message-Id: <20190301154651.16742-1-luca.boccassi@gmail.com> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH] build: use integer for new max_ethports option too 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" From: Luca Boccassi max_ethports was merged after the other patch was written: e04ea7fcf03c ("build: use integers for numerical options") So convert this one too like the others have already been. Signed-off-by: Luca Boccassi --- meson_options.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson_options.txt b/meson_options.txt index dc7346fe0..16d9f92c6 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -20,7 +20,7 @@ option('lib_musdk_dir', type: 'string', value: '', description: 'path to the MUSDK library installation directory') option('machine', type: 'string', value: 'native', description: 'set the target machine type') -option('max_ethports', type: 'string', value: '32', +option('max_ethports', type: 'integer', value: 32, description: 'maximum number of Ethernet devices') option('max_lcores', type: 'integer', value: 128, description: 'maximum number of cores/threads supported by EAL')