From mboxrd@z Thu Jan 1 00:00:00 1970 From: santosh Subject: Re: [PATCH v6 8/8] mempool: notify memory area to pool Date: Fri, 29 Sep 2017 05:53:43 +0100 Message-ID: <66635b0c-2a96-a1cd-4f99-89fea50faf11@caviumnetworks.com> References: <20170906112834.32378-1-santosh.shukla@caviumnetworks.com> <20170907153042.30890-1-santosh.shukla@caviumnetworks.com> <20170907153042.30890-9-santosh.shukla@caviumnetworks.com> <20170925114141.ynhho56eciqlyxqu@platinum> <8326c640-93f9-2662-56fb-26f50e42161c@caviumnetworks.com> Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Cc: dev@dpdk.org, thomas@monjalon.net, jerin.jacob@caviumnetworks.com, hemant.agrawal@nxp.com To: Olivier MATZ Return-path: Received: from NAM02-CY1-obe.outbound.protection.outlook.com (mail-cys01nam02on0078.outbound.protection.outlook.com [104.47.37.78]) by dpdk.org (Postfix) with ESMTP id D6EA8107A for ; Fri, 29 Sep 2017 06:53:57 +0200 (CEST) In-Reply-To: <8326c640-93f9-2662-56fb-26f50e42161c@caviumnetworks.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" Hi Olivier, On Monday 25 September 2017 11:18 PM, santosh wrote: > On Monday 25 September 2017 12:41 PM, Olivier MATZ wrote: >> On Thu, Sep 07, 2017 at 09:00:42PM +0530, Santosh Shukla wrote: >>> + * Mempool handler usually get notified once for the case of mempool get full >>> + * range of memory area. However, if several memory areas exist then mempool >>> + * handler gets notified each time. >> Not sure I understand this last paragraph. > Refer v5 history [1] for same. > > [1] http://dpdk.org/dev/patchwork/patch/28419/ > > there will be a case where mempool handler may have more than one memory example, no-hugepage case. > In that case _register_memory_area() ops will be called for more than once. > > In v5, you suggested to mention this case explicitly in api description. > > If your not clear with write up then could you propose one and also are you fine > with [8/8] patch beside above note? planning to send v7 by tomorrow, appreciate if you answer question. Ping? IMO, remove above description keep it like: "API to notify the mempool handler if a new memory area is added to pool." Is it ok with you? Can you pl. confirm, I need to send v7 and we want this series in -rc1, its blocking octeontx mempool and nw driver.. delayed review blocking progress. >>> + * >>> + * @param mp >>> + * Pointer to the memory pool. >>> + * @param vaddr >>> + * Pointer to the buffer virtual address >>> + * @param paddr >>> + * Pointer to the buffer physical address >>> + * @param len >>> + * Pool size >> Minor: missing dot at the end > ok. > >>> + * @return >>> + * - 0: Success; >>> + * - ENOTSUP: doesn't support register_memory_area ops (valid error case). >> Missing minus before ENOTSUP. >> The dot should be a semicolon instead. >> > ok. > > Thanks. >