Home
last modified time | relevance | path

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

/DragonOS-0.1.8/kernel/src/driver/virtio/
Dtransport_pci.rs108 let mut notify_cfg: Option<VirtioCapabilityInfo> = None; in new() localVariable
141 VIRTIO_PCI_CAP_NOTIFY_CFG if cap_len >= 20 && notify_cfg.is_none() => { in new()
142 notify_cfg = Some(struct_info); in new()
163 let notify_cfg = notify_cfg.ok_or(VirtioPciError::MissingNotifyConfig)?; in new() localVariable
170 let notify_region = get_bar_region_slice::<_>(&device.standard_device_bar, &notify_cfg)?; in new()