HomeSort by: relevance | last modified time | path
    Searched defs:negotiated (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/dev/virtio/
virtio_mmio.c 380 uint64_t device_features, negotiated; local in function:virtio_mmio_negotiate_features
418 negotiated = device_features & driver_features;
422 (uint32_t)negotiated);
425 (uint32_t)(negotiated >> 32));
443 if (negotiated & VIRTIO_F_VERSION_1) {
453 vsc->sc_active_features = negotiated;
  /src/sys/dev/pci/
virtio_pci.c 827 uint64_t host, negotiated, device_status; local in function:virtio_pci_negotiate_features_10
844 negotiated = host & guest_features;
848 negotiated & 0xffffffff);
851 negotiated >> 32);
863 if ((negotiated & VIRTIO_F_VERSION_1) == 0) {
870 sc->sc_active_features = negotiated;

Completed in 12 milliseconds