From mboxrd@z Thu Jan 1 00:00:00 1970 From: Hemant Agrawal Subject: Re: [PATCH v1] mempool/dpaa2: add DPAA2 hardware offloaded mempool Date: Thu, 23 Mar 2017 22:27:48 +0530 Message-ID: <687292fa-bd77-8b2a-d0cf-9f80b9c928fd@nxp.com> References: <1489754838-1455-1-git-send-email-hemant.agrawal@nxp.com> <1489754838-1455-2-git-send-email-hemant.agrawal@nxp.com> <20170322060944.GA622@arm.com> Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8"; format=flowed Content-Transfer-Encoding: 7bit Cc: , , , , To: Jianbo Liu Return-path: Received: from NAM03-CO1-obe.outbound.protection.outlook.com (mail-co1nam03on0073.outbound.protection.outlook.com [104.47.40.73]) by dpdk.org (Postfix) with ESMTP id 1013A1B53 for ; Thu, 23 Mar 2017 17:58:04 +0100 (CET) In-Reply-To: <20170322060944.GA622@arm.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 3/22/2017 11:39 AM, Jianbo Liu wrote: > Hi Hemant, > > The 03/17/2017 18:17, Hemant Agrawal wrote: >> DPAA2 Hardware Mempool handlers allow enqueue/dequeue from NXP's >> QBMAN hardware block. >> CONFIG_RTE_MBUF_DEFAULT_MEMPOOL_OPS is set to 'dpaa2', if the pool >> is enabled. >> >> This memory pool currently supports packet mbuf type blocks only. > > Do you plan to support multi-process for this hardware mempool? > No, currently we don't support mutli-process. we plan to do it in future. >> >> Signed-off-by: Hemant Agrawal >> --- >> MAINTAINERS | 1 + >> config/common_base | 5 + >> config/defconfig_arm64-dpaa2-linuxapp-gcc | 8 + >> drivers/Makefile | 1 + >> drivers/bus/Makefile | 2 + >> drivers/mempool/Makefile | 40 +++ >> drivers/mempool/dpaa2/Makefile | 72 ++++ >> drivers/mempool/dpaa2/dpaa2_hw_mempool.c | 374 +++++++++++++++++++++ >> drivers/mempool/dpaa2/dpaa2_hw_mempool.h | 91 +++++ >> .../mempool/dpaa2/rte_mempool_dpaa2_version.map | 8 + >> 10 files changed, 602 insertions(+) >> create mode 100644 drivers/mempool/Makefile >> create mode 100644 drivers/mempool/dpaa2/Makefile >> create mode 100644 drivers/mempool/dpaa2/dpaa2_hw_mempool.c >> create mode 100644 drivers/mempool/dpaa2/dpaa2_hw_mempool.h >> create mode 100644 drivers/mempool/dpaa2/rte_mempool_dpaa2_version.map >> > IMPORTANT NOTICE: The contents of this email and any attachments are confidential and may also be privileged. If you are not the intended recipient, please notify the sender immediately and do not disclose the contents to any other person, use it for any purpose, or store or copy the information in any medium. Thank you. >