From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 23C2CA0542; Sat, 8 Oct 2022 14:14:10 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id BCDA34021F; Sat, 8 Oct 2022 14:14:09 +0200 (CEST) Received: from szxga01-in.huawei.com (szxga01-in.huawei.com [45.249.212.187]) by mails.dpdk.org (Postfix) with ESMTP id 86C0C4021E for ; Sat, 8 Oct 2022 14:14:08 +0200 (CEST) Received: from dggpeml500024.china.huawei.com (unknown [172.30.72.53]) by szxga01-in.huawei.com (SkyGuard) with ESMTP id 4Ml3tC3QvJzpVmf; Sat, 8 Oct 2022 20:10:59 +0800 (CST) Received: from [10.67.100.224] (10.67.100.224) by dggpeml500024.china.huawei.com (7.185.36.10) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.31; Sat, 8 Oct 2022 20:14:06 +0800 Subject: Re: [PATCH v7 00/10] introduce memarea library From: fengchengwen To: , , , , , CC: , References: <20220721044648.6817-1-fengchengwen@huawei.com> <20221008115833.29247-1-fengchengwen@huawei.com> Message-ID: <43c366c9-5cc1-d68c-9e18-37e82476ec9e@huawei.com> Date: Sat, 8 Oct 2022 20:14:06 +0800 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:68.0) Gecko/20100101 Thunderbird/68.11.0 MIME-Version: 1.0 In-Reply-To: <20221008115833.29247-1-fengchengwen@huawei.com> Content-Type: text/plain; charset="utf-8" Content-Language: en-US Content-Transfer-Encoding: 7bit X-Originating-IP: [10.67.100.224] X-ClientProxiedBy: dggems703-chm.china.huawei.com (10.3.19.180) To dggpeml500024.china.huawei.com (7.185.36.10) X-CFilter-Loop: Reflected X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org On 2022/10/8 19:58, Chengwen Feng wrote: > The memarea library is an allocator of variable-size object which based > on a memory region. The main features are as follows: > ... > > --- > v6: > * address Mattias's comments. > * repost patches as there are spread over different series in patchwork. Sorry about the confusion, the repost operation should be classified as v7. As it's cover-letter, I didn't send v8 to fix it. If necessary, I will send v8. > v5: > * fix 09/10 patch spell warning. > v4: > * repost patches as there are spread over different series in patchwork. > v3: > * add memory source of RTE memory. > * add algorithm field to facilitate the introduction of new algorithms. > * fix memarea log don't output problem. > v2: > * fix compile issues reported by dpdk-test-report. > * address Dimitry and Jerin's comments. > * add no MT-safe test. > > MAINTAINERS | 6 + > app/test/meson.build | 2 + > app/test/test_memarea.c | 420 ++++++++++++++++++++++++ > doc/api/doxy-api-index.md | 3 +- > doc/api/doxy-api.conf.in | 1 + > doc/guides/prog_guide/index.rst | 1 + > doc/guides/prog_guide/memarea_lib.rst | 56 ++++ > doc/guides/rel_notes/release_22_11.rst | 6 + > lib/eal/common/eal_common_log.c | 1 + > lib/eal/include/rte_log.h | 1 + > lib/memarea/memarea_private.h | 37 +++ > lib/memarea/meson.build | 16 + > lib/memarea/rte_memarea.c | 428 +++++++++++++++++++++++++ > lib/memarea/rte_memarea.h | 234 ++++++++++++++ > lib/memarea/version.map | 16 + > lib/meson.build | 1 + > 16 files changed, 1228 insertions(+), 1 deletion(-) > create mode 100644 app/test/test_memarea.c > create mode 100644 doc/guides/prog_guide/memarea_lib.rst > create mode 100644 lib/memarea/memarea_private.h > create mode 100644 lib/memarea/meson.build > create mode 100644 lib/memarea/rte_memarea.c > create mode 100644 lib/memarea/rte_memarea.h > create mode 100644 lib/memarea/version.map >