From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Hunt, David" Subject: Re: [PATCH v3] power: fix to remove unused variable Date: Fri, 15 Feb 2019 11:41:06 +0000 Message-ID: <95365c42-195d-d3c4-b1e6-e137b16fa536@intel.com> References: <1550226524-26278-1-git-send-email-pallantlax.poornima@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Cc: reshma.pattan@intel.com, aconole@redhat.com, ramirose@gmail.com, stable@dpdk.org To: Pallantla Poornima , dev@dpdk.org Return-path: In-Reply-To: <1550226524-26278-1-git-send-email-pallantlax.poornima@intel.com> Content-Language: en-US List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 15/2/2019 10:28 AM, Pallantla Poornima wrote: > Variable pfi_str is removed since it is unused. > > Fixes: 450f0791312c ("power: add traffic pattern aware power control") > Cc: stable@dpdk.org > > Signed-off-by: Pallantla Poornima > Reviewed-by: Rami Rosen > --- > v3: Updated fixes line. > v2: Removed unused variable as suggested. > --- > lib/librte_power/rte_power_empty_poll.c | 3 --- > 1 file changed, 3 deletions(-) > > diff --git a/lib/librte_power/rte_power_empty_poll.c b/lib/librte_power/rte_power_empty_poll.c > index e6145462f..15d4f0509 100644 > --- a/lib/librte_power/rte_power_empty_poll.c > +++ b/lib/librte_power/rte_power_empty_poll.c > @@ -156,11 +156,8 @@ update_training_stats(struct priority_worker *poll_stats, > { > RTE_SET_USED(specific_freq); > > - char pfi_str[32]; > uint64_t p0_empty_deq; > > - sprintf(pfi_str, "%02d", freq); > - > if (poll_stats->cur_freq == freq && > poll_stats->thresh[freq].trained == false) { > if (poll_stats->thresh[freq].cur_train_iter == 0) { Acked-by: David Hunt