From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail5.wrs.com (mail5.windriver.com [192.103.53.11]) by dpdk.org (Postfix) with ESMTP id 56EBC37B4 for ; Thu, 9 Mar 2017 14:11:25 +0100 (CET) Received: from ALA-HCA.corp.ad.wrs.com (ala-hca.corp.ad.wrs.com [147.11.189.40]) by mail5.wrs.com (8.15.2/8.15.2) with ESMTPS id v29DBNdD005539 (version=TLSv1 cipher=AES128-SHA bits=128 verify=OK); Thu, 9 Mar 2017 05:11:23 -0800 Received: from yow-cgts4-lx.wrs.com (128.224.145.137) by ALA-HCA.corp.ad.wrs.com (147.11.189.50) with Microsoft SMTP Server (TLS) id 14.3.294.0; Thu, 9 Mar 2017 05:11:22 -0800 From: Allain Legacy To: , CC: , Date: Thu, 9 Mar 2017 08:10:54 -0500 Message-ID: <1489065060-98370-1-git-send-email-allain.legacy@windriver.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1488482971-170522-1-git-send-email-allain.legacy@windriver.com> References: <1488482971-170522-1-git-send-email-allain.legacy@windriver.com> MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [128.224.145.137] Subject: [dpdk-dev] [PATCH v2 0/6] librte_cfgfile enhancements 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: Thu, 09 Mar 2017 13:11:25 -0000 This patchset includes some minor enhancements that we have developped for our DPDK application. We would like to contribute them upstream to help ease adoption of the DPDK by anyone looking for this type of functionality. The commit logs on each patch should be self-sufficient in explaining the intent and purpose. v2: * Added unit tests for the cfgfile library in the initial patch of the series and then added additional tests in subsequent patches where appropriate. These will not run unless the following config parameter is set and additional packages are installed (e.g., libarchive-dev): CONFIG_RTE_APP_TEST_RESOURCE_TAR=y * Reworked the configurable comment character patch to allow specifying a different character at runtime rather than build time. Used a separate API to avoid affecting existing users or users that choose not to leverage the extended API. Used a "parameters" structure to pass additional arguments rather than adding more arguments to the function to allow expansion in the future with minimal impact on existing users. * Dropped the patch to initialize the cfg structure because the segfault that this was trying to address was already fixed by 2 earlier commits which we did not have in our development environment. I realized this while trying to add unit tests to catch the segfault case. * Fixed the doxygen comments related to the RTE_CFG_GLOBAL_SECTION patch * Added an additional patch to allow parsing a key with an empty value (i.e., "key="). I realized that I had forgotten to include this in my first patchset. Allain Legacy (5): test: basic unit tests for cfgfile cfgfile: add support for unamed global section cfgfile: configurable comment character cfgfile: use strnlen to constrain memchr search cfgfile: add support for empty value string Joseph Richard (1): cfgfile: increase local buffer size for max name and value config/common_base | 1 + lib/librte_cfgfile/rte_cfgfile.c | 28 +++++++++++++++++++++++----- lib/librte_cfgfile/rte_cfgfile.h | 6 ++++++ 3 files changed, 30 insertions(+), 5 deletions(-) -- 1.8.3.1