From patchwork Fri Oct 16 07:12:50 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rasesh Mody X-Patchwork-Id: 81031 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 553E8A04DB; Fri, 16 Oct 2020 09:13:09 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 321EA1EA5D; Fri, 16 Oct 2020 09:13:08 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by dpdk.org (Postfix) with ESMTP id EA4B91BED1 for ; Fri, 16 Oct 2020 09:13:05 +0200 (CEST) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.16.0.42/8.16.0.42) with SMTP id 09G7ApRX004271; Fri, 16 Oct 2020 00:13:05 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : mime-version : content-type; s=pfpt0220; bh=+qlbfhwmHLUr9Q8KWTSYhNRHFktuebXNt4J1ZD39l9E=; b=fH2SA73kZgkSER2qowrl2dnfzD6gCzQBUo/1PSKn0pKveca8fxhHMGu5AVjFnzGP8/LO 9L6RHcQg/5Dm57dvhKVfY/FFpUDlBJdDDJ6EfBFWGuMu+fDJiOyp7Ygglii4OLjGbQID GmjbcRzbYQvw3jXxmufMVrcCcnaVc7MuKM5qqp9shap8kk4YIlUVE7A9zoM0XDkfMIuc Ux+BxZIgaYh8TICrJ6/BLrUglZiR8UFjmGb6UN19uJuEhRowbQtbkCVg+1bu5WiQaAQl rGnlunu1YKUW2NSNFi1P7r0htPt2yo9C48mWG4kl/6qFd2FdSpTQhZJOBBLu2wba4M2N fg== Received: from sc-exch01.marvell.com ([199.233.58.181]) by mx0b-0016f401.pphosted.com with ESMTP id 343cfjnxhy-2 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Fri, 16 Oct 2020 00:13:05 -0700 Received: from DC5-EXCH01.marvell.com (10.69.176.38) by SC-EXCH01.marvell.com (10.93.176.81) with Microsoft SMTP Server (TLS) id 15.0.1497.2; Fri, 16 Oct 2020 00:13:04 -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.2 via Frontend Transport; Fri, 16 Oct 2020 00:13:04 -0700 Received: from irv1user08.caveonetworks.com (unknown [10.104.116.105]) by maili.marvell.com (Postfix) with ESMTP id 400413F703F; Fri, 16 Oct 2020 00:13:04 -0700 (PDT) Received: (from rmody@localhost) by irv1user08.caveonetworks.com (8.14.4/8.14.4/Submit) id 09G7D3qW027527; Fri, 16 Oct 2020 00:13:03 -0700 X-Authentication-Warning: irv1user08.caveonetworks.com: rmody set sender to rmody@marvell.com using -f From: Rasesh Mody To: , CC: , Rasesh Mody Date: Fri, 16 Oct 2020 00:12:50 -0700 Message-ID: <20201016071250.27471-1-rmody@marvell.com> X-Mailer: git-send-email 2.18.0 MIME-Version: 1.0 X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.235, 18.0.687 definitions=2020-10-16_02:2020-10-16, 2020-10-16 signatures=0 Subject: [dpdk-dev] [PATCH] devtools: increase column width to 100 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" In line with Linux, increase the default column width from 80 to 100 characters for patch line length check. Linux upstream commit reference bdc48fa11e46f867ea4d75fa59ee87a7f48be144 Signed-off-by: Rasesh Mody --- devtools/checkpatches.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devtools/checkpatches.sh b/devtools/checkpatches.sh index 78a408ef9..4fbd6fd45 100755 --- a/devtools/checkpatches.sh +++ b/devtools/checkpatches.sh @@ -15,7 +15,7 @@ VALIDATE_NEW_API=$(dirname $(readlink -f $0))/check-symbol-change.sh # Codespell can also be enabled by setting DPDK_CHECKPATCH_CODESPELL to a valid path # to a dictionary.txt file if dictionary.txt is not in the default location. codespell=${DPDK_CHECKPATCH_CODESPELL:-enable} -length=${DPDK_CHECKPATCH_LINE_LENGTH:-80} +length=${DPDK_CHECKPATCH_LINE_LENGTH:-100} # override default Linux options options="--no-tree"