MCPcopy Index your code
hub / github.com/cloud-hypervisor/cloud-hypervisor / msix_write_table

Method msix_write_table

pci/src/vfio.rs:246–251  ·  view source on GitHub ↗
(&mut self, offset: u64, data: &[u8])

Source from the content-addressed store, hash-verified

244 }
245
246 fn msix_write_table(&mut self, offset: u64, data: &[u8]) {
247 if let Some(msix) = &mut self.msix {
248 let offset = offset - u64::from(msix.cap.table_offset());
249 msix.bar.write_table(offset, data);
250 }
251 }
252
253 fn msix_read_table(&self, offset: u64, data: &mut [u8]) {
254 if let Some(msix) = &self.msix {

Callers 1

write_barMethod · 0.80

Calls 2

table_offsetMethod · 0.80
write_tableMethod · 0.80

Tested by

no test coverage detected