[client/host] share the host version with the client for diagnostics

This commit is contained in:
Geoffrey McRae
2020-05-29 14:14:31 +10:00
parent 667ab981ba
commit 553e2830bb
4 changed files with 17 additions and 9 deletions

View File

@@ -435,9 +435,10 @@ int app_main(int argc, char * argv[])
DEBUG_INFO("Max Pointer Size : %u KiB", (unsigned int)MAX_POINTER_SIZE / 1024);
DEBUG_INFO("KVMFR Version : %u", KVMFR_VERSION);
KVMFR udata = {
const KVMFR udata = {
.magic = KVMFR_MAGIC,
.version = KVMFR_VERSION
.version = KVMFR_VERSION,
.hostver = BUILD_VERSION
};
LGMP_STATUS status;