From: David Hunt Date: Fri, 13 Oct 2017 12:31:42 +0000 (+0100) Subject: examples/vm_power_manager: fix build X-Git-Tag: spdx-start~1324 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=7abd801fbbd9b0e80c94c84d386f6ac12120923b;p=dpdk.git examples/vm_power_manager: fix build Remove variable declaration from within for loop. Fixes: f14791a8126e ("examples/vm_power_mgr: add policy to channels") Signed-off-by: David Hunt --- diff --git a/examples/vm_power_manager/channel_monitor.c b/examples/vm_power_manager/channel_monitor.c index f16358d3ee..f8e34914c2 100644 --- a/examples/vm_power_manager/channel_monitor.c +++ b/examples/vm_power_manager/channel_monitor.c @@ -169,8 +169,9 @@ update_policy(struct channel_packet *pkt) { unsigned int updated = 0; + int i; - for (int i = 0; i < MAX_VMS; i++) { + for (i = 0; i < MAX_VMS; i++) { if (strcmp(policies[i].pkt.vm_name, pkt->vm_name) == 0) { policies[i].pkt = *pkt; get_pcpu_to_control(&policies[i]); @@ -184,7 +185,7 @@ update_policy(struct channel_packet *pkt) } } if (!updated) { - for (int i = 0; i < MAX_VMS; i++) { + for (i = 0; i < MAX_VMS; i++) { if (policies[i].enabled == 0) { policies[i].pkt = *pkt; get_pcpu_to_control(&policies[i]); @@ -543,7 +544,9 @@ run_channel_monitor(void) } rte_delay_us(time_period_s*1000000); if (policy_is_set) { - for (int j = 0; j < MAX_VMS; j++) { + int j; + + for (j = 0; j < MAX_VMS; j++) { if (policies[j].enabled == 1) apply_policy(&policies[j]); }