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 EF00D41DC9; Fri, 3 Mar 2023 16:58:25 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id CECD440EE3; Fri, 3 Mar 2023 16:58:25 +0100 (CET) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by mails.dpdk.org (Postfix) with ESMTP id EC5DB40ED9 for ; Fri, 3 Mar 2023 16:58:24 +0100 (CET) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.17.1.19/8.17.1.19) with ESMTP id 323EEcQt031759; Fri, 3 Mar 2023 07:58:24 -0800 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=bHcPR4ESXYu7G8FP+ArjkmZdDZICVuG0cki4cBgdM3Q=; b=OnENss0haH/oCf6KXZQpU4y2wswRkOUK2Jz+98awrx51TQmouskruz3m65/V2Eg3zCJO 3vDuUwWa17hXOPrLTdzs6HS/bz5Xer3jQgx+/9XmkSOPkhANQ9pu76DgsOX32QHOxPJR anZYrec8ib8tJOvBZRM+LmxHPfGAEwgprQMampD+SqfMtfsaeMhHAJsAWbK/dpnItLhG 7bbxi0mK0aLrk1HBhNv4piUVhVU+Sew34nLL+BL86LumWlKsq1a45yjl5WJtA3M1DpW3 Xf34QKwlEgxQTFpnYwM8GTwbnGUoQ/ABRswzkifiPpPpls4l3Dxndsf9DYnfqM0+otAr Xw== Received: from dc5-exch01.marvell.com ([199.233.59.181]) by mx0b-0016f401.pphosted.com (PPS) with ESMTPS id 3p3jbqreka-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Fri, 03 Mar 2023 07:58:23 -0800 Received: from DC5-EXCH01.marvell.com (10.69.176.38) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server (TLS) id 15.0.1497.42; Fri, 3 Mar 2023 07:58:21 -0800 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.42 via Frontend Transport; Fri, 3 Mar 2023 07:58:21 -0800 Received: from localhost.localdomain (unknown [10.28.36.185]) by maili.marvell.com (Postfix) with ESMTP id 093E93F7074; Fri, 3 Mar 2023 07:58:19 -0800 (PST) From: Ankur Dwivedi To: CC: , , Ankur Dwivedi Subject: [PATCH v4 0/2] devtools: add tracepoint check in checkpatch Date: Fri, 3 Mar 2023 21:28:09 +0530 Message-ID: <20230303155811.2751210-1-adwivedi@marvell.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20221015125826.27760-1-adwivedi@marvell.com> References: <20221015125826.27760-1-adwivedi@marvell.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-ORIG-GUID: nPAy8gavFhlIXxs0huPKc0P6c7k7KH8i X-Proofpoint-GUID: nPAy8gavFhlIXxs0huPKc0P6c7k7KH8i X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.219,Aquarius:18.0.942,Hydra:6.0.573,FMLib:17.11.170.22 definitions=2023-03-03_03,2023-03-03_01,2023-02-09_01 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 This patch series adds a validation in checkpatch tool to check if tracepoint is present in any new function added in ethdev library. The first patch in the series moves build_map_changes function from check-symbol-change.sh to a new file build-symbol-map.sh. The second patch in the series adds a new script file check-tracepoint.sh which is called from checkpatch tool. The check-tracepoint.sh contains the code to detect the presence of tracepoint in a new function added to ethdev library. v4: - Rebased on the recent next-net branch. - Refined logic to find function definition. - Updated year in the license in devtools/check-tracepoint.sh. - Removed cryptodev, added ethdev in libdir in devtools/check-tracepoint.sh. v3: - Split the v2 patch into 2 patches. - The file common-func.sh is renamed to build-symbol-map.sh. - Removed check-tracepoint.py file. - Code improvements in check-tracepoint.sh. v2: - Add check for parent directory. Ankur Dwivedi (2): devtools: move build symbol map function devtools: add tracepoint check in checkpatch devtools/build-symbol-map.sh | 78 +++++++++++++++++ devtools/check-symbol-change.sh | 76 +---------------- devtools/check-tracepoint.sh | 146 ++++++++++++++++++++++++++++++++ devtools/checkpatches.sh | 9 ++ devtools/trace-skiplist.txt | 0 5 files changed, 235 insertions(+), 74 deletions(-) create mode 100755 devtools/build-symbol-map.sh create mode 100755 devtools/check-tracepoint.sh create mode 100644 devtools/trace-skiplist.txt -- 2.25.1