]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/spdk/dpdk/lib/librte_power/channel_commands.h
import 15.2.0 Octopus source
[ceph.git] / ceph / src / spdk / dpdk / lib / librte_power / channel_commands.h
index ee638eefa25395d15a0ac09a49fe82fcf1d7063f..eca8ff70ce77b8cf0061a5774346b45c70cd7999 100644 (file)
@@ -12,13 +12,11 @@ extern "C" {
 #include <stdint.h>
 #include <stdbool.h>
 
-/* Maximum number of channels per VM */
-#define CHANNEL_CMDS_MAX_VM_CHANNELS 64
-
 /* Valid Commands */
 #define CPU_POWER               1
 #define CPU_POWER_CONNECT       2
 #define PKT_POLICY              3
+#define PKT_POLICY_REMOVE       4
 
 /* CPU Power Command Scaling */
 #define CPU_POWER_SCALE_UP      1
@@ -58,6 +56,9 @@ struct traffic {
        uint32_t max_max_packet_thresh;
 };
 
+#define CORE_TYPE_VIRTUAL 0
+#define CORE_TYPE_PHYSICAL 1
+
 struct channel_packet {
        uint64_t resource_id; /**< core_num, device */
        uint32_t unit;        /**< scale down/up/min/max */
@@ -70,6 +71,7 @@ struct channel_packet {
        uint8_t vcpu_to_control[MAX_VCPU_PER_VM];
        uint8_t num_vcpu;
        struct timer_profile timer_policy;
+       bool core_type;
        enum workload workload;
        enum policy_to_use policy_to_use;
        struct t_boost_status t_boost_status;