diff options
| author | Miguel Ojeda <ojeda@kernel.org> | 2026-06-08 16:14:33 +0200 |
|---|---|---|
| committer | Miguel Ojeda <ojeda@kernel.org> | 2026-06-09 04:13:22 +0200 |
| commit | 5f85604cf0877b0369dfd68cd50cf61c0f134819 (patch) | |
| tree | d4320e69cc8d4771246f5221b9cf1bf76ddf8e29 /rust | |
| parent | b437b3832874d4df88195d31b9052417674ffaed (diff) | |
| download | ath-5f85604cf0877b0369dfd68cd50cf61c0f134819.tar.gz | |
rust: zerocopy-derive: add SPDX License Identifiers
Originally, when the Rust upstream `alloc` standard library crate was
vendored, the SPDX License Identifiers were added to every file so that
the license on those was clear. The same happened with the vendoring of
`proc_macro2`, `quote` and `syn`. Please see:
commit 057b8d257107 ("rust: adapt `alloc` crate to the kernel")
commit 69942c0a8965 ("rust: syn: add SPDX License Identifiers")
commit ddfa1b279d08 ("rust: quote: add SPDX License Identifiers")
commit a9acfceb9614 ("rust: proc-macro2: add SPDX License Identifiers")
Thus do the same for the `zerocopy-derive` crate.
This makes `scripts/spdxcheck.py` pass: use parentheses like commit
06e9bfc1e57d ("ionic: make spdxcheck.py happy") did since we have two
`OR` operators in the expression (three licenses).
Finally, as requested, I filed an issue [1] with upstream about it.
Cc: Joshua Liebow-Feeser <joshlf@google.com>
Cc: Jack Wrenn <jswrenn@google.com>
Link: https://github.com/google/zerocopy/issues/3428 [1]
Link: https://patch.msgid.link/20260608141439.182634-15-ojeda@kernel.org
Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
Diffstat (limited to 'rust')
| -rw-r--r-- | rust/zerocopy-derive/derive/from_bytes.rs | 2 | ||||
| -rw-r--r-- | rust/zerocopy-derive/derive/into_bytes.rs | 2 | ||||
| -rw-r--r-- | rust/zerocopy-derive/derive/known_layout.rs | 2 | ||||
| -rw-r--r-- | rust/zerocopy-derive/derive/mod.rs | 2 | ||||
| -rw-r--r-- | rust/zerocopy-derive/derive/try_from_bytes.rs | 2 | ||||
| -rw-r--r-- | rust/zerocopy-derive/derive/unaligned.rs | 2 | ||||
| -rw-r--r-- | rust/zerocopy-derive/lib.rs | 2 | ||||
| -rw-r--r-- | rust/zerocopy-derive/repr.rs | 2 | ||||
| -rw-r--r-- | rust/zerocopy-derive/util.rs | 2 |
9 files changed, 18 insertions, 0 deletions
diff --git a/rust/zerocopy-derive/derive/from_bytes.rs b/rust/zerocopy-derive/derive/from_bytes.rs index ad8b6233fe549..d693a63b76451 100644 --- a/rust/zerocopy-derive/derive/from_bytes.rs +++ b/rust/zerocopy-derive/derive/from_bytes.rs @@ -1,3 +1,5 @@ +// SPDX-License-Identifier: (BSD-2-Clause OR Apache-2.0) OR MIT + use proc_macro2::{Span, TokenStream}; use syn::{ parse_quote, Data, DataEnum, DataStruct, DataUnion, Error, Expr, ExprLit, ExprUnary, Lit, UnOp, diff --git a/rust/zerocopy-derive/derive/into_bytes.rs b/rust/zerocopy-derive/derive/into_bytes.rs index 8c1e1009dd915..ad52a6b45d288 100644 --- a/rust/zerocopy-derive/derive/into_bytes.rs +++ b/rust/zerocopy-derive/derive/into_bytes.rs @@ -1,3 +1,5 @@ +// SPDX-License-Identifier: (BSD-2-Clause OR Apache-2.0) OR MIT + use proc_macro2::{Span, TokenStream}; use quote::quote; use syn::{Data, DataEnum, DataStruct, DataUnion, Error, Type}; diff --git a/rust/zerocopy-derive/derive/known_layout.rs b/rust/zerocopy-derive/derive/known_layout.rs index b91b4de0098cc..fddffd167c827 100644 --- a/rust/zerocopy-derive/derive/known_layout.rs +++ b/rust/zerocopy-derive/derive/known_layout.rs @@ -1,3 +1,5 @@ +// SPDX-License-Identifier: (BSD-2-Clause OR Apache-2.0) OR MIT + use proc_macro2::TokenStream; use quote::quote; use syn::{parse_quote, Data, Error, Type}; diff --git a/rust/zerocopy-derive/derive/mod.rs b/rust/zerocopy-derive/derive/mod.rs index a3d066ed2b4d7..665ba7da55a80 100644 --- a/rust/zerocopy-derive/derive/mod.rs +++ b/rust/zerocopy-derive/derive/mod.rs @@ -1,3 +1,5 @@ +// SPDX-License-Identifier: (BSD-2-Clause OR Apache-2.0) OR MIT + pub mod from_bytes; pub mod into_bytes; pub mod known_layout; diff --git a/rust/zerocopy-derive/derive/try_from_bytes.rs b/rust/zerocopy-derive/derive/try_from_bytes.rs index 4e36ab40bcf86..ce9c926d5b8e9 100644 --- a/rust/zerocopy-derive/derive/try_from_bytes.rs +++ b/rust/zerocopy-derive/derive/try_from_bytes.rs @@ -1,3 +1,5 @@ +// SPDX-License-Identifier: (BSD-2-Clause OR Apache-2.0) OR MIT + use proc_macro2::TokenStream; use quote::quote; use syn::{ diff --git a/rust/zerocopy-derive/derive/unaligned.rs b/rust/zerocopy-derive/derive/unaligned.rs index 819d84984a03c..d6dea0a11f1eb 100644 --- a/rust/zerocopy-derive/derive/unaligned.rs +++ b/rust/zerocopy-derive/derive/unaligned.rs @@ -1,3 +1,5 @@ +// SPDX-License-Identifier: (BSD-2-Clause OR Apache-2.0) OR MIT + use proc_macro2::{Span, TokenStream}; use syn::{Data, DataEnum, DataStruct, DataUnion, Error}; diff --git a/rust/zerocopy-derive/lib.rs b/rust/zerocopy-derive/lib.rs index a1d10a2ada273..c517ea7db1eb1 100644 --- a/rust/zerocopy-derive/lib.rs +++ b/rust/zerocopy-derive/lib.rs @@ -1,3 +1,5 @@ +// SPDX-License-Identifier: (BSD-2-Clause OR Apache-2.0) OR MIT + // Copyright 2019 The Fuchsia Authors // // Licensed under a BSD-style license <LICENSE-BSD>, Apache License, Version 2.0 diff --git a/rust/zerocopy-derive/repr.rs b/rust/zerocopy-derive/repr.rs index 57014b38b2da6..74fd376d9fdab 100644 --- a/rust/zerocopy-derive/repr.rs +++ b/rust/zerocopy-derive/repr.rs @@ -1,3 +1,5 @@ +// SPDX-License-Identifier: (BSD-2-Clause OR Apache-2.0) OR MIT + // Copyright 2019 The Fuchsia Authors // // Licensed under a BSD-style license <LICENSE-BSD>, Apache License, Version 2.0 diff --git a/rust/zerocopy-derive/util.rs b/rust/zerocopy-derive/util.rs index 4ec28bf95758e..5ba5228e2a44f 100644 --- a/rust/zerocopy-derive/util.rs +++ b/rust/zerocopy-derive/util.rs @@ -1,3 +1,5 @@ +// SPDX-License-Identifier: (BSD-2-Clause OR Apache-2.0) OR MIT + // Copyright 2019 The Fuchsia Authors // // Licensed under a BSD-style license <LICENSE-BSD>, Apache License, Version 2.0 |
