From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <thomas@monjalon.net> Received: from out3-smtp.messagingengine.com (out3-smtp.messagingengine.com [66.111.4.27]) by dpdk.org (Postfix) with ESMTP id E4AE45F20 for <dev@dpdk.org>; Tue, 2 Oct 2018 17:29:26 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 7FF7F218FD; Tue, 2 Oct 2018 11:29:26 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute1.internal (MEProxy); Tue, 02 Oct 2018 11:29:26 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc; s=mesmtp; bh=lT+6rdfH/pluVOf+Pe6YMN76G3 k6LrmExwilsnLecf4=; b=Ydl5ix1r7J/dXG5OgQ7HiKpzqdy+bOwXx46SgvfpCz I4UhBjGbiDrQPbwGWxt/G0hjRsiAqbC2G8t7nnZYN/cdhOup3S818o3wmKnyNwN4 4/oRJXO4kMWtnei03kgzer0dFym9ri1nP53vAkyA9GGw0/cenGyyvYhmFkN8UOT1 w= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm3; bh=lT+6rd fH/pluVOf+Pe6YMN76G3k6LrmExwilsnLecf4=; b=nZHxx6g+J2CZXLjCMMyu/s P8h3x16WD1OP240TQar2Xlfhc0AbY/8mY+RBpoJnaiuvRMnLDvNxpB+SuYQCQsaL esvLG6Gr8rH/KAfRO5DrYreLMbTTHzigf4/z/kUP+S0Ikn6YmvOfmwrVRbzNte9u lGeQhiK2k6t+EoSIWemhHKIK7ez7WV7bxh493LoRpSTH6NQ7p9JG/goNC4rylbK4 pLXnZC6Wq8LcdU4wpN1cAaf+Qd8xfTDSdxQ8/8Mv6ycZSYGX4mO7/sx/AhGkKAU2 Qj3uC5eTLQw9sjRI9dBWsKZJti1s1eHK/BpsBoaYy8XPWNGPT4jo9rbmUAoxCbTQ == X-ME-Sender: <xms:1Y6zW9HbG2WzQ_DJUgIejVQqgLMc-8nAi79XLc1YC8zZrTwd7qNMbg> X-ME-Proxy: <xmx:1Y6zW8bd1MaDdaRdphhNyN_5jd6N2D0ckyfZ6EkqCPBS52V89T0K2Q> <xmx:1Y6zW3lHs0LOB2Q0H7hVtiHZsiPg0Zdy5lF8ujYRAtIAz5HWSsWq9g> <xmx:1Y6zW4xt8nFbdytwO18CLdzJxYGQuVg2sW3wnYWUaFCTTi7mSkioaQ> <xmx:1Y6zW1PqeqEU_OaJ3GC4rWcrqNLshU3l6-Fyk5QooYjFEMN6ZNeHLA> <xmx:1Y6zW8RC-MsHGfmU1Q2IK2XVq991G5QD3Ulen9a103fMyAKC5jjflQ> <xmx:1o6zW8X6eDmFlQTIVMktI39zI7JzqaStk5yDzRPk2utHRd0w8SKPxA> Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 3AC56102E0; Tue, 2 Oct 2018 11:29:25 -0400 (EDT) From: Thomas Monjalon <thomas@monjalon.net> To: Igor Ryzhov <iryzhov@nfware.com> Cc: dev@dpdk.org, ferruh.yigit@intel.com Date: Tue, 02 Oct 2018 17:29:24 +0200 Message-ID: <3389718.X49WTKue0F@xps> In-Reply-To: <20180926162106.1129-1-iryzhov@nfware.com> References: <20180923191202.64896-1-iryzhov@nfware.com> <20180926162106.1129-1-iryzhov@nfware.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v3] kni: dynamically allocate memory for each KNI X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions <dev.dpdk.org> List-Unsubscribe: <https://mails.dpdk.org/options/dev>, <mailto:dev-request@dpdk.org?subject=unsubscribe> List-Archive: <http://mails.dpdk.org/archives/dev/> List-Post: <mailto:dev@dpdk.org> List-Help: <mailto:dev-request@dpdk.org?subject=help> List-Subscribe: <https://mails.dpdk.org/listinfo/dev>, <mailto:dev-request@dpdk.org?subject=subscribe> X-List-Received-Date: Tue, 02 Oct 2018 15:29:27 -0000 26/09/2018 18:21, Igor Ryzhov: > Long time ago preallocation of memory for KNI was introduced in commit > 0c6bc8e. It was done because of lack of ability to free previously > allocated memzones, which led to memzone exhaustion. Currently memzones > can be freed and this patch uses this ability for dynamic KNI memory > allocation. > > Signed-off-by: Igor Ryzhov <iryzhov@nfware.com> Applied (with conflict solved), thanks