From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Wiles, Keith" Subject: Re: fm10k_rxtx.c does not compile Date: Wed, 18 Feb 2015 17:29:02 +0000 Message-ID: References: <4252267.lcD9EdtIU9@xps13> Mime-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: quoted-printable Cc: "dev-VfR2kkLFssw@public.gmane.org" To: Thomas Monjalon Return-path: In-Reply-To: <4252267.lcD9EdtIU9@xps13> Content-Language: en-US Content-ID: List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces-VfR2kkLFssw@public.gmane.org Sender: "dev" I believe Jeff @ Intel is going to submit a patch soon. On 2/18/15, 11:18 AM, "Thomas Monjalon" wrote: >Hi Keith, > >2015-02-18 17:01, Wiles, Keith: >> I just pulled the code and found a unused function error =8Cdump_rxd()= =B9 >>=20 >> I had to add the ifdef around the function and remove the ifdef inside >>the function: >>=20 >> #ifdef RTE_LIBRTE_FM10K_DEBUG_RX >> static inline void dump_rxd(union fm10k_rx_desc *rxd) >> { >> RTE_SET_USED(rxd); >> PMD_RX_LOG(DEBUG, "+----------------|----------------+"); >> PMD_RX_LOG(DEBUG, "| GLORT | PKT HDR & TYPE |"); >> PMD_RX_LOG(DEBUG, "| 0x%08x | 0x%08x |", rxd->d.glort, >> rxd->d.data); >> PMD_RX_LOG(DEBUG, "+----------------|----------------+"); >> PMD_RX_LOG(DEBUG, "| VLAN & LEN | STATUS |"); >> PMD_RX_LOG(DEBUG, "| 0x%08x | 0x%08x |", rxd->d.vlan_len, >> rxd->d.staterr); >> PMD_RX_LOG(DEBUG, "+----------------|----------------+"); >> PMD_RX_LOG(DEBUG, "| RESERVED | RSS_HASH |"); >> PMD_RX_LOG(DEBUG, "| 0x%08x | 0x%08x |", 0, rxd->d.rss); >> PMD_RX_LOG(DEBUG, "+----------------|----------------+"); >> PMD_RX_LOG(DEBUG, "| TIME TAG |"); >> PMD_RX_LOG(DEBUG, "| 0x%016lx |", rxd->q.timestamp); >> PMD_RX_LOG(DEBUG, "+----------------|----------------+"); >> } >> #endif >>=20 >> Also clang on Ubuntu 14.04 does not like the option: >> CC fm10k_pf.o >> error: unknown warning option '-Wno-unused-but-set-variable'; did you >>mean '-Wno-unused-const-variable'? [-Werror,-Wunknown-warning-option] > >Thanks for reporting. >I have no error with GCC 4.9.2. >Please could you try to send a patch?