From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <keith.wiles@intel.com>
Received: from mga11.intel.com (mga11.intel.com [192.55.52.93])
 by dpdk.org (Postfix) with ESMTP id 145B6B430
 for <dev@dpdk.org>; Wed, 18 Feb 2015 18:02:34 +0100 (CET)
Received: from fmsmga003.fm.intel.com ([10.253.24.29])
 by fmsmga102.fm.intel.com with ESMTP; 18 Feb 2015 09:01:40 -0800
X-ExtLoop1: 1
X-IronPort-AV: E=Sophos;i="5.09,602,1418112000"; d="scan'208";a="456340169"
Received: from orsmsx106.amr.corp.intel.com ([10.22.225.133])
 by FMSMGA003.fm.intel.com with ESMTP; 18 Feb 2015 08:46:36 -0800
Received: from fmsmsx151.amr.corp.intel.com (10.18.125.4) by
 ORSMSX106.amr.corp.intel.com (10.22.225.133) with Microsoft SMTP Server (TLS)
 id 14.3.195.1; Wed, 18 Feb 2015 09:01:40 -0800
Received: from fmsmsx113.amr.corp.intel.com ([169.254.13.112]) by
 FMSMSX151.amr.corp.intel.com ([169.254.7.251]) with mapi id 14.03.0195.001;
 Wed, 18 Feb 2015 09:01:40 -0800
From: "Wiles, Keith" <keith.wiles@intel.com>
To: "dev@dpdk.org" <dev@dpdk.org>
Thread-Topic: fm10k_rxtx.c does not compile
Thread-Index: AQHQS5yQvwGACHfZe0qdwBzhlVF8Ww==
Date: Wed, 18 Feb 2015 17:01:39 +0000
Message-ID: <D10A2192.13C81%keith.wiles@intel.com>
Accept-Language: en-US
Content-Language: en-US
X-MS-Has-Attach: 
X-MS-TNEF-Correlator: 
x-originating-ip: [10.255.34.223]
Content-Type: text/plain; charset="Windows-1252"
Content-ID: <F6997BAC550E9B43B6C4647C67986C85@intel.com>
Content-Transfer-Encoding: quoted-printable
MIME-Version: 1.0
Subject: [dpdk-dev] fm10k_rxtx.c does not compile
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: patches and discussions about DPDK <dev.dpdk.org>
List-Unsubscribe: <http://dpdk.org/ml/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://dpdk.org/ml/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <http://dpdk.org/ml/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Feb 2015 17:02:35 -0000

I just pulled the code and found a unused function error =91dump_rxd()=92

I had to add the ifdef around the function and remove the ifdef inside the =
function:

#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

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]