mirror of
https://github.com/torvalds/linux.git
synced 2026-05-12 16:18:45 +02:00
`clippy::incompatible_msrv` is not buying us much, and we discussed allowing it several times in the past. For instance, there was recently another patch sent to `allow` it where needed [1]. While that particular case would not be needed after the minimum version bump to 1.85.0, it is simpler to just allow it to prevent future instances. [ In addition, the lint fired without taking into account the features that have been enabled in a crate [2]. While this was improved in Rust 1.90.0 [3], it would still fire in a case like this patch. ] Thus do so, and remove the last instance of locally allowing it we have in the tree (except the one in the vendored `proc_macro2` crate). Note that we still keep the `msrv` config option in `clippy.toml` since that affects other lints as well. Link: https://lore.kernel.org/rust-for-linux/20260404212831.78971-4-jhubbard@nvidia.com/ [1] Link: https://github.com/rust-lang/rust-clippy/issues/14425 [2] Link: https://github.com/rust-lang/rust-clippy/pull/14433 [3] Link: https://patch.msgid.link/20260405235309.418950-8-ojeda@kernel.org Reviewed-by: Gary Guo <gary@garyguo.net> Reviewed-by: Tamir Duberstein <tamird@kernel.org> Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
61 lines
1.3 KiB
Rust
61 lines
1.3 KiB
Rust
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
use proc_macro2::TokenStream;
|
|
use quote::ToTokens;
|
|
use syn::{
|
|
parse::{
|
|
Parse,
|
|
ParseStream, //
|
|
},
|
|
Attribute,
|
|
Error,
|
|
LitStr,
|
|
Result, //
|
|
};
|
|
|
|
/// A string literal that is required to have ASCII value only.
|
|
pub(crate) struct AsciiLitStr(LitStr);
|
|
|
|
impl Parse for AsciiLitStr {
|
|
fn parse(input: ParseStream<'_>) -> Result<Self> {
|
|
let s: LitStr = input.parse()?;
|
|
if !s.value().is_ascii() {
|
|
return Err(Error::new_spanned(s, "expected ASCII-only string literal"));
|
|
}
|
|
Ok(Self(s))
|
|
}
|
|
}
|
|
|
|
impl ToTokens for AsciiLitStr {
|
|
fn to_tokens(&self, ts: &mut TokenStream) {
|
|
self.0.to_tokens(ts);
|
|
}
|
|
}
|
|
|
|
impl AsciiLitStr {
|
|
pub(crate) fn value(&self) -> String {
|
|
self.0.value()
|
|
}
|
|
}
|
|
|
|
pub(crate) fn file() -> String {
|
|
#[cfg(not(CONFIG_RUSTC_HAS_SPAN_FILE))]
|
|
{
|
|
proc_macro::Span::call_site()
|
|
.source_file()
|
|
.path()
|
|
.to_string_lossy()
|
|
.into_owned()
|
|
}
|
|
|
|
#[cfg(CONFIG_RUSTC_HAS_SPAN_FILE)]
|
|
{
|
|
proc_macro::Span::call_site().file()
|
|
}
|
|
}
|
|
|
|
/// Obtain all `#[cfg]` attributes.
|
|
pub(crate) fn gather_cfg_attrs(attr: &[Attribute]) -> impl Iterator<Item = &Attribute> + '_ {
|
|
attr.iter().filter(|a| a.path().is_ident("cfg"))
|
|
}
|