(&mut self)
| 1177 | } |
| 1178 | |
| 1179 | fn reset(&mut self) { |
| 1180 | self.common.reset(); |
| 1181 | self.set_writeback_mode(true); |
| 1182 | event!("virtio-device", "reset", "id", &self.id); |
| 1183 | } |
| 1184 | |
| 1185 | fn counters(&self) -> Option<HashMap<&'static str, Wrapping<u64>>> { |
| 1186 | let mut counters = HashMap::new(); |
nothing calls this directly
no test coverage detected