ethdev: fix C11 extensions in exported TM header
authorAdrien Mazarguil <adrien.mazarguil@6wind.com>
Fri, 4 Aug 2017 11:56:21 +0000 (13:56 +0200)
committerThomas Monjalon <thomas@monjalon.net>
Fri, 4 Aug 2017 23:18:21 +0000 (01:18 +0200)
Fix issues reported by check-includes.sh:

 rte_tm.h:473:2: error: anonymous unions are a C11 extension
     [-Werror,-Wc11-extensions]
 rte_tm.h:696:2: error: anonymous unions are a C11 extension
     [-Werror,-Wc11-extensions]
 rte_tm.h:904:2: error: anonymous unions are a C11 extension
     [-Werror,-Wc11-extensions]

Fixes: 5d109deffa87 ("ethdev: add traffic management API")

Signed-off-by: Adrien Mazarguil <adrien.mazarguil@6wind.com>
Acked-by: Cristian Dumitrescu <cristian.dumitrescu@intel.com>
lib/librte_ether/rte_tm.h

index a632b5c..ebbfa1e 100644 (file)
@@ -50,6 +50,8 @@
 
 #include <stdint.h>
 
+#include <rte_common.h>
+
 #ifdef __cplusplus
 extern "C" {
 #endif
@@ -470,6 +472,7 @@ struct rte_tm_level_capabilities {
         */
        int leaf_nodes_identical;
 
+       RTE_STD_C11
        union {
                /** Items valid only for the non-leaf nodes on this level. */
                struct {
@@ -693,6 +696,7 @@ struct rte_tm_node_capabilities {
         */
        uint32_t shaper_shared_n_max;
 
+       RTE_STD_C11
        union {
                /** Items valid only for non-leaf nodes. */
                struct {
@@ -901,6 +905,7 @@ struct rte_tm_node_params {
        /** Number of shared shaper IDs in the *shared_shaper_id* array. */
        uint32_t n_shared_shapers;
 
+       RTE_STD_C11
        union {
                /** Parameters only valid for non-leaf nodes. */
                struct {