Displaying 2 results from an estimated 2 matches for "qxl_".
Did you mean:
qxl
2013 Sep 24
7
Qxl problem with xen domU, is xen spice and/or qemu bugs?
I''ve been trying to have all spice features working on xen domUs since
the end of 2011.
Basic functions were already working. Adding qemu parameters manually
for vdagent and usbredirection was and is also working (I made the
patches to support them directly on xl).
Qxl was never working: one bug on xen and one on qemu about qxl are
fixed, the other xen bug found months ago on the
2012 May 30
1
[PATCH QXL 2/2] libxl: Add qxl vga interface support.
...t32_t mask;
+
+ fprintf(stdout, "%s:val: %u\n", __func__, val);
+ do {
+ mask = ~(val - 1) & val;
+ val &= ~mask;
+ } while (mask < val);
+
+ fprintf(stdout, "%s:mask: %u\n", __func__, mask);
+ return mask;
+}
+
+static inline uint32_t get_qxl_ram_size(uint32_t vram_sizekb,
+ uint32_t ram_sizekb)
+{
+ uint32_t vram = msb_mask(2 * vram_sizekb * 1024 - 1);
+ uint32_t ram = msb_mask(2 * ram_sizekb * 1024 - 1);
+
+ return (vram + ram + 1023) / 1024;
}
static void parse_config_data(const char *con...