Skip to content

Commit e1ceb1d

Browse files
committed
refactor: split some logic
Signed-off-by: akitaSummer <[email protected]>
1 parent 28f93e3 commit e1ceb1d

10 files changed

+850
-716
lines changed

src/api/server/sync_io.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -143,9 +143,9 @@ impl<F: FileSystem + Sync> Server<F> {
143143
x if x == Opcode::Rename2 as u32 => self.rename2(ctx),
144144
#[cfg(target_os = "linux")]
145145
x if x == Opcode::Lseek as u32 => self.lseek(ctx),
146-
#[cfg(feature = "virtiofs")]
146+
#[cfg(all(target_os = "linux", feature = "virtiofs"))]
147147
x if x == Opcode::SetupMapping as u32 => self.setupmapping(ctx, vu_req),
148-
#[cfg(feature = "virtiofs")]
148+
#[cfg(all(target_os = "linux", feature = "virtiofs"))]
149149
x if x == Opcode::RemoveMapping as u32 => self.removemapping(ctx, vu_req),
150150
// Group reqeusts don't need reply together
151151
x => match x {

src/passthrough/file_handle.rs

+2
Original file line numberDiff line numberDiff line change
@@ -320,8 +320,10 @@ impl OpenableFileHandle {
320320
#[cfg(test)]
321321
mod tests {
322322
use super::*;
323+
#[cfg(target_os = "macos")]
323324
use nix::unistd::getuid;
324325
use std::ffi::CString;
326+
#[cfg(target_os = "macos")]
325327
use std::io::Read;
326328

327329
fn generate_c_file_handle(

src/passthrough/inode_store.rs

+3
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,9 @@ mod test {
125125
use super::super::*;
126126
use super::*;
127127

128+
#[cfg(target_os = "linux")]
128129
use std::ffi::CStr;
130+
#[cfg(target_os = "linux")]
129131
use std::mem::MaybeUninit;
130132
use std::os::unix::io::AsRawFd;
131133
use std::sync::atomic::Ordering;
@@ -134,6 +136,7 @@ mod test {
134136
#[cfg(target_os = "linux")]
135137
use vmm_sys_util::tempfile::TempFile;
136138

139+
#[cfg(target_os = "macos")]
137140
use stat::stat;
138141

139142
impl PartialEq for InodeData {

0 commit comments

Comments
 (0)