From c404ffb44666b56772653eba5737b04572dbd969 Mon Sep 17 00:00:00 2001 From: Rob Norris Date: Sat, 4 Jan 2025 19:40:45 +1100 Subject: [PATCH] SPDX: license tags: Apache-2.0 Sponsored-by: https://despairlabs.com/sponsor/ Signed-off-by: Rob Norris Reviewed-by: Tony Hutter Reviewed-by: Brian Behlendorf --- contrib/pyzfs/libzfs_core/__init__.py | 1 + contrib/pyzfs/libzfs_core/_constants.py | 1 + contrib/pyzfs/libzfs_core/_error_translation.py | 1 + contrib/pyzfs/libzfs_core/_libzfs_core.py | 1 + contrib/pyzfs/libzfs_core/_nvlist.py | 1 + contrib/pyzfs/libzfs_core/bindings/__init__.py | 1 + contrib/pyzfs/libzfs_core/bindings/libnvpair.py | 1 + contrib/pyzfs/libzfs_core/bindings/libzfs_core.py | 1 + contrib/pyzfs/libzfs_core/ctypes.py | 1 + contrib/pyzfs/libzfs_core/exceptions.py | 1 + contrib/pyzfs/libzfs_core/test/test_libzfs_core.py | 1 + contrib/pyzfs/libzfs_core/test/test_nvlist.py | 1 + module/icp/asm-aarch64/sha2/sha256-armv8.S | 1 + module/icp/asm-aarch64/sha2/sha512-armv8.S | 1 + module/icp/asm-arm/sha2/sha256-armv7.S | 1 + module/icp/asm-arm/sha2/sha512-armv7.S | 1 + module/icp/asm-ppc64/sha2/sha256-p8.S | 1 + module/icp/asm-ppc64/sha2/sha256-ppc.S | 1 + module/icp/asm-ppc64/sha2/sha512-p8.S | 1 + module/icp/asm-ppc64/sha2/sha512-ppc.S | 1 + module/icp/asm-x86_64/modes/aesni-gcm-x86_64.S | 1 + module/icp/asm-x86_64/modes/ghash-x86_64.S | 1 + module/icp/asm-x86_64/sha2/sha256-x86_64.S | 1 + module/icp/asm-x86_64/sha2/sha512-x86_64.S | 1 + 24 files changed, 24 insertions(+) diff --git a/contrib/pyzfs/libzfs_core/__init__.py b/contrib/pyzfs/libzfs_core/__init__.py index a80f94b524e..13b50ca4329 100644 --- a/contrib/pyzfs/libzfs_core/__init__.py +++ b/contrib/pyzfs/libzfs_core/__init__.py @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: Apache-2.0 # # Copyright 2015 ClusterHQ # diff --git a/contrib/pyzfs/libzfs_core/_constants.py b/contrib/pyzfs/libzfs_core/_constants.py index 9c40ece1a7d..95c9a673828 100644 --- a/contrib/pyzfs/libzfs_core/_constants.py +++ b/contrib/pyzfs/libzfs_core/_constants.py @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: Apache-2.0 # # Copyright 2015 ClusterHQ # diff --git a/contrib/pyzfs/libzfs_core/_error_translation.py b/contrib/pyzfs/libzfs_core/_error_translation.py index 3d1a2d573e3..d5491a3245c 100644 --- a/contrib/pyzfs/libzfs_core/_error_translation.py +++ b/contrib/pyzfs/libzfs_core/_error_translation.py @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: Apache-2.0 # # Copyright 2015 ClusterHQ # diff --git a/contrib/pyzfs/libzfs_core/_libzfs_core.py b/contrib/pyzfs/libzfs_core/_libzfs_core.py index fa74ad9a760..0ebf99be67c 100644 --- a/contrib/pyzfs/libzfs_core/_libzfs_core.py +++ b/contrib/pyzfs/libzfs_core/_libzfs_core.py @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: Apache-2.0 # # Copyright 2015 ClusterHQ # diff --git a/contrib/pyzfs/libzfs_core/_nvlist.py b/contrib/pyzfs/libzfs_core/_nvlist.py index dc6d820bdea..6bea0cedde4 100644 --- a/contrib/pyzfs/libzfs_core/_nvlist.py +++ b/contrib/pyzfs/libzfs_core/_nvlist.py @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: Apache-2.0 # # Copyright 2015 ClusterHQ # diff --git a/contrib/pyzfs/libzfs_core/bindings/__init__.py b/contrib/pyzfs/libzfs_core/bindings/__init__.py index 4bdd9ea3115..507788e103c 100644 --- a/contrib/pyzfs/libzfs_core/bindings/__init__.py +++ b/contrib/pyzfs/libzfs_core/bindings/__init__.py @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: Apache-2.0 # # Copyright 2015 ClusterHQ # diff --git a/contrib/pyzfs/libzfs_core/bindings/libnvpair.py b/contrib/pyzfs/libzfs_core/bindings/libnvpair.py index 54a80590723..e2edaf9ad1c 100644 --- a/contrib/pyzfs/libzfs_core/bindings/libnvpair.py +++ b/contrib/pyzfs/libzfs_core/bindings/libnvpair.py @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: Apache-2.0 # # Copyright 2015 ClusterHQ # diff --git a/contrib/pyzfs/libzfs_core/bindings/libzfs_core.py b/contrib/pyzfs/libzfs_core/bindings/libzfs_core.py index bcb9ed379e2..ca752f65413 100644 --- a/contrib/pyzfs/libzfs_core/bindings/libzfs_core.py +++ b/contrib/pyzfs/libzfs_core/bindings/libzfs_core.py @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: Apache-2.0 # # Copyright 2015 ClusterHQ # diff --git a/contrib/pyzfs/libzfs_core/ctypes.py b/contrib/pyzfs/libzfs_core/ctypes.py index d337f46ed64..bbb3790f32d 100644 --- a/contrib/pyzfs/libzfs_core/ctypes.py +++ b/contrib/pyzfs/libzfs_core/ctypes.py @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: Apache-2.0 # # Copyright 2015 ClusterHQ # diff --git a/contrib/pyzfs/libzfs_core/exceptions.py b/contrib/pyzfs/libzfs_core/exceptions.py index ba8f7e49093..b26a37f5de1 100644 --- a/contrib/pyzfs/libzfs_core/exceptions.py +++ b/contrib/pyzfs/libzfs_core/exceptions.py @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: Apache-2.0 # # Copyright 2015 ClusterHQ # diff --git a/contrib/pyzfs/libzfs_core/test/test_libzfs_core.py b/contrib/pyzfs/libzfs_core/test/test_libzfs_core.py index c94ae6de6bb..971aa1d0d49 100644 --- a/contrib/pyzfs/libzfs_core/test/test_libzfs_core.py +++ b/contrib/pyzfs/libzfs_core/test/test_libzfs_core.py @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: Apache-2.0 # # Copyright 2015 ClusterHQ # diff --git a/contrib/pyzfs/libzfs_core/test/test_nvlist.py b/contrib/pyzfs/libzfs_core/test/test_nvlist.py index c3c61142da5..cdddc23f2be 100644 --- a/contrib/pyzfs/libzfs_core/test/test_nvlist.py +++ b/contrib/pyzfs/libzfs_core/test/test_nvlist.py @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: Apache-2.0 # # Copyright 2015 ClusterHQ # diff --git a/module/icp/asm-aarch64/sha2/sha256-armv8.S b/module/icp/asm-aarch64/sha2/sha256-armv8.S index 4dcdd3b65d0..9298f13ba26 100644 --- a/module/icp/asm-aarch64/sha2/sha256-armv8.S +++ b/module/icp/asm-aarch64/sha2/sha256-armv8.S @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: Apache-2.0 /* * Copyright 2004-2022 The OpenSSL Project Authors. All Rights Reserved. * diff --git a/module/icp/asm-aarch64/sha2/sha512-armv8.S b/module/icp/asm-aarch64/sha2/sha512-armv8.S index f6c8f774291..fbc075be142 100644 --- a/module/icp/asm-aarch64/sha2/sha512-armv8.S +++ b/module/icp/asm-aarch64/sha2/sha512-armv8.S @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: Apache-2.0 /* * Copyright 2004-2022 The OpenSSL Project Authors. All Rights Reserved. * diff --git a/module/icp/asm-arm/sha2/sha256-armv7.S b/module/icp/asm-arm/sha2/sha256-armv7.S index 3ae66626df3..30b1701df05 100644 --- a/module/icp/asm-arm/sha2/sha256-armv7.S +++ b/module/icp/asm-arm/sha2/sha256-armv7.S @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: Apache-2.0 /* * Copyright 2004-2022 The OpenSSL Project Authors. All Rights Reserved. * diff --git a/module/icp/asm-arm/sha2/sha512-armv7.S b/module/icp/asm-arm/sha2/sha512-armv7.S index 66d7dd3cf0f..f9fdb6f33a4 100644 --- a/module/icp/asm-arm/sha2/sha512-armv7.S +++ b/module/icp/asm-arm/sha2/sha512-armv7.S @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: Apache-2.0 /* * Copyright 2004-2022 The OpenSSL Project Authors. All Rights Reserved. * diff --git a/module/icp/asm-ppc64/sha2/sha256-p8.S b/module/icp/asm-ppc64/sha2/sha256-p8.S index dc3c4cea669..988cf0cbbba 100644 --- a/module/icp/asm-ppc64/sha2/sha256-p8.S +++ b/module/icp/asm-ppc64/sha2/sha256-p8.S @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: Apache-2.0 /* * Copyright 2004-2022 The OpenSSL Project Authors. All Rights Reserved. * diff --git a/module/icp/asm-ppc64/sha2/sha256-ppc.S b/module/icp/asm-ppc64/sha2/sha256-ppc.S index d039bc36ee1..60afe40d4f4 100644 --- a/module/icp/asm-ppc64/sha2/sha256-ppc.S +++ b/module/icp/asm-ppc64/sha2/sha256-ppc.S @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: Apache-2.0 /* * Copyright 2004-2022 The OpenSSL Project Authors. All Rights Reserved. * diff --git a/module/icp/asm-ppc64/sha2/sha512-p8.S b/module/icp/asm-ppc64/sha2/sha512-p8.S index 2409c53385d..e8d73e6a5e5 100644 --- a/module/icp/asm-ppc64/sha2/sha512-p8.S +++ b/module/icp/asm-ppc64/sha2/sha512-p8.S @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: Apache-2.0 /* * Copyright 2004-2022 The OpenSSL Project Authors. All Rights Reserved. * diff --git a/module/icp/asm-ppc64/sha2/sha512-ppc.S b/module/icp/asm-ppc64/sha2/sha512-ppc.S index 57213f68abc..12af06792cc 100644 --- a/module/icp/asm-ppc64/sha2/sha512-ppc.S +++ b/module/icp/asm-ppc64/sha2/sha512-ppc.S @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: Apache-2.0 /* * Copyright 2004-2022 The OpenSSL Project Authors. All Rights Reserved. * diff --git a/module/icp/asm-x86_64/modes/aesni-gcm-x86_64.S b/module/icp/asm-x86_64/modes/aesni-gcm-x86_64.S index 909b2147dff..6ff3490d391 100644 --- a/module/icp/asm-x86_64/modes/aesni-gcm-x86_64.S +++ b/module/icp/asm-x86_64/modes/aesni-gcm-x86_64.S @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: Apache-2.0 # Copyright 2013-2016 The OpenSSL Project Authors. All Rights Reserved. # # Licensed under the Apache License 2.0 (the "License"). You may not use diff --git a/module/icp/asm-x86_64/modes/ghash-x86_64.S b/module/icp/asm-x86_64/modes/ghash-x86_64.S index f62e056d4b6..319caa4e190 100644 --- a/module/icp/asm-x86_64/modes/ghash-x86_64.S +++ b/module/icp/asm-x86_64/modes/ghash-x86_64.S @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: Apache-2.0 # Copyright 2010-2016 The OpenSSL Project Authors. All Rights Reserved. # # Licensed under the Apache License 2.0 (the "License"). You may not use diff --git a/module/icp/asm-x86_64/sha2/sha256-x86_64.S b/module/icp/asm-x86_64/sha2/sha256-x86_64.S index d3e5e3f0d08..f19f7b47154 100644 --- a/module/icp/asm-x86_64/sha2/sha256-x86_64.S +++ b/module/icp/asm-x86_64/sha2/sha256-x86_64.S @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: Apache-2.0 /* * Copyright 2004-2022 The OpenSSL Project Authors. All Rights Reserved. * diff --git a/module/icp/asm-x86_64/sha2/sha512-x86_64.S b/module/icp/asm-x86_64/sha2/sha512-x86_64.S index fbbcca650d1..a5111d50108 100644 --- a/module/icp/asm-x86_64/sha2/sha512-x86_64.S +++ b/module/icp/asm-x86_64/sha2/sha512-x86_64.S @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: Apache-2.0 /* * Copyright 2004-2022 The OpenSSL Project Authors. All Rights Reserved. *