From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from tama500.ecl.ntt.co.jp (tama500.ecl.ntt.co.jp [129.60.39.148]) by dpdk.org (Postfix) with ESMTP id 798651B5E6 for ; Thu, 21 Jun 2018 12:55:49 +0200 (CEST) Received: from vc1.ecl.ntt.co.jp (vc1.ecl.ntt.co.jp [129.60.86.153]) by tama500.ecl.ntt.co.jp (8.13.8/8.13.8) with ESMTP id w5LAtmd8028841; Thu, 21 Jun 2018 19:55:48 +0900 Received: from vc1.ecl.ntt.co.jp (localhost [127.0.0.1]) by vc1.ecl.ntt.co.jp (Postfix) with ESMTP id 6DDF9EA8363; Thu, 21 Jun 2018 19:55:48 +0900 (JST) Received: from jcms-pop21.ecl.ntt.co.jp (jcms-pop21.ecl.ntt.co.jp [129.60.87.134]) by vc1.ecl.ntt.co.jp (Postfix) with ESMTP id 6388BEA7E6C; Thu, 21 Jun 2018 19:55:48 +0900 (JST) Received: from [IPv6:::1] (watercress.nslab.ecl.ntt.co.jp [129.60.13.73]) by jcms-pop21.ecl.ntt.co.jp (Postfix) with ESMTPSA id 5CBF540094A; Thu, 21 Jun 2018 19:55:48 +0900 (JST) References: <20180619113720.8336-1-shinohara.kenta@lab.ntt.co.jp> <20180619113720.8336-8-shinohara.kenta@lab.ntt.co.jp> From: Yasufumi Ogawa Message-ID: <8bbf8e54-d553-104b-63a4-3fa85211b1b2@lab.ntt.co.jp> Date: Thu, 21 Jun 2018 19:54:18 +0900 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.4.0 MIME-Version: 1.0 In-Reply-To: <20180619113720.8336-8-shinohara.kenta@lab.ntt.co.jp> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-CC-Mail-RelayStamp: 1 To: Kenta Shinohara , spp@dpdk.org, ferruh.yigit@intel.com X-TM-AS-MML: disable Subject: Re: [spp] [PATCH 7/7] spp_vm: add DALLOW_EXPERIMENTAL_API on CFLAGS X-BeenThere: spp@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: Soft Patch Panel List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Jun 2018 10:55:50 -0000 On 2018/06/19 20:37, Kenta Shinohara wrote: > According to the spec change of DPDK API, spp_vm requires to use > experimental method 'rte_fbarray_find_next_used'. > (See commit 8adf77c46fcf ("spp_vm: fix changing spec of rte_mem_config") > for detail of change) > To avoid compile warning, add '-DALLOW_EXPERIMENTAL_API' flag > to CFLAGS parameter. > > Signed-off-by: Kenta Shinohara Thanks! Acked-by: Yasufumi Ogawa > > --- > src/vm/Makefile | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/src/vm/Makefile b/src/vm/Makefile > index 8996d84..2d7d402 100644 > --- a/src/vm/Makefile > +++ b/src/vm/Makefile > @@ -51,6 +51,7 @@ SRCS-y := main.c init.c args.c ../shared/common.c > > INC := $(wildcard *.h) > > +CFLAGS += -DALLOW_EXPERIMENTAL_API > CFLAGS += $(WERROR_FLAGS) -O3 > CFLAGS += -I$(SRCDIR)/../shared > >