remove extension keyword for flex arrays
Checks
Commit Message
Flex arrays are part of the C99 standard.
No need to mark them with __extension__.
Signed-off-by: David Marchand <david.marchand@redhat.com>
---
I noticed this while reviewing Tyler series on some libraries.
Let's see if the compilers in the CI agrees with the patch.
---
drivers/crypto/ipsec_mb/ipsec_mb_private.h | 2 +-
lib/cryptodev/rte_cryptodev.h | 2 +-
lib/ip_frag/ip_reassembly.h | 2 +-
lib/ipsec/ipsec_sad.c | 2 +-
lib/ipsec/sa.h | 2 +-
lib/rib/rte_rib.c | 2 +-
lib/rib/rte_rib6.c | 2 +-
7 files changed, 7 insertions(+), 7 deletions(-)
Comments
> From: David Marchand [mailto:david.marchand@redhat.com]
> Sent: Wednesday, 12 June 2024 09.13
>
> Flex arrays are part of the C99 standard.
> No need to mark them with __extension__.
>
> Signed-off-by: David Marchand <david.marchand@redhat.com>
> ---
Thank you for cleaning this up.
Acked-by: Morten Brørup <mb@smartsharesystems.com>
On Wed, Jun 12, 2024 at 9:43 AM Morten Brørup <mb@smartsharesystems.com> wrote:
> >
> > Flex arrays are part of the C99 standard.
> > No need to mark them with __extension__.
> >
> > Signed-off-by: David Marchand <david.marchand@redhat.com>
> Acked-by: Morten Brørup <mb@smartsharesystems.com>
CI is happy, and so am I.
Applied, thanks.
@@ -125,7 +125,7 @@ struct ipsec_mb_dev_private {
/**< PMD type */
uint32_t max_nb_queue_pairs;
/**< Max number of queue pairs supported by device */
- __extension__ uint8_t priv[];
+ uint8_t priv[];
};
/** IPSEC Multi buffer queue pair common queue pair data for all PMDs */
@@ -1525,7 +1525,7 @@ struct rte_crypto_raw_dp_ctx {
cryptodev_sym_raw_operation_done_t dequeue_done;
/* Driver specific context data */
- __extension__ uint8_t drv_ctx_data[];
+ uint8_t drv_ctx_data[];
};
/**
@@ -82,7 +82,7 @@ struct rte_ip_frag_tbl {
struct ip_frag_pkt *last; /* last used entry. */
struct ip_pkt_list lru; /* LRU list for table entries. */
struct ip_frag_tbl_stat stat; /* statistics counters. */
- __extension__ struct ip_frag_pkt pkt[]; /* hash table. */
+ struct ip_frag_pkt pkt[]; /* hash table. */
};
#endif /* _IP_REASSEMBLY_H_ */
@@ -42,7 +42,7 @@ struct rte_ipsec_sad {
* (spi_dip or spi_dip_sip). Used only in add/delete
* as a helper struct.
*/
- __extension__ struct hash_cnt cnt_arr[];
+ struct hash_cnt cnt_arr[];
};
TAILQ_HEAD(rte_ipsec_sad_list, rte_tailq_entry);
@@ -59,7 +59,7 @@ union sym_op_data {
struct replay_sqn {
rte_rwlock_t rwl;
uint64_t sqn;
- __extension__ uint64_t window[];
+ uint64_t window[];
};
/*IPSEC SA supported algorithms */
@@ -40,7 +40,7 @@ struct rte_rib_node {
uint8_t depth;
uint8_t flag;
uint64_t nh;
- __extension__ uint64_t ext[];
+ uint64_t ext[];
};
struct rte_rib {
@@ -38,7 +38,7 @@ struct rte_rib6_node {
uint8_t ip[RTE_RIB6_IPV6_ADDR_SIZE];
uint8_t depth;
uint8_t flag;
- __extension__ uint64_t ext[];
+ uint64_t ext[];
};
struct rte_rib6 {