(&mut self, fs_cfg: &mut FsConfig)
| 5070 | } |
| 5071 | |
| 5072 | pub fn add_fs(&mut self, fs_cfg: &mut FsConfig) -> DeviceManagerResult<PciDeviceInfo> { |
| 5073 | self.validate_identifier(&fs_cfg.pci_common.id)?; |
| 5074 | |
| 5075 | let device = self.make_virtio_fs_device(fs_cfg)?; |
| 5076 | self.hotplug_virtio_pci_device(device) |
| 5077 | } |
| 5078 | |
| 5079 | pub fn add_generic_vhost_user( |
| 5080 | &mut self, |
nothing calls this directly
no test coverage detected