diff options
| author | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2026-05-31 19:43:25 -0700 |
|---|---|---|
| committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2026-05-31 19:43:25 -0700 |
| commit | fff88709f9a9153af85b5224b4594caa5387ca60 (patch) | |
| tree | 48e118e6e618318fd935aa3ee29cda6c67c0be2c /rust/uapi | |
| parent | 332fbc03e1a8cb4c0ce6891cae2c286ddf031aca (diff) | |
| parent | e43ffb69e0438cddd72aaa30898b4dc446f664f8 (diff) | |
Merge tag 'v7.1-rc6' into next
Sync up with mainline to pull in a fix to IMS PCU driver and other
enhancements.
Diffstat (limited to 'rust/uapi')
| -rw-r--r-- | rust/uapi/lib.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/rust/uapi/lib.rs b/rust/uapi/lib.rs index 1d5fd9efb93e..b8a515de31ca 100644 --- a/rust/uapi/lib.rs +++ b/rust/uapi/lib.rs @@ -8,10 +8,6 @@ //! userspace APIs. #![no_std] -// See <https://github.com/rust-lang/rust-bindgen/issues/1651>. -#![cfg_attr(test, allow(deref_nullptr))] -#![cfg_attr(test, allow(unaligned_references))] -#![cfg_attr(test, allow(unsafe_op_in_unsafe_fn))] #![allow( clippy::all, clippy::cast_lossless, @@ -28,6 +24,7 @@ unsafe_op_in_unsafe_fn )] #![cfg_attr(CONFIG_RUSTC_HAS_UNNECESSARY_TRANSMUTES, allow(unnecessary_transmutes))] +#![feature(cfi_encoding)] // Manual definition of blocklisted types. type __kernel_size_t = usize; |
