Skip to content

Commit

Permalink
power: clean up includes
Browse files Browse the repository at this point in the history
[ upstream commit 825fddf ]

re-organise the including of the new public header file and
remove un-needed includes

Fixes: 210c383 ("power: packet format for vm power management")
Fixes: cd0d554 ("power: vm communication channels in guest")

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
Signed-off-by: David Hunt <david.hunt@intel.com>
Acked-by: Anatoly Burakov <anatoly.burakov@intel.com>
  • Loading branch information
bruce-richardson authored and bluca committed Feb 4, 2021
1 parent d28bfe9 commit 0832b52
Show file tree
Hide file tree
Showing 11 changed files with 5 additions and 14 deletions.
1 change: 0 additions & 1 deletion examples/vm_power_manager/channel_manager.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
#include <libvirt/libvirt.h>

#include "channel_manager.h"
#include "rte_power_guest_channel.h"
#include "channel_monitor.h"
#include "power_manager.h"

Expand Down
1 change: 0 additions & 1 deletion examples/vm_power_manager/channel_monitor.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@

#include <libvirt/libvirt.h>
#include "channel_monitor.h"
#include "rte_power_guest_channel.h"
#include "channel_manager.h"
#include "power_manager.h"
#include "oob_monitor.h"
Expand Down
3 changes: 2 additions & 1 deletion examples/vm_power_manager/channel_monitor.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
#ifndef CHANNEL_MONITOR_H_
#define CHANNEL_MONITOR_H_

#include <rte_power.h>

#include "channel_manager.h"
#include "rte_power_guest_channel.h"

struct core_share {
unsigned int pcpu;
Expand Down
1 change: 0 additions & 1 deletion examples/vm_power_manager/guest_cli/vm_power_cli_guest.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
#include <rte_ethdev.h>

#include <rte_power.h>
#include <guest_channel.h>

#include "vm_power_cli_guest.h"

Expand Down
2 changes: 0 additions & 2 deletions examples/vm_power_manager/guest_cli/vm_power_cli_guest.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@
extern "C" {
#endif

#include "rte_power_guest_channel.h"

struct rte_power_channel_packet *get_policy(void);

int set_policy_mac(int port, int idx);
Expand Down
1 change: 0 additions & 1 deletion examples/vm_power_manager/vm_power_cli.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
#include "channel_manager.h"
#include "channel_monitor.h"
#include "power_manager.h"
#include "rte_power_guest_channel.h"

struct cmd_quit_result {
cmdline_fixed_string_t quit;
Expand Down
2 changes: 1 addition & 1 deletion lib/librte_power/guest_channel.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@


#include <rte_log.h>
#include <rte_power.h>

#include "guest_channel.h"
#include "rte_power_guest_channel.h"

#define RTE_LOGTYPE_GUEST_CHANNEL RTE_LOGTYPE_USER1

Expand Down
2 changes: 0 additions & 2 deletions lib/librte_power/guest_channel.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@
extern "C" {
#endif

#include <rte_power_guest_channel.h>

/**
* Check if any Virtio-Serial VM end-points exist in path.
*
Expand Down
2 changes: 1 addition & 1 deletion lib/librte_power/power_kvm_vm.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

#include <rte_log.h>

#include "guest_channel.h"
#include "rte_power_guest_channel.h"
#include "guest_channel.h"
#include "power_kvm_vm.h"
#include "power_common.h"

Expand Down
1 change: 1 addition & 0 deletions lib/librte_power/rte_power.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
#include <rte_byteorder.h>
#include <rte_log.h>
#include <rte_string_fns.h>
#include <rte_power_guest_channel.h>

#ifdef __cplusplus
extern "C" {
Expand Down
3 changes: 0 additions & 3 deletions lib/librte_power/rte_power_guest_channel.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@
extern "C" {
#endif

#include <stdint.h>
#include <stdbool.h>

#define RTE_POWER_MAX_VFS 10
#define RTE_POWER_VM_MAX_NAME_SZ 32
#define RTE_POWER_MAX_VCPU_PER_VM 8
Expand Down

0 comments on commit 0832b52

Please sign in to comment.