From patchwork Mon Apr 23 12:22:43 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Anatoly Burakov X-Patchwork-Id: 38694 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 490C2CF3; Mon, 23 Apr 2018 14:22:49 +0200 (CEST) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by dpdk.org (Postfix) with ESMTP id 5C7A4A69 for ; Mon, 23 Apr 2018 14:22:46 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga106.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 23 Apr 2018 05:22:45 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.49,318,1520924400"; d="scan'208";a="39717107" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by fmsmga002.fm.intel.com with ESMTP; 23 Apr 2018 05:22:44 -0700 Received: from sivswdev01.ir.intel.com (sivswdev01.ir.intel.com [10.237.217.45]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id w3NCMi9j025468; Mon, 23 Apr 2018 13:22:44 +0100 Received: from sivswdev01.ir.intel.com (localhost [127.0.0.1]) by sivswdev01.ir.intel.com with ESMTP id w3NCMiw5032285; Mon, 23 Apr 2018 13:22:44 +0100 Received: (from aburakov@localhost) by sivswdev01.ir.intel.com with LOCAL id w3NCMh9W032251; Mon, 23 Apr 2018 13:22:43 +0100 From: Anatoly Burakov To: dev@dpdk.org Cc: Thomas Monjalon Date: Mon, 23 Apr 2018 13:22:43 +0100 Message-Id: <6c213ed866fd4d25dba14e0180093b86fab85790.1524485980.git.anatoly.burakov@intel.com> X-Mailer: git-send-email 1.7.0.7 Subject: [dpdk-dev] [PATCH] eal: claim maintainership of EAL memory init 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Claim maintainership of all areas of EAL memory init, including OS-specific parts of it. Also, claim maintainership of fbarray, since although it's not related to memory allocation, it is heavily used by it and its primary purpose is to serve memory allocation functions. Signed-off-by: Anatoly Burakov --- MAINTAINERS | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/MAINTAINERS b/MAINTAINERS index f43e3fe..d3cb203 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -162,11 +162,15 @@ F: test/test/test_version.c Memory Allocation M: Anatoly Burakov +F: lib/librte_eal/common/include/rte_fbarray.h F: lib/librte_eal/common/include/rte_mem* F: lib/librte_eal/common/include/rte_malloc.h F: lib/librte_eal/common/*malloc* +F: lib/librte_eal/common/eal_common_fbarray.c F: lib/librte_eal/common/eal_common_mem* F: lib/librte_eal/common/eal_hugepages.h +F: lib/librte_eal/linuxapp/eal/eal_mem* +F: lib/librte_eal/bsdapp/eal/eal_mem* F: doc/guides/prog_guide/env_abstraction_layer.rst F: test/test/test_func_reentrancy.c F: test/test/test_malloc.c