[v2] examples/multi_process: fix missing SPDX headers

Message ID 20201116093337.46503-1-bruce.richardson@intel.com (mailing list archive)
State Accepted, archived
Delegated to: David Marchand
Headers
Series [v2] examples/multi_process: fix missing SPDX headers |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/Intel-compilation success Compilation OK
ci/iol-intel-Functional fail Functional Testing issues
ci/iol-intel-Performance success Performance Testing PASS
ci/iol-testing success Testing PASS
ci/iol-mellanox-Performance success Performance Testing PASS
ci/travis-robot success Travis build: passed

Commit Message

Bruce Richardson Nov. 16, 2020, 9:33 a.m. UTC
  The makefiles for some of the multi_process example files were missing
SPDX license headers, so add them. These Makefiles completely replaced
the older makefiles and were written from scratch, not based on previous
versions, so add a new copyright year on them.

Fixes: 13abe17c3cd4 ("examples/multi_process: convert to pkg-config-based build")

Suggested-by: Stephen Hemminger <stephen@networkplumber.org>
Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
---
v2: adjust copyright year to reflect year of authorship
    add more detail and fixes line to commit log.
---
 examples/multi_process/Makefile                  | 3 +++
 examples/multi_process/client_server_mp/Makefile | 3 +++
 2 files changed, 6 insertions(+)

--
2.25.1
  

Comments

David Marchand Nov. 20, 2020, 4:34 p.m. UTC | #1
On Mon, Nov 16, 2020 at 10:36 AM Bruce Richardson
<bruce.richardson@intel.com> wrote:
>
> The makefiles for some of the multi_process example files were missing
> SPDX license headers, so add them. These Makefiles completely replaced
> the older makefiles and were written from scratch, not based on previous
> versions, so add a new copyright year on them.
>
> Fixes: 13abe17c3cd4 ("examples/multi_process: convert to pkg-config-based build")
>
> Suggested-by: Stephen Hemminger <stephen@networkplumber.org>
> Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>

Applied, thanks.
  

Patch

diff --git a/examples/multi_process/Makefile b/examples/multi_process/Makefile
index f0a999745..e55204495 100644
--- a/examples/multi_process/Makefile
+++ b/examples/multi_process/Makefile
@@ -1,3 +1,6 @@ 
+# SPDX-License-Identifier: BSD-3-Clause
+# Copyright(c) 2020 Intel Corporation
+
 subdirs := client_server_mp hotplug_mp simple_mp symmetric_mp

 .PHONY: all static shared clean $(subdirs)
diff --git a/examples/multi_process/client_server_mp/Makefile b/examples/multi_process/client_server_mp/Makefile
index e8debdfd9..f4cab6313 100644
--- a/examples/multi_process/client_server_mp/Makefile
+++ b/examples/multi_process/client_server_mp/Makefile
@@ -1,3 +1,6 @@ 
+# SPDX-License-Identifier: BSD-3-Clause
+# Copyright(c) 2020 Intel Corporation
+
 subdirs := mp_client mp_server

 .PHONY: all static shared clean $(subdirs)