From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 3BED71B3DA for ; Fri, 13 Oct 2017 02:58:27 +0200 (CEST) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga101.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 12 Oct 2017 17:58:27 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.43,369,1503385200"; d="scan'208";a="1024680008" Received: from fmsmsx105.amr.corp.intel.com ([10.18.124.203]) by orsmga003.jf.intel.com with ESMTP; 12 Oct 2017 17:58:26 -0700 Received: from fmsmsx114.amr.corp.intel.com (10.18.116.8) by FMSMSX105.amr.corp.intel.com (10.18.124.203) with Microsoft SMTP Server (TLS) id 14.3.319.2; Thu, 12 Oct 2017 17:58:26 -0700 Received: from shsmsx104.ccr.corp.intel.com (10.239.4.70) by FMSMSX114.amr.corp.intel.com (10.18.116.8) with Microsoft SMTP Server (TLS) id 14.3.319.2; Thu, 12 Oct 2017 17:58:25 -0700 Received: from shsmsx103.ccr.corp.intel.com ([169.254.4.213]) by SHSMSX104.ccr.corp.intel.com ([169.254.5.152]) with mapi id 14.03.0319.002; Fri, 13 Oct 2017 08:58:24 +0800 From: "Li, Xiaoyun" To: Thomas Monjalon CC: "dev@dpdk.org" , "Ananyev, Konstantin" , "Richardson, Bruce" , "Lu, Wenzhuo" , "Zhang, Helin" Thread-Topic: [dpdk-dev] [PATCH v7 0/3] run-time Linking support Thread-Index: AQHTPdZcIDiLnfmScUC6w4XnSNBroaLbSaYAgAW2g2A= Date: Fri, 13 Oct 2017 00:58:24 +0000 Message-ID: References: <1507157911-8702-1-git-send-email-xiaoyun.li@intel.com> <1507206794-79941-1-git-send-email-xiaoyun.li@intel.com> <4485243.05o4XS1kn8@xps> In-Reply-To: <4485243.05o4XS1kn8@xps> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v7 0/3] run-time Linking support 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 Oct 2017 00:58:28 -0000 Hi Sorry for the late reply. The original rte_memcpy.h is in include directory. So I just add them there= . But you are right, I should move them to common/arch/x86/ directory. I will modify that in next version. Best Regards Xiaoyun Li > -----Original Message----- > From: Thomas Monjalon [mailto:thomas@monjalon.net] > Sent: Tuesday, October 10, 2017 01:41 > To: Li, Xiaoyun > Cc: dev@dpdk.org; Ananyev, Konstantin ; > Richardson, Bruce ; Lu, Wenzhuo > ; Zhang, Helin > Subject: Re: [dpdk-dev] [PATCH v7 0/3] run-time Linking support >=20 > Hi, >=20 > 05/10/2017 14:33, Xiaoyun Li: > > create mode 100644 > lib/librte_eal/common/include/arch/x86/rte_memcpy.c > > create mode 100644 > lib/librte_eal/common/include/arch/x86/rte_memcpy_avx2.c > > create mode 100644 > lib/librte_eal/common/include/arch/x86/rte_memcpy_avx512f.c > > create mode 100644 > lib/librte_eal/common/include/arch/x86/rte_memcpy_internal.h > > create mode 100644 > lib/librte_eal/common/include/arch/x86/rte_memcpy_sse.c >=20 > Why are you adding some .c files in the include directory? > I think it should be located in lib/librte_eal/common/arch/x86/