Displaying 3 results from an estimated 3 matches for "xenver_guest_handle".
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
2012 Sep 04
2
[PATCH] valgrind: Support for ioctls used by Xen toolstack processes.
...( %ld, %lx )", ARG1, ARG2);
+
+ switch (ARG1) {
+ case XENVER_version:
+ case XENVER_extraversion:
+ case XENVER_compile_info:
+ case XENVER_capabilities:
+ case XENVER_changeset:
+ case XENVER_platform_parameters:
+ case XENVER_get_features:
+ case XENVER_pagesize:
+ case XENVER_guest_handle:
+ case XENVER_commandline:
+ /* No inputs */
+ break;
+
+ default:
+ bad_subop(tid, layout, arrghs, status, flags,
+ "__HYPERVISOR_xen_version", ARG1);
+ break;
+ }
+}
+
+PRE(grant_table_op)
+{
+ PRINT("__HYPERVISOR_grant_table_op ( %ld, 0x...
2006 Aug 11
0
[PATCH] [4/5] SMBIOS -- generate SMBIOS tables
...ed 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_extra_version);
+
+...