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 36380A0547; Wed, 29 Sep 2021 06:18:41 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id ABE324068F; Wed, 29 Sep 2021 06:18:40 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by mails.dpdk.org (Postfix) with ESMTP id 9BDF64068E for ; Wed, 29 Sep 2021 06:18:39 +0200 (CEST) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.16.1.2/8.16.1.2) with SMTP id 18T3xsIU008738; Tue, 28 Sep 2021 21:18:38 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : in-reply-to : references : mime-version : content-transfer-encoding : content-type; s=pfpt0220; bh=pjYP8A0wqs3eEUxZXtyqDvxbyoGP0P3cYF4/rwfRP0E=; b=OffTWxFOiW7amLgniqFmlgSBa8P1u+dfSJjChgyEeiblCVKv2YlJ2BTxxDfZxZRQbKtN prBgvBx+VSbddV58ajhpaSCZcwMIQGGpcNww0ozmAji8gfG/SxSW+YKygU4eeAnl25lT BegjP3hoWvGX7qrfTPDOWOPzRZGG4mW7eoRirif2hhWAQvQw1l/Nt0X1IrwRUhWgRHLf EMi26QuQ0qbKOoIUHB+u3lGZgQYdaWJ5Q5dT2WH/9pYJHuT9xm8oXuImFD63fCZMHmxK qsO+2EzgPlhFwHAv+m8Ka6N7KrkOdovntbhbr299BZ4hon981F4xKWVzf44AWCkU7uZj Dw== Received: from dc5-exch02.marvell.com ([199.233.59.182]) by mx0a-0016f401.pphosted.com with ESMTP id 3bc7eyj3yp-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Tue, 28 Sep 2021 21:18:38 -0700 Received: from DC5-EXCH01.marvell.com (10.69.176.38) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server (TLS) id 15.0.1497.18; Tue, 28 Sep 2021 21:18:37 -0700 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server id 15.0.1497.18 via Frontend Transport; Tue, 28 Sep 2021 21:18:37 -0700 Received: from localhost.localdomain (unknown [10.28.34.38]) by maili.marvell.com (Postfix) with ESMTP id EC3453F706B; Tue, 28 Sep 2021 21:18:34 -0700 (PDT) From: Gowrishankar Muthukrishnan To: CC: , , , Gowrishankar Muthukrishnan Date: Wed, 29 Sep 2021 09:48:31 +0530 Message-ID: X-Mailer: git-send-email 2.25.1 In-Reply-To: <20210923062619.2285556-1-gmuthukrishn@marvell.com> References: <20210923062619.2285556-1-gmuthukrishn@marvell.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-GUID: VsxJBImzSSDCAgbJ8scA3GozyDekvXED X-Proofpoint-ORIG-GUID: VsxJBImzSSDCAgbJ8scA3GozyDekvXED X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.182.1,Aquarius:18.0.790,Hydra:6.0.391,FMLib:17.0.607.475 definitions=2021-09-29_01,2021-09-28_01,2020-04-07_01 Subject: [dpdk-dev] [v5] telemetry: fix json output buffer size 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 Sender: "dev" Fix json output buffer size for an actual data length. Fixes: 52af6ccb2b39 ("telemetry: add utility functions for creating JSON") Signed-off-by: Gowrishankar Muthukrishnan --- lib/telemetry/telemetry_json.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/telemetry/telemetry_json.h b/lib/telemetry/telemetry_json.h index ad270b9b30..f02a12f5b0 100644 --- a/lib/telemetry/telemetry_json.h +++ b/lib/telemetry/telemetry_json.h @@ -9,6 +9,7 @@ #include #include #include +#include /** * @file @@ -23,13 +24,13 @@ * @internal * Copies a value into a buffer if the buffer has enough available space. * Nothing written to buffer if an overflow ocurs. - * This function is not for use for values larger than 1k. + * This function is not for use for values larger than given buffer length. */ __rte_format_printf(3, 4) static inline int __json_snprintf(char *buf, const int len, const char *format, ...) { - char tmp[1024]; + char tmp[len]; va_list ap; int ret; -- 2.25.1