diff options
-rw-r--r-- | src/vpp-api/client/stat_client.c | 8 | ||||
-rw-r--r-- | src/vpp-api/client/stat_client.h | 20 | ||||
-rw-r--r-- | src/vpp/stats/stat_segment.c | 2 | ||||
-rw-r--r-- | src/vpp/stats/stat_segment.h | 13 |
4 files changed, 23 insertions, 20 deletions
diff --git a/src/vpp-api/client/stat_client.c b/src/vpp-api/client/stat_client.c index 98c275727f0..538820ad338 100644 --- a/src/vpp-api/client/stat_client.c +++ b/src/vpp-api/client/stat_client.c @@ -30,7 +30,15 @@ #include <vppinfra/lock.h> #include "stat_client.h" #include <stdatomic.h> +#include <vpp/stats/stat_segment.h> +struct stat_client_main_t +{ + uint64_t current_epoch; + stat_segment_shared_header_t *shared_header; + stat_segment_directory_entry_t *directory_vector; + ssize_t memory_size; +}; stat_client_main_t stat_client_main; diff --git a/src/vpp-api/client/stat_client.h b/src/vpp-api/client/stat_client.h index aeca63419ee..31fd82b41e2 100644 --- a/src/vpp-api/client/stat_client.h +++ b/src/vpp-api/client/stat_client.h @@ -18,16 +18,22 @@ #define included_stat_client_h #include <stdint.h> -#include <vpp/stats/stat_segment.h> +#include <unistd.h> #include <vlib/counter_types.h> -typedef struct +typedef enum { - uint64_t current_epoch; - stat_segment_shared_header_t *shared_header; - stat_segment_directory_entry_t *directory_vector; - ssize_t memory_size; -} stat_client_main_t; + STAT_DIR_TYPE_ILLEGAL = 0, + STAT_DIR_TYPE_SCALAR_INDEX, + STAT_DIR_TYPE_COUNTER_VECTOR_SIMPLE, + STAT_DIR_TYPE_COUNTER_VECTOR_COMBINED, + STAT_DIR_TYPE_ERROR_INDEX, +} stat_directory_type_t; + +/* Default socket to exchange segment fd */ +#define STAT_SEGMENT_SOCKET_FILE "/run/vpp/stats.sock" + +typedef struct stat_client_main_t stat_client_main_t; typedef struct { diff --git a/src/vpp/stats/stat_segment.c b/src/vpp/stats/stat_segment.c index 3c5d4ebf2f4..9b6b37b934f 100644 --- a/src/vpp/stats/stat_segment.c +++ b/src/vpp/stats/stat_segment.c @@ -21,7 +21,7 @@ #include <vnet/devices/devices.h> /* vnet_get_aggregate_rx_packets */ #undef HAVE_MEMFD_CREATE #include <vppinfra/linux/syscall.h> - +#include <vpp-api/client/stat_client.h> stat_segment_main_t stat_segment_main; /* diff --git a/src/vpp/stats/stat_segment.h b/src/vpp/stats/stat_segment.h index 21c7c3b0d48..3ce82809255 100644 --- a/src/vpp/stats/stat_segment.h +++ b/src/vpp/stats/stat_segment.h @@ -19,18 +19,7 @@ #include <stdatomic.h> #include <vlib/vlib.h> #include <vppinfra/socket.h> - -/* Default socket to exchange segment fd */ -#define STAT_SEGMENT_SOCKET_FILE "/run/vpp/stats.sock" - -typedef enum -{ - STAT_DIR_TYPE_ILLEGAL = 0, - STAT_DIR_TYPE_SCALAR_INDEX, - STAT_DIR_TYPE_COUNTER_VECTOR_SIMPLE, - STAT_DIR_TYPE_COUNTER_VECTOR_COMBINED, - STAT_DIR_TYPE_ERROR_INDEX, -} stat_directory_type_t; +#include <vpp-api/client/stat_client.h> typedef enum { |