mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2025-04-01 20:04:37 +00:00
vmm: EpollContext: Allow to add custom epoll events for fuzzing
Signed-off-by: Bo Chen <chen.bo@intel.com>
This commit is contained in:
parent
83ab5ea528
commit
ec94ae31ee
@ -232,6 +232,26 @@ impl EpollContext {
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
#[cfg(fuzzing)]
|
||||
pub fn add_event_custom<T>(
|
||||
&mut self,
|
||||
fd: &T,
|
||||
id: u64,
|
||||
evts: epoll::Events,
|
||||
) -> result::Result<(), io::Error>
|
||||
where
|
||||
T: AsRawFd,
|
||||
{
|
||||
epoll::ctl(
|
||||
self.epoll_file.as_raw_fd(),
|
||||
epoll::ControlOptions::EPOLL_CTL_ADD,
|
||||
fd.as_raw_fd(),
|
||||
epoll::Event::new(evts, id),
|
||||
)?;
|
||||
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
impl AsRawFd for EpollContext {
|
||||
|
Loading…
x
Reference in New Issue
Block a user