Skip to content

Commit 50b41c7

Browse files
committed
Fix nightly compiler complaints about size_of
Signed-off-by: Alex Saveau <[email protected]>
1 parent a4b65d0 commit 50b41c7

File tree

4 files changed

+16
-11
lines changed

4 files changed

+16
-11
lines changed

src/lib.rs

+5-4
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,10 @@ mod sys;
1515
pub mod types;
1616

1717
use std::marker::PhantomData;
18+
use std::mem::size_of;
1819
use std::mem::ManuallyDrop;
1920
use std::os::unix::io::{AsRawFd, FromRawFd, RawFd};
20-
use std::{cmp, io, mem};
21+
use std::{cmp, io};
2122

2223
#[cfg(feature = "io_safety")]
2324
use std::os::unix::io::{AsFd, BorrowedFd};
@@ -135,9 +136,9 @@ impl<S: squeue::EntryMarker, C: cqueue::EntryMarker> IoUring<S, C> {
135136
fd: &OwnedFd,
136137
p: &sys::io_uring_params,
137138
) -> io::Result<(MemoryMap, squeue::Inner<S>, cqueue::Inner<C>)> {
138-
let sq_len = p.sq_off.array as usize + p.sq_entries as usize * mem::size_of::<u32>();
139-
let cq_len = p.cq_off.cqes as usize + p.cq_entries as usize * mem::size_of::<C>();
140-
let sqe_len = p.sq_entries as usize * mem::size_of::<S>();
139+
let sq_len = p.sq_off.array as usize + p.sq_entries as usize * size_of::<u32>();
140+
let cq_len = p.cq_off.cqes as usize + p.cq_entries as usize * size_of::<C>();
141+
let sqe_len = p.sq_entries as usize * size_of::<S>();
141142
let sqe_mmap = Mmap::new(fd, sys::IORING_OFF_SQES as _, sqe_len)?;
142143

143144
if p.features & sys::IORING_FEAT_SINGLE_MMAP != 0 {

src/opcode.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
use std::convert::TryInto;
66
use std::mem;
7+
use std::mem::size_of;
78
use std::os::unix::io::RawFd;
89

910
use crate::squeue::Entry;
@@ -1106,7 +1107,7 @@ opcode! {
11061107
sqe.opcode = Self::CODE;
11071108
sqe.fd = dirfd;
11081109
sqe.__bindgen_anon_2.addr = pathname as _;
1109-
sqe.len = mem::size_of::<sys::open_how>() as _;
1110+
sqe.len = size_of::<sys::open_how>() as _;
11101111
sqe.__bindgen_anon_1.off = how as _;
11111112
if let Some(dest) = file_index {
11121113
sqe.__bindgen_anon_5.file_index = dest.kernel_index_arg();

src/submit.rs

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1+
use std::mem::size_of;
12
use std::os::unix::io::{AsRawFd, RawFd};
23
use std::sync::atomic;
3-
use std::{io, mem, ptr};
4+
use std::{io, ptr};
45

56
use crate::register::{execute, Probe};
67
use crate::sys;
@@ -91,7 +92,7 @@ impl<'a> Submitter<'a> {
9192
let arg = arg
9293
.map(|arg| cast_ptr(arg).cast())
9394
.unwrap_or_else(ptr::null);
94-
let size = mem::size_of::<T>();
95+
let size = size_of::<T>();
9596
sys::io_uring_enter(
9697
self.fd.as_raw_fd(),
9798
to_submit,
@@ -210,7 +211,7 @@ impl<'a> Submitter<'a> {
210211
self.fd.as_raw_fd(),
211212
sys::IORING_REGISTER_FILES2,
212213
cast_ptr::<sys::io_uring_rsrc_register>(&rr).cast(),
213-
mem::size_of::<sys::io_uring_rsrc_register>() as _,
214+
size_of::<sys::io_uring_rsrc_register>() as _,
214215
)
215216
.map(drop)
216217
}
@@ -411,7 +412,7 @@ impl<'a> Submitter<'a> {
411412
self.fd.as_raw_fd(),
412413
sys::IORING_REGISTER_IOWQ_AFF,
413414
cpu_set as *const _ as *const libc::c_void,
414-
mem::size_of::<libc::cpu_set_t>() as u32,
415+
size_of::<libc::cpu_set_t>() as u32,
415416
)
416417
.map(drop)
417418
}

src/types.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
//! Common Linux types not provided by libc.
22
3+
use std::mem::size_of;
4+
35
pub(crate) mod sealed {
46
use super::{Fd, Fixed};
57
use std::os::unix::io::RawFd;
@@ -250,7 +252,7 @@ impl<'prev, 'now> SubmitArgs<'prev, 'now> {
250252
#[inline]
251253
pub fn sigmask<'new>(mut self, sigmask: &'new libc::sigset_t) -> SubmitArgs<'now, 'new> {
252254
self.args.sigmask = cast_ptr(sigmask) as _;
253-
self.args.sigmask_sz = std::mem::size_of::<libc::sigset_t>() as _;
255+
self.args.sigmask_sz = size_of::<libc::sigset_t>() as _;
254256

255257
SubmitArgs {
256258
args: self.args,
@@ -385,7 +387,7 @@ pub struct RecvMsgOut<'buf> {
385387
}
386388

387389
impl<'buf> RecvMsgOut<'buf> {
388-
const DATA_START: usize = std::mem::size_of::<sys::io_uring_recvmsg_out>();
390+
const DATA_START: usize = size_of::<sys::io_uring_recvmsg_out>();
389391

390392
/// Parse the data buffered upon completion of a `RecvMsg` multishot operation.
391393
///

0 commit comments

Comments
 (0)