From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f41.google.com (mail-wm0-f41.google.com [74.125.82.41]) by dpdk.org (Postfix) with ESMTP id 43DD65911 for ; Tue, 25 Apr 2017 11:07:39 +0200 (CEST) Received: by mail-wm0-f41.google.com with SMTP id m123so89734432wma.0 for ; Tue, 25 Apr 2017 02:07:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=date:from:to:cc:subject:message-id:references:mime-version :content-disposition:content-transfer-encoding:in-reply-to :user-agent; bh=498FB/DFPYBkhYH2CkSYMuPFCRIhAe0pWKxpxoRnZuo=; b=ehgfL6/mJ3HgpbGHYGjXKFfCe7fybwK++e3KjA4sVp4ohrnT3lISdo6pnK7GZTZA8d VU8fhWmfzZpnB1JSMM0nzEDegZb2ChsABJvOs8PpNqlR9xhdksK+5fu8H+g6d7B7XfC4 /zM/gRfLFVEA9K8dU4yeYPhgCEC+fQUv85y2Eljzz5ndih9Dp3cHrvuAF0YNzhYDkn8+ EUnc30Coo82owBrT6UOTAYjSPV8EMmCAlwy1qDVRk8kwSAcBU//wVWHfyf6grDppcOh0 7R1/UIG7w0yyaF2pxlpKz1vLH74+NfgvGG7F7OPWFDpBH9FSeAx10GjX+BIwrvQexek2 tjdw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:content-transfer-encoding :in-reply-to:user-agent; bh=498FB/DFPYBkhYH2CkSYMuPFCRIhAe0pWKxpxoRnZuo=; b=UPS0lLtxitBXdSIoWqPJNWwLwPC0cNAQ60+mGMiBV7hjmprQjcPsVl1RGetMHmabfR elIoIHYrCz2XLSmPJHyPqK3307ZyMCEVBgEF9Kr07Okmt/thhcB2E8CVIcqG8oHfuZAB NSVCQOPHxOFviwnkd8+WaosqBJu0LkiAwgyc7fuehEyzmDOdo8+QU9zZTx2YYHNVURUQ CbCJI4+B9MIfA/ZL6ITUcDAckmQY4N2fGbZTLNran8AhecyW0tRtPVoStUSKSxaiX0CL NTNRav/KgHR1Nt/cV0j+0gVcwhdg43GlRD1Xb7UNvFezFGLgZdkT4LrBWp8AY+P7K+rU VQ7g== X-Gm-Message-State: AN3rC/54F0Tk3WuCMpBNsIXGNsOUw0jClynjegQDEcslsDtZWCku5KuO sg4YWiVFdedJZCofv2Y= X-Received: by 10.28.208.74 with SMTP id h71mr11736463wmg.36.1493111259782; Tue, 25 Apr 2017 02:07:39 -0700 (PDT) Received: from bidouze.vm.6wind.com (host.78.145.23.62.rev.coltfrance.com. [62.23.145.78]) by smtp.gmail.com with ESMTPSA id k199sm3285576wmd.20.2017.04.25.02.07.38 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 25 Apr 2017 02:07:38 -0700 (PDT) Date: Tue, 25 Apr 2017 11:07:32 +0200 From: =?iso-8859-1?Q?Ga=EBtan?= Rivet To: Ferruh Yigit Cc: Jingjing Wu , dev@dpdk.org, Thomas Monjalon Message-ID: <20170425090732.GT14914@bidouze.vm.6wind.com> References: <83bfe3fd6dc1f7696049bf8d8d1ef20370c92242.1492517222.git.gaetan.rivet@6wind.com> <778a3af3-0e37-9af5-8fcf-0a8db68f67a9@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1; format=flowed Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <778a3af3-0e37-9af5-8fcf-0a8db68f67a9@intel.com> User-Agent: Mutt/1.5.23 (2014-03-12) Subject: Re: [dpdk-dev] [PATCH v2 4/5] app/testpmd: request link status interrupt 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: , X-List-Received-Date: Tue, 25 Apr 2017 09:07:40 -0000 On Fri, Apr 21, 2017 at 03:55:43PM +0100, Ferruh Yigit wrote: >On 4/18/2017 1:17 PM, Gaetan Rivet wrote: >> For drivers supporting the LSC event, enable it. >> This allows to test LSC event support. >> >> Add the --no-lsc-interrupt parameter to explicitly disable the link status >> change interrupt. >> >> Signed-off-by: Gaetan Rivet >> --- >> app/test-pmd/parameters.c | 4 ++++ >> app/test-pmd/testpmd.c | 13 +++++++++++++ >> app/test-pmd/testpmd.h | 1 + >> 3 files changed, 18 insertions(+) > >Hi Gaetan, > >This patch adds new option to testpmd, can you please update testpmd >documentation to document new option? > >Same is valid for next patch (no-rmv-interrupt option) > Sure, I will send a patch for this. Should I send a new version of my previous series or a single patch fixing the documentation for both options as a standalone? >Thanks, >ferruh > -- Gaëtan Rivet 6WIND