examples/vm_power_manager: fix build
authorFerruh Yigit <ferruh.yigit@intel.com>
Fri, 17 Apr 2020 18:55:34 +0000 (19:55 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Fri, 17 Apr 2020 21:22:15 +0000 (23:22 +0200)
commitd3c9274f76826d4e88eb178f1f353b983c2c11e6
tree94765297554219d620caf2248b9456c5e946cbaa
parent97ad1fd90d1ab95164786216eda2d7651cf5a46a
examples/vm_power_manager: fix build

Build fails because '__rte_unused' macro not defined in file, error
produced by 'i686-native-linux-gcc config' but it seems generic issue.

Build error:
.../examples/vm_power_manager/oob_monitor_nop.c:11:13:
   error: expected ‘;’ before ‘static’
   11 | __rte_unused static float
      |             ^~~~~~~
      |             ;
.../examples/vm_power_manager/oob_monitor_nop.c:12:14:
   error: unknown type name ‘__rte_unused’
   12 | apply_policy(__rte_unused int core)
      |              ^~~~~~~~~~~~
.../examples/vm_power_manager/oob_monitor_nop.c:18:21:
   error: unknown type name ‘__rte_unused’
   18 | add_core_to_monitor(__rte_unused int core)
      |                     ^~~~~~~~~~~~
.../examples/vm_power_manager/oob_monitor_nop.c:24:26:
   error: unknown type name ‘__rte_unused’
   24 | remove_core_from_monitor(__rte_unused int core)
      |                          ^~~~~~~~~~~~

Including 'rte_common.h' header which defines the macro for fix.

Fixes: f2fc83b40f06 ("replace unused attributes")

Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
examples/vm_power_manager/oob_monitor_nop.c