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 1F2C0A0032; Tue, 13 Sep 2022 02:35:18 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B81FD40151; Tue, 13 Sep 2022 02:35:17 +0200 (CEST) Received: from szxga01-in.huawei.com (szxga01-in.huawei.com [45.249.212.187]) by mails.dpdk.org (Postfix) with ESMTP id EE4404003F for ; Tue, 13 Sep 2022 02:35:15 +0200 (CEST) Received: from dggpeml500024.china.huawei.com (unknown [172.30.72.53]) by szxga01-in.huawei.com (SkyGuard) with ESMTP id 4MRPXN5jllzlVs6 for ; Tue, 13 Sep 2022 08:31:16 +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; Tue, 13 Sep 2022 08:35:12 +0800 Subject: Re: [PATCH v3 00/13] telemetry JSON escaping and other enhancements To: Bruce Richardson , References: <20220623164245.561371-1-bruce.richardson@intel.com> <20220909093523.471727-1-bruce.richardson@intel.com> From: fengchengwen Message-ID: Date: Tue, 13 Sep 2022 08:35:12 +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: <20220909093523.471727-1-bruce.richardson@intel.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: dggems701-chm.china.huawei.com (10.3.19.178) 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 Series-acked-by: Chengwen Feng On 2022/9/9 17:35, Bruce Richardson wrote: > This patchset contains fixes for the problem of handling characters returned by > telemetry callbacks which require escaping when encoded in JSON format. It also > includes unit tests to validate the correct encoding in such scenarios and a > number of smaller enhancements to telemetry and telemetry testing > > V3: > * reorder patchset to put previous patch 6 (dict name limiting) at the > start of the series > * fix missed rename of TEST_OUTPUT to CHECK_OUTPUT in patch 10 > ...