Displaying 2 results from an estimated 2 matches for "hypercall_xen_version".
2006 Jul 12
2
[PATCH] HVM SMBIOS v2 0/5
The following patches are a cleaned up version of the HVM SMBIOS
patches I submitted last Friday.
Differences include
(1) SMBIOS is no longer optional for HVM domU''s.
(2) The refactoring I did of hvmloader wasn''t really necessary, so I
got rid of it.
(3) The patches have been tested on changeset
10671:b20580cf7fc1bfe5119597bb5b576cdd020551d5
(4) The versions of strcpy() and
2006 Aug 11
0
[PATCH] [4/5] SMBIOS -- generate SMBIOS tables
...temporary variables used to build up Xen version string */
+ char *p = NULL; /* points to next point of insertion */
+ unsigned len = 0; /* length of string already composed */
+ char *tmp = NULL; /* holds result of itoa() */
+ unsigned tmp_len; /* length of next string to add */
+
+ hypercall_xen_version(XENVER_guest_handle, uuid);
+
+ /* xen_version major and minor */
+ xen_version = hypercall_xen_version(XENVER_version, NULL);
+ xen_major_version = (uint16_t) (xen_version >> 16);
+ xen_minor_version = (uint16_t) xen_version;
+
+ hypercall_xen_version(XENVER_extraversion, xen_...