From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id F194AA0560; Mon, 17 Oct 2022 17:12:08 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E27AB4021D; Mon, 17 Oct 2022 17:12:08 +0200 (CEST) Received: from mail-pj1-f52.google.com (mail-pj1-f52.google.com [209.85.216.52]) by mails.dpdk.org (Postfix) with ESMTP id 8003C40143 for ; Mon, 17 Oct 2022 17:12:08 +0200 (CEST) Received: by mail-pj1-f52.google.com with SMTP id h12so11290643pjk.0 for ; Mon, 17 Oct 2022 08:12:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20210112.gappssmtp.com; s=20210112; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:subject:cc:to:from:date:from:to:cc:subject:date :message-id:reply-to; bh=xwpZ9FuogKNpb09yKmo0ljtXdq0NNcIw6pGMUIw6Vtw=; b=ltegk2Bl7l/4cJLrHbQTdqT/5DkNxt3+P/lrUbGFej94iIs1SYAYwpHtQETVVEKCy/ fcnnYfVS6FtD1/bdz5NInP15mMFGzfWCTQkLfwpnV2DlL8AQAACPIIP84DyrUNHNE+H6 YS1Ujj9Y0M39EegltpdLniVQ182JRqWZ8x27uDwqunVabmWym6aLi+J5hn6KowfMt7hy 0vDVfX1tLLNHF7vmw2OyjNdUEHbCfxQxVJjnepHNxYEry0RMlQGn/WrbFo1dc+3x8a7E 4QaeHTTLYo4DpIYHkwkIVQZCtQIZzBqJQ+xaGSD7w0OMvS+SMSG8ySiFCUcm+36PbPA4 fVpA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:subject:cc:to:from:date:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=xwpZ9FuogKNpb09yKmo0ljtXdq0NNcIw6pGMUIw6Vtw=; b=G3xUvVnvG7302xxeuM+mgz8+XvwSq4azvkpo95uqocr/+c1nIoHN71pjIivYqa6WXi IfJB7Th/hgm7wG44iBeZvTpJZYM0CCqbXV1fMwN9OHa/Wa/zz78MO8yIh5mH/QOBgdkU SRM4/Nxa1bQw3J/o2v1XD5UV6i6rRHc2WbQlVCCN0oLNENRpm5BtZNh2yk2u7+TQczdu ihZwZibpq6TdwWcVs3PiHi+pi8cTtJb9oRZlvNKIeFOPkYAoQ9h1gByNdcuH09dSsHsa 94C3Dby+dCECe1xWbxwKmcSJNz89tH2Ju5pgkjIkCRSoo7FW88WKFuGC2loUguSpedOY +fhw== X-Gm-Message-State: ACrzQf2ECMFg7ViLEfk4IOUpypzlE6m9adjtUtPZTvSvcqa0uxjl5QeR KiREr0YdwSo8TYxoCSJDMgnRNQ== X-Google-Smtp-Source: AMsMyM4dYF5spyRAORBDIOqfC6U9232rNQjtyGwB6I1ZURNYctGjwvsTImeeiDu8Bmx/ufgTIKl7Xg== X-Received: by 2002:a17:90a:4588:b0:205:d605:8bcc with SMTP id v8-20020a17090a458800b00205d6058bccmr14294179pjg.205.1666019527579; Mon, 17 Oct 2022 08:12:07 -0700 (PDT) Received: from hermes.local (204-195-120-218.wavecable.com. [204.195.120.218]) by smtp.gmail.com with ESMTPSA id t25-20020aa79479000000b0056126b79072sm7230211pfq.21.2022.10.17.08.12.06 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 17 Oct 2022 08:12:07 -0700 (PDT) Date: Mon, 17 Oct 2022 08:12:04 -0700 From: Stephen Hemminger To: Arshdeep Kaur Cc: dev@dpdk.org Subject: Re: [PATCH v4] dumpcap: fix select interface Message-ID: <20221017081204.69012956@hermes.local> In-Reply-To: <20221017120752.154761-1-arshdeep.kaur@intel.com> References: <20221017115655.151909-1-arshdeep.kaur@intel.com> <20221017120752.154761-1-arshdeep.kaur@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org On Mon, 17 Oct 2022 05:07:52 -0700 Arshdeep Kaur wrote: > The change to do argument process before EAL init broke > the support of select-interface option. Fix by setting flag > and doing select-interface later. > > Fixes: a8dde09f97df ("app/dumpcap: allow help/version without primary process") > > Signed-off-by: Arshdeep Kaur Acked-by: Stephen Hemminger