diff --git a/module/zcommon/zfs_fletcher_aarch64_neon.c b/module/zcommon/zfs_fletcher_aarch64_neon.c index 26f2115c44b..b6ec3da6158 100644 --- a/module/zcommon/zfs_fletcher_aarch64_neon.c +++ b/module/zcommon/zfs_fletcher_aarch64_neon.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: BSD-2-Clause OR GPL-2.0-only /* * Implement fast Fletcher4 with NEON instructions. (aarch64) * diff --git a/module/zcommon/zfs_fletcher_intel.c b/module/zcommon/zfs_fletcher_intel.c index 34590a15572..570076ba2b0 100644 --- a/module/zcommon/zfs_fletcher_intel.c +++ b/module/zcommon/zfs_fletcher_intel.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: BSD-2-Clause OR GPL-2.0-only /* * Implement fast Fletcher4 with AVX2 instructions. (x86_64) * diff --git a/module/zcommon/zfs_fletcher_sse.c b/module/zcommon/zfs_fletcher_sse.c index 8ab9b9acb83..96aaf1622d7 100644 --- a/module/zcommon/zfs_fletcher_sse.c +++ b/module/zcommon/zfs_fletcher_sse.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: BSD-2-Clause OR GPL-2.0-only /* * Implement fast Fletcher4 with SSE2,SSSE3 instructions. (x86) * diff --git a/module/zcommon/zfs_fletcher_superscalar.c b/module/zcommon/zfs_fletcher_superscalar.c index 2a80816ff3e..e0faa995e80 100644 --- a/module/zcommon/zfs_fletcher_superscalar.c +++ b/module/zcommon/zfs_fletcher_superscalar.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: BSD-2-Clause OR GPL-2.0-only /* * Implement fast Fletcher4 using superscalar pipelines. * diff --git a/module/zcommon/zfs_fletcher_superscalar4.c b/module/zcommon/zfs_fletcher_superscalar4.c index 0b52bb63d00..1cec1851ef3 100644 --- a/module/zcommon/zfs_fletcher_superscalar4.c +++ b/module/zcommon/zfs_fletcher_superscalar4.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: BSD-2-Clause OR GPL-2.0-only /* * Implement fast Fletcher4 using superscalar pipelines. *