Remove tracing code for a mutex in read

This commit is contained in:
Johannes Leupolz 2026-04-15 22:25:17 +00:00
parent 9e55cd84ab
commit 919b420e43

View file

@ -29,9 +29,7 @@ pub unsafe extern "C" fn vuinput_read(
let fh = &(*_fi).fh;
let vuinput_state_mutex =
get_vuinput_state(&VuFileHandle::from_fuse_file_info(_fi.as_ref().unwrap())).unwrap();
println!("vuinput_read: lock");
let mut vuinput_state = vuinput_state_mutex.lock().unwrap();
println!("vuinput_read: locked");
const NORMAL_SIZE: usize = std::mem::size_of::<libc::input_event>();
let is_compat = vuinput_state.requesting_process.is_compat;