On 3/5/2024 8:10 AM, Jiawen Wu wrote: <...>
>>> +++ b/drivers/net/txgbe/txgbe_rxtx_vec_neon.c >>> @@ -0,0 +1,604 @@ >>> +/* SPDX-License-Identifier: BSD-3-Clause >>> + * Copyright(c) 2015-2024 Beijing WangXun Technology Co., Ltd. >>> + * Copyright(c) 2010-2015 Intel Corporation >>> + */ >>> + >>> +#include <ethdev_driver.h> >>> +#include <rte_malloc.h> >>> +#include <rte_vect.h> >>> + >>> +#include "txgbe_ethdev.h" >>> +#include "txgbe_rxtx.h" >>> +#include "txgbe_rxtx_vec_common.h" >>> + >>> +#pragma GCC diagnostic ignored "-Wcast-qual" >>> + >> >> Is this pragma really required? > > Yes. Otherwise, there are warnings in the compilation: > > [1909/2921] Compiling C object > drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_rxtx_vec_neon.c.o > ../drivers/net/txgbe/txgbe_rxtx_vec_neon.c: In function ‘txgbe_rxq_rearm’: > ../drivers/net/txgbe/txgbe_rxtx_vec_neon.c:37:15: warning: cast discards > ‘volatile’ qualifier from pointer target type [-Wcast-qual] > vst1q_u64((uint64_t *)&rxdp[i], zero); > ^ > ../drivers/net/txgbe/txgbe_rxtx_vec_neon.c:60:13: warning: cast discards > ‘volatile’ qualifier from pointer target type [-Wcast-qual] > vst1q_u64((uint64_t *)rxdp++, dma_addr0); > ^ > ../drivers/net/txgbe/txgbe_rxtx_vec_neon.c:65:13: warning: cast discards > ‘volatile’ qualifier from pointer target type [-Wcast-qual] > vst1q_u64((uint64_t *)rxdp++, dma_addr1); > Hi Honnappa, There are multiple drivers ignores "-Wcast-qual" for neon implementation. Is there a better, more proper way to address this warning? Thanks, ferruh