From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) by dpdk.org (Postfix) with ESMTP id 81A9C2BAF for ; Sat, 1 Jul 2017 12:59:21 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 37B2C20834; Sat, 1 Jul 2017 06:59:21 -0400 (EDT) Received: from frontend2 ([10.202.2.161]) by compute1.internal (MEProxy); Sat, 01 Jul 2017 06:59:21 -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:x-sasl-enc; s=mesmtp; bh=qfEvaZYETHWG0ic LYjEyIoO2yNZtHSBKLQunk7DBzU8=; b=MagGWI4B89QqbZTl/tdGes2O1iez3SO Av7W2cK8xi2d7AMg/s9G+lu8HF+0T6FIMlgd0aTuMxVnAT8+q8gKf3BvoBaOE27X SJlW9PcQnv/gDginzNKpsArqBkYZmQv7iwjNWTTGGkFxrcBncA/Foz74ItYlcwc3 /hTC7T3Oj6fQ= 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:x-sasl-enc; s= fm1; bh=qfEvaZYETHWG0icLYjEyIoO2yNZtHSBKLQunk7DBzU8=; b=KKILQN2a j1YxMp7BmMSEHhwKgtKTHBeyhutvJuI5gZb/9lk/QHNJsKg1wGbNxjJdDvZl+Tw4 gIivdo5cJOM6zMHdcRBXCyuEgoQI1k2K9iBMLzbPWNVKBhhrHDMf3txjw/bDSXT+ y2AQW19z8al9ZuX+UVnzL3rGez7m5jgRw61I9Xa8o8OSCesSYSBcMPHdPNJyoJrk eLPWZDByxMBJbah3Z723KlbcVF4QJy3mrWaTdhILMnCQqgiStetil3Tp8CCo3RFU uLh/y5s/h+P/+bYmidDJzPb6kuY4lj1V44QoPjqjV/xDYWyJ9/RAyE6YNZF0SLAX o7VpoYQ5RV8p4g== X-ME-Sender: X-Sasl-enc: QQ9mXFPZhk6JzVx93CjQ+cgbp7/JmMmacMcGp0B9Kmfo 1498906760 Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id E692124726; Sat, 1 Jul 2017 06:59:20 -0400 (EDT) From: Thomas Monjalon To: Ilya Maximets Cc: dev@dpdk.org Date: Sat, 01 Jul 2017 12:59:20 +0200 Message-ID: <1544192.8t6sThONvH@xps> In-Reply-To: <20170630161224.7532-1-thomas@monjalon.net> References: <1498715960-2668-1-git-send-email-i.maximets@samsung.com> <20170630161224.7532-1-thomas@monjalon.net> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v11 0/2] Balanced allocation of hugepages X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Jul 2017 10:59:21 -0000 30/06/2017 18:12, Thomas Monjalon: > Version 11: > * Fixed test-build.sh for missing libnuma dependency > > Version 10: > * Fixed typo in DPAA2 config. > > Version 9: > * Removed DPDK_DEP_NUMA from test-build.sh . Not needed > anymore. > * Fixed out of bound write to essential_memory in case > where socket-mem not specified and SIGBUS occured. > > Version 8: > * helper functions from libnuma used to set mempolicy and > work with cpu mask. > * Function now restores previous mempolicy instead of MPOL_DEFAULT. > * Fixed essential_memory on SIGBUS. > * Fixed restoring of mempolicy in case of errors (goto out). > * Enabled by default for all linuxapp except armv7 and dpaa2. > > Version 7: > * RTE_LIBRTE_EAL_NUMA_AWARE_HUGEPAGES --> RTE_EAL_NUMA_AWARE_HUGEPAGES > > Version 6: > * Configuration option RTE_LIBRTE_EAL_NUMA_AWARE_HUGEPAGES > returned. Enabled by default for x86, ppc and thunderx. > > Version 5: > * Fixed shared build. (Automated build test will fail > anyway because libnuma-devel not installed on build servers) > > Version 4: > * Fixed work on systems without NUMA by adding check for NUMA > support in kernel. > > Version 3: > * Implemented hybrid schema for allocation. > * Fixed not needed mempolicy change while remapping. (orig = 0) > * Added patch to enable VHOST_NUMA by default. > > Version 2: > * rebased (fuzz in Makefile) > > Ilya Maximets (2): > mem: balanced allocation of hugepages > config: enable vhost NUMA awareness by default Applied this version, thanks for getting an agreement after long discussions :)