From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 27E57A04DB; Mon, 16 Nov 2020 10:27:17 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 9B81FC8B0; Mon, 16 Nov 2020 10:27:15 +0100 (CET) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 0D3BB323E for ; Mon, 16 Nov 2020 10:27:12 +0100 (CET) IronPort-SDR: hiOxJKIUBQO8VeN2ko3tEZ9Ht4To8RsC6lvSW9Son7B++uNLyEj/iNtaGd7ADPPTrGjIGKGDKu otYwLH4NvZlg== X-IronPort-AV: E=McAfee;i="6000,8403,9806"; a="234875317" X-IronPort-AV: E=Sophos;i="5.77,482,1596524400"; d="scan'208";a="234875317" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Nov 2020 01:27:11 -0800 IronPort-SDR: im/qFjyjkRivtZ4WAxF/y4qzWOjQP7ut6wNbTqcVtusLVQXJgGHBq3BMQngsGpeKiLOA+DA/xI wz4rxLYLtgEA== X-IronPort-AV: E=Sophos;i="5.77,482,1596524400"; d="scan'208";a="358402214" Received: from bricha3-mobl.ger.corp.intel.com ([10.251.82.79]) by fmsmga004-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-SHA; 16 Nov 2020 01:27:10 -0800 Date: Mon, 16 Nov 2020 09:27:07 +0000 From: Bruce Richardson To: Stephen Hemminger Cc: dev@dpdk.org Message-ID: <20201116092707.GB1469@bricha3-MOBL.ger.corp.intel.com> References: <20201116022347.26136-1-stephen@networkplumber.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20201116022347.26136-1-stephen@networkplumber.org> Subject: Re: [dpdk-dev] [PATCH] examples/multi_process: add missing SPDX header to Makefile 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" On Sun, Nov 15, 2020 at 06:23:47PM -0800, Stephen Hemminger wrote: > Make is still used for these examples, so add header to Makefile > > Signed-off-by: Stephen Hemminger > --- > examples/multi_process/Makefile | 3 +++ > examples/multi_process/client_server_mp/Makefile | 3 +++ > 2 files changed, 6 insertions(+) > > diff --git a/examples/multi_process/Makefile b/examples/multi_process/Makefile > index f0a999745a7d..937d00faa313 100644 > --- a/examples/multi_process/Makefile > +++ b/examples/multi_process/Makefile > @@ -1,3 +1,6 @@ > +# SPDX-License-Identifier: BSD-3-Clause > +# Copyright(c) 2010-2014 Intel Corporation > + These two Makefiles are actually completely new, replacing the older ones, so the year should probably be 2020 just (or else 2010-2020 if you want to keep connection to the older ones). This is also why the old notice disappeared, as the old file was deleted before the new was created. /Bruce