Home
last modified time | relevance | path

Searched refs:notify_cfg (Results 1 – 1 of 1) sorted by relevance

/DragonOS/kernel/src/driver/virtio/
H A Dtransport_pci.rs133 let mut notify_cfg: Option<VirtioCapabilityInfo> = None; in new() localVariable
187 VIRTIO_PCI_CAP_NOTIFY_CFG if cap_len >= 20 && notify_cfg.is_none() => { in new()
188 notify_cfg = Some(struct_info); in new()
209 let notify_cfg = notify_cfg.ok_or(VirtioPciError::MissingNotifyConfig)?; in new() localVariable
216 let notify_region = get_bar_region_slice::<_>(&device.standard_device_bar, &notify_cfg)?; in new()