Lines Matching defs:negotiated
786 * Prints available / negotiated features if guest_feature_names != NULL and
794 uint64_t host, negotiated;
829 negotiated = host & vsc->sc_driver_features;
832 virtio_log_features(host, negotiated, guest_feature_names);
835 VIRTIO_CONFIG_GUEST_FEATURES, negotiated);
836 vsc->sc_active_features = negotiated;
837 if (negotiated & VIRTIO_F_RING_INDIRECT_DESC)
849 uint64_t host, negotiated;
864 negotiated = host & vsc->sc_driver_features;
867 virtio_log_features(host, negotiated, guest_feature_names);
870 CWRITE(sc, driver_feature, negotiated & 0xffffffff);
872 CWRITE(sc, driver_feature, negotiated >> 32);
882 vsc->sc_active_features = negotiated;
884 if (negotiated & VIRTIO_F_RING_INDIRECT_DESC)
889 if ((negotiated & VIRTIO_F_VERSION_1) == 0) {