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 32DDBA00C5; Thu, 28 Jul 2022 17:26:55 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 74A9F42BB2; Thu, 28 Jul 2022 17:26:52 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mails.dpdk.org (Postfix) with ESMTP id F406942BBE for ; Thu, 28 Jul 2022 17:26:50 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1659022010; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=h0MGIu6j7vHXw8MBe+vXrVHSoQj5fBeltM1kNU6B8hs=; b=Q/II2gYeiC/yF05YJbTvqoPi/HpS73UwF8A2nTZvXfHqhkVQ5Yh6ap8A/wSNxNlaZoESeW MMPzMPyZMzaIgrZbNeZxoNUpLd2YnoiPNIN3zymig3tvdUDgEU3wD1goUy8f+GtqnLwDdy Y2KZx1mu6PxHd9FtZK+xOhU6tqr0nyw= Received: from mimecast-mx02.redhat.com (mx3-rdu2.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-518-2_iHzMnCP3O19wwZE-t9UQ-1; Thu, 28 Jul 2022 11:26:47 -0400 X-MC-Unique: 2_iHzMnCP3O19wwZE-t9UQ-1 Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.rdu2.redhat.com [10.11.54.7]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 48AB71C14488; Thu, 28 Jul 2022 15:26:47 +0000 (UTC) Received: from fchome.redhat.com (unknown [10.40.195.18]) by smtp.corp.redhat.com (Postfix) with ESMTP id 8F8B71415118; Thu, 28 Jul 2022 15:26:46 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: Thomas Monjalon Subject: [RFC v3 01/26] devtools: forbid inclusions of driver only headers Date: Thu, 28 Jul 2022 17:26:15 +0200 Message-Id: <20220728152640.547725-2-david.marchand@redhat.com> In-Reply-To: <20220728152640.547725-1-david.marchand@redhat.com> References: <20220628144643.1213026-1-david.marchand@redhat.com> <20220728152640.547725-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.85 on 10.11.54.7 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=david.marchand@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII"; x-default=true 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 Let's be good citizens and enforce not using driver only headers in our own examples. Signed-off-by: David Marchand --- devtools/checkpatches.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/devtools/checkpatches.sh b/devtools/checkpatches.sh index 1edc5810ad..0e82c01947 100755 --- a/devtools/checkpatches.sh +++ b/devtools/checkpatches.sh @@ -142,6 +142,14 @@ check_forbidden_additions() { # -f $(dirname $(readlink -f $0))/check-forbidden-tokens.awk \ "$1" || res=1 + # forbid inclusion of driver specific headers in apps and examples + awk -v FOLDERS='app examples' \ + -v EXPRESSIONS='include.*_driver\\.h include.*_pmd\\.h' \ + -v RET_ON_FAIL=1 \ + -v MESSAGE='Using driver specific headers in applications' \ + -f $(dirname $(readlink -f $0))/check-forbidden-tokens.awk \ + "$1" || res=1 + # SVG must be included with wildcard extension to allow conversion awk -v FOLDERS='doc' \ -v EXPRESSIONS='::[[:space:]]*[^[:space:]]*\\.svg' \ -- 2.36.1