Style fix to establish namespace for Rx queue flag defines. Signed-off-by: Andrew Rybchenko <arybche...@solarflare.com> --- drivers/net/sfc/sfc_rx.c | 4 ++-- drivers/net/sfc/sfc_rx.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/net/sfc/sfc_rx.c b/drivers/net/sfc/sfc_rx.c index 214e640..d6ba4e9 100644 --- a/drivers/net/sfc/sfc_rx.c +++ b/drivers/net/sfc/sfc_rx.c @@ -194,7 +194,7 @@ sfc_rx_set_rss_hash(struct sfc_rxq *rxq, unsigned int flags, struct rte_mbuf *m) uint8_t *mbuf_data; - if ((rxq->flags & SFC_RXQ_RSS_HASH) == 0) + if ((rxq->flags & SFC_RXQ_FLAG_RSS_HASH) == 0) return; mbuf_data = rte_pktmbuf_mtod(m, uint8_t *); @@ -765,7 +765,7 @@ sfc_rx_qinit(struct sfc_adapter *sa, unsigned int sw_index, #if EFSYS_OPT_RX_SCALE if (sa->hash_support == EFX_RX_HASH_AVAILABLE) - rxq->flags |= SFC_RXQ_RSS_HASH; + rxq->flags |= SFC_RXQ_FLAG_RSS_HASH; #endif rxq->state = SFC_RXQ_INITIALIZED; diff --git a/drivers/net/sfc/sfc_rx.h b/drivers/net/sfc/sfc_rx.h index de4ac12..4e1b4c6 100644 --- a/drivers/net/sfc/sfc_rx.h +++ b/drivers/net/sfc/sfc_rx.h @@ -87,7 +87,7 @@ struct sfc_rxq { uint16_t prefix_size; #if EFSYS_OPT_RX_SCALE unsigned int flags; -#define SFC_RXQ_RSS_HASH 0x1 +#define SFC_RXQ_FLAG_RSS_HASH 0x1 #endif /* Used on refill */ -- 2.9.3