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 DDE70A0A02; Thu, 14 Jan 2021 17:04:33 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id EB082141398; Thu, 14 Jan 2021 17:04:27 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [216.205.24.124]) by mails.dpdk.org (Postfix) with ESMTP id 4B97814138E for ; Thu, 14 Jan 2021 17:04:25 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1610640264; 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: in-reply-to:in-reply-to:references:references; bh=omftmeoyifcwwClQENl6lE+tUP6fPTgnR5k0oHuyFuQ=; b=g37OvqxxNcNSRUZyKPIzbVC6OL5Kf8p4XJg0t1RyTu81wJDWSVQSwtN2A5xd0KNrN7ov3R KX1VU/8GidQDtTI81QWCrzyFINVpoErf2Kqr+YAwp9usBz44azgZfLZ+SefC4AL369+xz/ 5TfhLRRgRfrfJGc/LEvRGHgPbzRj/iU= Received: from mail-vs1-f70.google.com (mail-vs1-f70.google.com [209.85.217.70]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-441-2vdVqu31Mq6thAupnT7dsw-1; Thu, 14 Jan 2021 11:04:22 -0500 X-MC-Unique: 2vdVqu31Mq6thAupnT7dsw-1 Received: by mail-vs1-f70.google.com with SMTP id y4so936540vsl.22 for ; Thu, 14 Jan 2021 08:04:22 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=omftmeoyifcwwClQENl6lE+tUP6fPTgnR5k0oHuyFuQ=; b=DLbQ3ues9LR5OezK9oGT5c3FePm50E+vALM0at6kMiSeM02vZI9YoYE7xZXGLvZKtZ Wjn4aRIolrXHovqZW4LlGpzLO1O413ZF/IJy1Pm6hCH3YjoCR7vK4NddE3mZFVcjJRy2 l0hcS0LNOlKekTJTa54KMNCFNMTHr7WZuC5g86K+du7tuTji2k47oJFFi5dTb88R/thE AnvCAHRqFhOb2q8L/FodwpHhWd52bEGlQGV8m3PTyIPjLh7d5uTgWePasfyjpsbiXfpK hZyW5HAjlyKYxpv3Kg+APLpmQDAzeSfWjYqgizD9hIHwnz3XmmcXVwWMtnuLAh0aAT8O aQMA== X-Gm-Message-State: AOAM531mFDWF+3qSewxF43jQaMoxOSnD1kvEK9CX3YrGlOTHDiIWgYTc 06AqyE4SeCJ+lF0wsGRJwcyl/qOdzdxFBWYsXqaH4U1g/sovGwWyusHPv0TTOv2ZFrLXrb9vuEB kGFxDmQPkO/hg6DtMc3s= X-Received: by 2002:a67:87d1:: with SMTP id j200mr7536418vsd.10.1610640262381; Thu, 14 Jan 2021 08:04:22 -0800 (PST) X-Google-Smtp-Source: ABdhPJxCMHU7qiPNr05emjDv79LBGU2SWAtBZk9GhhOkyYZRQiy/0S0hMJ2bDfCHhX4Yfum+LARLnYOwfmPRNqYH+Ys= X-Received: by 2002:a67:87d1:: with SMTP id j200mr7536389vsd.10.1610640262201; Thu, 14 Jan 2021 08:04:22 -0800 (PST) MIME-Version: 1.0 References: <20210114110606.21142-1-bruce.richardson@intel.com> <20210114110606.21142-18-bruce.richardson@intel.com> In-Reply-To: <20210114110606.21142-18-bruce.richardson@intel.com> From: David Marchand Date: Thu, 14 Jan 2021 17:04:11 +0100 Message-ID: To: Bruce Richardson Cc: dev Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=dmarchan@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [PATCH 17/20] app/chkincs: add chkincs app to verify headers 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" On Thu, Jan 14, 2021 at 12:09 PM Bruce Richardson wrote: > > To verify that all DPDK headers are ok for inclusion directly in a C > file, and are not missing any other pre-requisite headers, we can > auto-generate for each header an empty C file that includes that header. > Compiling these files will throw errors if any header has unmet > dependencies. > > Signed-off-by: Bruce Richardson > --- > app/chkincs/gen_c_file_for_header.py | 49 ++++++++++++++++++++++++++++ > app/chkincs/main.c | 4 +++ > app/chkincs/meson.build | 28 ++++++++++++++++ Those are new files, so the patch is missing a MAINTAINERS update. -- David Marchand