From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Hunt Subject: [PATCH] power: fix power example app response time Date: Mon, 23 Oct 2017 16:21:12 +0100 Message-ID: <1508772072-110814-1-git-send-email-david.hunt@intel.com> Cc: David Hunt To: dev@dpdk.org Return-path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 33B201B654 for ; Mon, 23 Oct 2017 17:21:26 +0200 (CEST) List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" A delay in the loop waiting for the virtio-serial commands in the vm_power_manager app was causing a lag in the response time. This was set to 1 second, and has now been changed to 1ms. Fixes: f14791a8126e ("examples/vm_power_mgr: add policy to channels") Signed-off-by: David Hunt --- examples/vm_power_manager/channel_monitor.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/vm_power_manager/channel_monitor.c b/examples/vm_power_manager/channel_monitor.c index f8e3491..37e71ed 100644 --- a/examples/vm_power_manager/channel_monitor.c +++ b/examples/vm_power_manager/channel_monitor.c @@ -64,7 +64,7 @@ uint64_t vsi_pkt_count_prev[384]; uint64_t rdtsc_prev[384]; -double time_period_s = 1; +double time_period_ms = 1; static volatile unsigned run_loop = 1; static int global_event_fd; static unsigned int policy_is_set; @@ -542,7 +542,7 @@ run_channel_monitor(void) process_request(&pkt, chan_info); } } - rte_delay_us(time_period_s*1000000); + rte_delay_us(time_period_ms*1000); if (policy_is_set) { int j; -- 2.7.4