From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id DEB61593E for ; Thu, 16 Oct 2014 20:20:24 +0200 (CEST) Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga103.fm.intel.com with ESMTP; 16 Oct 2014 11:18:15 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.97,862,1389772800"; d="scan'208";a="401397358" Received: from irsmsx101.ger.corp.intel.com ([163.33.3.153]) by FMSMGA003.fm.intel.com with ESMTP; 16 Oct 2014 11:20:59 -0700 Received: from irsmsx110.ger.corp.intel.com (163.33.3.25) by IRSMSX101.ger.corp.intel.com (163.33.3.153) with Microsoft SMTP Server (TLS) id 14.3.195.1; Thu, 16 Oct 2014 19:28:16 +0100 Received: from irsmsx108.ger.corp.intel.com ([169.254.11.21]) by IRSMSX110.ger.corp.intel.com ([169.254.15.199]) with mapi id 14.03.0195.001; Thu, 16 Oct 2014 19:28:16 +0100 From: "De Lara Guarch, Pablo" To: "Carew, Alan" , "dev@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH v4 04/10] VM Power Management application and Makefile. Thread-Index: AQHP5lPqKWr8qYCI7Uqltzp0tql45ZwzEOhw Date: Thu, 16 Oct 2014 18:28:15 +0000 Message-ID: References: <1412003903-9061-1-git-send-email-alan.carew@intel.com> <1413142571-23069-1-git-send-email-alan.carew@intel.com> <1413142571-23069-5-git-send-email-alan.carew@intel.com> In-Reply-To: <1413142571-23069-5-git-send-email-alan.carew@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [163.33.239.181] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v4 04/10] VM Power Management application and Makefile. X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Oct 2014 18:20:25 -0000 > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Alan Carew > Sent: Sunday, October 12, 2014 8:36 PM > To: dev@dpdk.org > Subject: [dpdk-dev] [PATCH v4 04/10] VM Power Management application > and Makefile. >=20 > For launching CLI thread and Monitor thread and initialising > resources. > Requires a minimum of two lcores to run, additional cores specified by ea= l > core > mask are not used. >=20 > Signed-off-by: Alan Carew > --- > examples/vm_power_manager/Makefile | 57 ++++++++++++++++++ > examples/vm_power_manager/main.c | 117 > +++++++++++++++++++++++++++++++++++++ > examples/vm_power_manager/main.h | 52 +++++++++++++++++ > 3 files changed, 226 insertions(+) > create mode 100644 examples/vm_power_manager/Makefile > create mode 100644 examples/vm_power_manager/main.c > create mode 100644 examples/vm_power_manager/main.h [...] > +# Default target, can be overriden by command line or environment > +RTE_TARGET ?=3D x86_64-default-linuxapp-gcc Tiny comment here. Target should be x86_64-native-linuxapp-gcc > + > +include $(RTE_SDK)/mk/rte.vars.mk > + > +# binary name > +APP =3D vm_power_mgr > + > +# all source are stored in SRCS-y > +SRCS-y :=3D main.c vm_power_cli.c power_manager.c channel_manager.c > +SRCS-y +=3D channel_monitor.c > + > +CFLAGS +=3D -O3 -lvirt -I$(RTE_SDK)/lib/librte_power/ > +CFLAGS +=3D $(WERROR_FLAGS) > +