From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id E028D378E for ; Fri, 13 Jul 2018 10:22:22 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 13 Jul 2018 01:22:21 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.51,347,1526367600"; d="scan'208";a="72421363" Received: from dhunt5-mobl2.ger.corp.intel.com (HELO [10.237.221.75]) ([10.237.221.75]) by orsmga001.jf.intel.com with ESMTP; 13 Jul 2018 01:22:20 -0700 To: Thomas Monjalon Cc: dev@dpdk.org References: <20180621132414.39047-2-david.hunt@intel.com> <20180626092317.11031-1-david.hunt@intel.com> <20180626092317.11031-4-david.hunt@intel.com> <6993574.EjTxxvdgkU@xps> From: "Hunt, David" Message-ID: <2eb04257-8227-f678-b528-697d1918dc8e@intel.com> Date: Fri, 13 Jul 2018 09:24:11 +0100 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.9.1 MIME-Version: 1.0 In-Reply-To: <6993574.EjTxxvdgkU@xps> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Content-Language: en-US Subject: Re: [dpdk-dev] [PATCH v3 3/9] examples/vm_power: add oob monitoring functions X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Jul 2018 08:22:24 -0000 Hi Thomas, On 12/7/2018 8:13 PM, Thomas Monjalon wrote: > 26/06/2018 11:23, David Hunt: >> +#include >> +#include >> +#include >> +#include >> +#include >> +#include >> +#include >> +#include >> +#include >> +#include >> +#include >> +#include >> + >> +#include >> +#include >> +#include >> +#include >> +#include >> +#include >> +#include >> + >> +#include >> +#include "oob_monitor.h" >> +#include "power_manager.h" >> +#include "channel_manager.h" >> + >> +#include >> +#define RTE_LOGTYPE_CHANNEL_MONITOR RTE_LOGTYPE_USER1 > I'm sure you don't need all these headers. > rte_log.h is included twice. > rte_pmd_i40e is more than suspicious... > > This is a hint that the whole file was probably written too fast :) Apologies, it was a cut-and-paste from another file in that same directory. I can clean it up and re-spin. Regards, Dave.