From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-lb0-x22b.google.com (mail-lb0-x22b.google.com [IPv6:2a00:1450:4010:c04::22b]) by dpdk.org (Postfix) with ESMTP id 12C88DE0 for ; Sun, 12 Jan 2014 00:31:17 +0100 (CET) Received: by mail-lb0-f171.google.com with SMTP id w7so4432875lbi.30 for ; Sat, 11 Jan 2014 15:32:30 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=o9FBIp7OZnkRAHF1N1zGPRPDUTALNvOWy3C4kGCcpik=; b=hxlT6lF07np4wOmCSg+LTKCl22uDBVUJ4Yx8H3MIlJu3hv5PEDiTmi+uCS/R5j9Bgz MeRacigz6daWimTrqei2gk30E6X4/WBV8s19eRmlM+FwsmdyTgX2ryYk5FFcdQW6Y1xJ wnL6BnAA9Xj+idwBy9mGZnMauvoKhjcMnQgL5pjj2a6apP+xWlZWDY6RiUsge8f8KkLL 2pNFccPkRaVa9WAOJFHurAKU0uEg4eTTli9JrPkRscZHqqcA/TybU8g/N8WD4VO7HhC0 eHDDrWAbc79IwGUt68vA05tEdU/SGXS7qxfc+uZ0rMhheEFGJfLGvG7h3ieDDPkMJMdz gVEQ== MIME-Version: 1.0 X-Received: by 10.152.4.74 with SMTP id i10mr551185lai.58.1389483150444; Sat, 11 Jan 2014 15:32:30 -0800 (PST) Received: by 10.112.133.167 with HTTP; Sat, 11 Jan 2014 15:32:30 -0800 (PST) In-Reply-To: References: Date: Sun, 12 Jan 2014 07:32:30 +0800 Message-ID: From: Chao Pei To: ankit kumar Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Cc: dev Subject: Re: [dpdk-dev] How to Destroy any rte_ring or recreate the ring with same name. X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Jan 2014 23:31:18 -0000 Currently there is no way to destroy a ring. It's memory is alloced with rte_memzone_reserve, which cannot be freed. 2014/1/10 ankit kumar > Hi all, > > As i am trying to use DPDK ring library in my application. It works > fine. > But as per API Documentation there is no function to destroy any > created ring. I have to create a > ring multiple time with same name. > SO is there any way to destroy any created ring then recreate it > with same name. > > Thank You. !!! >