From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matthew Hall Subject: Re: is there any function like rte_mempool_destroy compare with rte_mempool_create Date: Wed, 27 Aug 2014 01:14:59 -0700 Message-ID: <20140827081459.GA8217@mhcomputing.net> References: <91E2D863603AD4478F101CE81E76E45D01B5DFE8@SHSMSX103.ccr.corp.intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: "dev-VfR2kkLFssw@public.gmane.org" To: "Ni, Xun" Return-path: Content-Disposition: inline In-Reply-To: <91E2D863603AD4478F101CE81E76E45D01B5DFE8-0J0gbvR4kTggGBtAFL8yw7fspsVTdybXVpNB7YpNyf8@public.gmane.org> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces-VfR2kkLFssw@public.gmane.org Sender: "dev" On Wed, Aug 27, 2014 at 07:46:26AM +0000, Ni, Xun wrote: > If I run an application twice, is there possible that > the app has the memory leak? Or it just doesn't have enough memory to > execute it again because the first one already get most of the memory but > without release it. User-mapped memory should be freed by the kernel when the process dies. However if there is multiprocess, shmem, or kernel resources being used in your configuration anything could happen, including leaks. Do you have some specifics about what you were doing / running? Matthew.