ethdev: fix C11 extensions in exported TM header

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>
This commit is contained in:
Adrien Mazarguil 2017-08-04 13:56:21 +02:00 committed by Thomas Monjalon
parent 92ac1d5a13
commit 4f28b83c45

View 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 {