(&mut self, offset: u64, data: &[u8])
| 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 { |
no test coverage detected