Lines Matching defs:version
47 * Protocol versions. The low word is the minor version, the high word the major
48 * version.
51 * Initial version 1.0
115 __u32 version;
185 * accepts the version.
187 * dm_version: The protocol version requested.
188 * is_last_attempt: If TRUE, this is the last version guest will request.
194 union dm_version version;
201 * if the host has accepted the version sent by the guest.
203 * is_accepted: If TRUE, host has accepted the version and the guest
205 * guest should re-try with a different version.
564 * We start with the highest version we can support
566 * next version to try.
571 * The negotiated version agreed by host.
573 __u32 version;
1452 * context waiting for version
1462 * to negotiate a suitable version number
1472 version_req.version.version = dm->next_version;
1473 dm->version = version_req.version.version;
1476 * Set the next version to try in case current version fails.
1479 switch (version_req.version.version) {
1780 * a version that the host can support. We start with the
1781 * highest version number and go down if the host cannot
1788 version_req.version.version = DYNMEM_PROTOCOL_VERSION_WIN10;
1790 dm_device.version = version_req.version.version;
1805 * If we could not negotiate a compatible version with the host
1813 pr_info("Using Dynamic Memory protocol version %u.%u\n",
1814 DYNMEM_MAJOR_VERSION(dm_device.version),
1815 DYNMEM_MINOR_VERSION(dm_device.version));
1894 DYNMEM_MAJOR_VERSION(dm->version),
1895 DYNMEM_MINOR_VERSION(dm->version));