From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 58F6AA0546 for ; Fri, 14 Feb 2020 11:46:52 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 36E5B2BF1; Fri, 14 Feb 2020 11:46:52 +0100 (CET) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id E2FBEF72; Fri, 14 Feb 2020 11:46:48 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga105.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 14 Feb 2020 02:46:47 -0800 X-IronPort-AV: E=Sophos;i="5.70,440,1574150400"; d="scan'208,217";a="381408151" Received: from dhunt5-mobl5.ger.corp.intel.com (HELO [10.237.221.40]) ([10.237.221.40]) by orsmga004-auth.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-SHA; 14 Feb 2020 02:46:46 -0800 To: Xiao Wang Cc: dev@dpdk.org, stable@dpdk.org References: <20200121030657.39048-1-xiao.w.wang@intel.com> <20200121030657.39048-2-xiao.w.wang@intel.com> From: "Hunt, David" Message-ID: <06a28cd1-075e-aba5-e76d-2b58d4d8bebb@intel.com> Date: Fri, 14 Feb 2020 10:46:45 +0000 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:68.0) Gecko/20100101 Thunderbird/68.5.0 MIME-Version: 1.0 In-Reply-To: <20200121030657.39048-2-xiao.w.wang@intel.com> Content-Language: en-US Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: Re: [dpdk-stable] [PATCH 1/2] l3fwd-power: fix a typo X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" On 21/1/2020 3:06 AM, Xiao Wang wrote: > Fixes: aee3bc79cc34 ("examples/l3fwd-power: enable one-shot Rx interrupt and polling switch") > Cc: stable@dpdk.org > > Signed-off-by: Xiao Wang > --- > examples/l3fwd-power/main.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/examples/l3fwd-power/main.c b/examples/l3fwd-power/main.c > index d049d8a5d..ffcc7ecf4 100644 > --- a/examples/l3fwd-power/main.c > +++ b/examples/l3fwd-power/main.c > @@ -1338,7 +1338,7 @@ main_loop(__attribute__((unused)) void *dummy) > */ > rte_delay_us(lcore_idle_hint); > else { > - /* suspend until rx interrupt trigges */ > + /* suspend until rx interrupt triggers */ > if (intr_en) { > turn_on_intr(qconf); > sleep_until_rx_interrupt( Acked-by: David Hunt