Lines Matching full:version
14 * This work is licensed under the terms of the GNU GPL, version 2.
19 * Protocol versions. The low word is the minor version, the high word the major
20 * version.
23 * Initial version 1.0
32 #define DYNMEM_MAJOR_VERSION(Version) ((uint32_t)(Version) >> 16) argument
33 #define DYNMEM_MINOR_VERSION(Version) ((uint32_t)(Version) & 0xff) argument
55 * Version 0.3
71 * Version 1.0.
77 * Version 2.0
94 uint32_t version; member
163 * Version negotiation message. Sent from the guest to the host.
165 * accepts the version.
167 * dm_version: The protocol version requested.
168 * is_last_attempt: If TRUE, this is the last version guest will request.
174 union dm_version version; member
180 * Version response message; Host to Guest and indicates
181 * if the host has accepted the version sent by the guest.
183 * is_accepted: If TRUE, host has accepted the version and the guest
185 * guest should re-try with a different version.