Skip to content

Commit 27c7518

Browse files
committed
rust: finish using custom FFI integer types
In the last kernel cycle we migrated most of the `core::ffi` cases in commit d072acd ("rust: use custom FFI integer types"): Currently FFI integer types are defined in libcore. This commit creates the `ffi` crate and asks bindgen to use that crate for FFI integer types instead of `core::ffi`. This commit is preparatory and no type changes are made in this commit yet. Finish now the few remaining/new cases so that we perform the actual remapping in the next commit as planned. Acked-by: Jocelyn Falempe <[email protected]> # drm Link: https://lore.kernel.org/rust-for-linux/CANiq72m_rg42SvZK=bF2f0yEoBLVA33UBhiAsv8THhVu=G2dPA@mail.gmail.com/ Link: https://lore.kernel.org/all/[email protected]/ Signed-off-by: Miguel Ojeda <[email protected]>
1 parent 78d4f34 commit 27c7518

File tree

6 files changed

+8
-12
lines changed

6 files changed

+8
-12
lines changed

drivers/gpu/drm/drm_panic_qr.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -931,7 +931,7 @@ impl QrImage<'_> {
931931
/// They must remain valid for the duration of the function call.
932932
#[no_mangle]
933933
pub unsafe extern "C" fn drm_panic_qr_generate(
934-
url: *const i8,
934+
url: *const kernel::ffi::c_char,
935935
data: *mut u8,
936936
data_len: usize,
937937
data_size: usize,

rust/kernel/device.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -173,10 +173,10 @@ impl Device {
173173
#[cfg(CONFIG_PRINTK)]
174174
unsafe {
175175
bindings::_dev_printk(
176-
klevel as *const _ as *const core::ffi::c_char,
176+
klevel as *const _ as *const crate::ffi::c_char,
177177
self.as_raw(),
178178
c_str!("%pA").as_char_ptr(),
179-
&msg as *const _ as *const core::ffi::c_void,
179+
&msg as *const _ as *const crate::ffi::c_void,
180180
)
181181
};
182182
}

rust/kernel/miscdevice.rs

+2-6
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,12 @@
1111
use crate::{
1212
bindings,
1313
error::{to_result, Error, Result, VTABLE_DEFAULT_ERROR},
14+
ffi::{c_int, c_long, c_uint, c_ulong},
1415
prelude::*,
1516
str::CStr,
1617
types::{ForeignOwnable, Opaque},
1718
};
18-
use core::{
19-
ffi::{c_int, c_long, c_uint, c_ulong},
20-
marker::PhantomData,
21-
mem::MaybeUninit,
22-
pin::Pin,
23-
};
19+
use core::{marker::PhantomData, mem::MaybeUninit, pin::Pin};
2420

2521
/// Options for creating a misc device.
2622
#[derive(Copy, Clone)]

rust/kernel/security.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ use crate::{
1919
/// successful call to `security_secid_to_secctx`, that has not yet been destroyed by calling
2020
/// `security_release_secctx`.
2121
pub struct SecurityCtx {
22-
secdata: *mut core::ffi::c_char,
22+
secdata: *mut crate::ffi::c_char,
2323
seclen: usize,
2424
}
2525

rust/kernel/seq_file.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ impl SeqFile {
3636
bindings::seq_printf(
3737
self.inner.get(),
3838
c_str!("%pA").as_char_ptr(),
39-
&args as *const _ as *const core::ffi::c_void,
39+
&args as *const _ as *const crate::ffi::c_void,
4040
);
4141
}
4242
}

samples/rust/rust_print_main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ impl Drop for RustPrint {
8383
}
8484

8585
mod trace {
86-
use core::ffi::c_int;
86+
use kernel::ffi::c_int;
8787

8888
kernel::declare_trace! {
8989
/// # Safety

0 commit comments

Comments
 (0)