examples/vm_power_manager: fix response time
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: f14791a812
("examples/vm_power_mgr: add policy to channels")
Signed-off-by: David Hunt <david.hunt@intel.com>
This commit is contained in:
parent
f73b38e924
commit
e4f66da347
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user