From patchwork Fri Jan 30 15:52:22 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Olivier Matz X-Patchwork-Id: 2849 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id 693DA2E8D; Fri, 30 Jan 2015 16:52:35 +0100 (CET) Received: from mail-wg0-f54.google.com (mail-wg0-f54.google.com [74.125.82.54]) by dpdk.org (Postfix) with ESMTP id DC46B255 for ; Fri, 30 Jan 2015 16:52:33 +0100 (CET) Received: by mail-wg0-f54.google.com with SMTP id b13so27531197wgh.13 for ; Fri, 30 Jan 2015 07:52:33 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=hjEsx+V4qd3WOcT3Utnv4gbkyqnGkn9RQc2OeAna4sU=; b=WcuxeAu/kS0S5oZRdMWbocxDoVkbm1HMcmDFc0SRogCEG/+NVzlYw662QukucGIndL OFpMQqNvPT0ZJ0S2V4xX9/PmQY+N6LRJJ4F1e8NBN3ULRrV9qwvfKJoClBxb5TN6OZFN CGhlDOYZtiMX3KEA96NWSAfX0N3GqJYKE+jG2tuEYu2D/qCR9wXkH8xs6uvyDl+yYV/w siF1gtYjV/dWVzEg85DJH1OCZ+legwN8E5aom98nWsNo8f6uu3/yMSQWbvHV0WQzX9sR 09rJNwZK/lVFwqNYU1NgPqaAv+vqOzz4x95vckCFmXfvg5j82pfsBW0kPi28Ns5c1D4a L+jQ== X-Gm-Message-State: ALoCoQmAejpKYPzsKpKapbYhzgsptClJA40pBDlD1EPgJP1RWZMw5jx4trd2Kl4Y2WoX6yyAux4D X-Received: by 10.180.73.241 with SMTP id o17mr6186265wiv.16.1422633153657; Fri, 30 Jan 2015 07:52:33 -0800 (PST) Received: from glumotte.dev.6wind.com (6wind.net2.nerim.net. [213.41.180.237]) by mx.google.com with ESMTPSA id 7sm15457942wjq.29.2015.01.30.07.52.32 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 30 Jan 2015 07:52:33 -0800 (PST) From: Olivier Matz To: dev@dpdk.org Date: Fri, 30 Jan 2015 16:52:22 +0100 Message-Id: <1422633142-16033-1-git-send-email-olivier.matz@6wind.com> X-Mailer: git-send-email 2.1.4 Subject: [dpdk-dev] [PATCH] maintainers: claim mbuf, mempool, ring, mk, kvargs, cmdline 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" I'm volonteer to maintain the following components of dpdk: - mbuf packet api - mempool library - ring library - build system - kvargs - command line library Note: I've splitted rte_mempool and rte_malloc as these two libraries are different enough. Signed-off-by: Olivier Matz Acked-by: Thomas Monjalon --- MAINTAINERS | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/MAINTAINERS b/MAINTAINERS index 5fccdbb..b2ddd4f 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -39,6 +39,7 @@ F: doc/ Build System ------------ +M: Olivier Matz F: GNUmakefile F: Makefile F: config/ @@ -133,21 +134,27 @@ F: lib/librte_eal/bsdapp/nic_uio/ Core Libraries -------------- -Memory management +Dynamic memory management F: lib/librte_malloc/ F: doc/guides/prog_guide/malloc_lib.rst F: app/test/test_malloc.c +F: app/test/test_func_reentrancy.c + +Memory pool management +M: Olivier Matz F: lib/librte_mempool/ F: doc/guides/prog_guide/mempool_lib.rst F: app/test/test_mempool* F: app/test/test_func_reentrancy.c Ring queue +M: Olivier Matz F: lib/librte_ring/ F: app/test/test_ring* F: app/test/test_func_reentrancy.c Packet buffer +M: Olivier Matz F: lib/librte_mbuf/ F: doc/guides/prog_guide/mbuf_lib.rst F: app/test/test_mbuf.c @@ -292,6 +299,7 @@ Configuration file F: lib/librte_cfgfile/ Interactive command line +M: Olivier Matz F: lib/librte_cmdline/ F: app/cmdline_test/ F: app/test/test_cmdline* @@ -306,6 +314,7 @@ F: app/test/test_ivshmem.c F: examples/l2fwd-ivshmem/ Key/Value parsing +M: Olivier Matz F: lib/librte_kvargs/ F: app/test/test_kvargs.c