forked from pool/libvirt
Accepting request 578845 from home:jfehlig:branches:Virtualization
- libxl: add support for specifying clock offset and adjustment c391e07e-libxl-clock-settings.patch bsc#1082161 OBS-URL: https://build.opensuse.org/request/show/578845 OBS-URL: https://build.opensuse.org/package/show/Virtualization/libvirt?expand=0&rev=670
This commit is contained in:
parent
3b296fe76b
commit
8f664b6238
284
c391e07e-libxl-clock-settings.patch
Normal file
284
c391e07e-libxl-clock-settings.patch
Normal file
@ -0,0 +1,284 @@
|
|||||||
|
commit c391e07eb08d713474ae8998cfd859e1827a4b2d
|
||||||
|
Author: Jim Fehlig <jfehlig@suse.com>
|
||||||
|
Date: Tue Feb 20 16:51:27 2018 -0700
|
||||||
|
|
||||||
|
libxl: add support for specifying clock offset and adjustment
|
||||||
|
|
||||||
|
libxl supports setting the domain real time clock to local time or
|
||||||
|
UTC via the localtime field of libxl_domain_build_info. Adjustment
|
||||||
|
of the clock is also supported via the rtc_timeoffset field. The
|
||||||
|
libvirt libxl driver has never supported these settings, instead
|
||||||
|
relying on libxl's default of a UTC real time clock with adjustment
|
||||||
|
set to 0.
|
||||||
|
|
||||||
|
There is at least one user that would like the ability to change
|
||||||
|
the defaults
|
||||||
|
|
||||||
|
https://www.redhat.com/archives/libvirt-users/2018-February/msg00059.html
|
||||||
|
|
||||||
|
Add support for specifying a local time clock and for specifying an
|
||||||
|
adjustment for both local time and UTC clocks. Add a test case to
|
||||||
|
verify the XML to libxl_domain_config conversion.
|
||||||
|
|
||||||
|
Local time clock and clock adjustment is already supported by the
|
||||||
|
XML <-> xl.cfg converter. What is missing is an explicit test for
|
||||||
|
the conversion. There are plenty of existing tests that all use UTC
|
||||||
|
with 0 adjustment. Hijack test-fullvirt-tsc-timer to test a local
|
||||||
|
time clock with 1 hour adjustment.
|
||||||
|
|
||||||
|
Signed-off-by: Jim Fehlig <jfehlig@suse.com>
|
||||||
|
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
|
||||||
|
|
||||||
|
Index: libvirt-4.0.0/src/libxl/libxl_conf.c
|
||||||
|
===================================================================
|
||||||
|
--- libvirt-4.0.0.orig/src/libxl/libxl_conf.c
|
||||||
|
+++ libvirt-4.0.0/src/libxl/libxl_conf.c
|
||||||
|
@@ -274,6 +274,7 @@ libxlMakeDomBuildInfo(virDomainDefPtr de
|
||||||
|
virCapsPtr caps,
|
||||||
|
libxl_domain_config *d_config)
|
||||||
|
{
|
||||||
|
+ virDomainClockDef clock = def->clock;
|
||||||
|
libxl_domain_build_info *b_info = &d_config->b_info;
|
||||||
|
int hvm = def->os.type == VIR_DOMAIN_OSTYPE_HVM;
|
||||||
|
size_t i;
|
||||||
|
@@ -293,10 +294,38 @@ libxlMakeDomBuildInfo(virDomainDefPtr de
|
||||||
|
for (i = 0; i < virDomainDefGetVcpus(def); i++)
|
||||||
|
libxl_bitmap_set((&b_info->avail_vcpus), i);
|
||||||
|
|
||||||
|
- for (i = 0; i < def->clock.ntimers; i++) {
|
||||||
|
- switch ((virDomainTimerNameType) def->clock.timers[i]->name) {
|
||||||
|
+ switch ((virDomainClockOffsetType) clock.offset) {
|
||||||
|
+ case VIR_DOMAIN_CLOCK_OFFSET_VARIABLE:
|
||||||
|
+ if (clock.data.variable.basis == VIR_DOMAIN_CLOCK_BASIS_LOCALTIME)
|
||||||
|
+ libxl_defbool_set(&b_info->localtime, true);
|
||||||
|
+ b_info->rtc_timeoffset = clock.data.variable.adjustment;
|
||||||
|
+ break;
|
||||||
|
+
|
||||||
|
+ case VIR_DOMAIN_CLOCK_OFFSET_LOCALTIME:
|
||||||
|
+ libxl_defbool_set(&b_info->localtime, true);
|
||||||
|
+ break;
|
||||||
|
+
|
||||||
|
+ /* Nothing to do since UTC is the default in libxl */
|
||||||
|
+ case VIR_DOMAIN_CLOCK_OFFSET_UTC:
|
||||||
|
+ break;
|
||||||
|
+
|
||||||
|
+ case VIR_DOMAIN_CLOCK_OFFSET_TIMEZONE:
|
||||||
|
+ virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
|
||||||
|
+ _("unsupported clock offset '%s'"),
|
||||||
|
+ virDomainClockOffsetTypeToString(clock.offset));
|
||||||
|
+ return -1;
|
||||||
|
+
|
||||||
|
+ case VIR_DOMAIN_CLOCK_OFFSET_LAST:
|
||||||
|
+ default:
|
||||||
|
+ virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
|
||||||
|
+ _("unexpected clock offset '%d'"), clock.offset);
|
||||||
|
+ return -1;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ for (i = 0; i < clock.ntimers; i++) {
|
||||||
|
+ switch ((virDomainTimerNameType) clock.timers[i]->name) {
|
||||||
|
case VIR_DOMAIN_TIMER_NAME_TSC:
|
||||||
|
- switch (def->clock.timers[i]->mode) {
|
||||||
|
+ switch (clock.timers[i]->mode) {
|
||||||
|
case VIR_DOMAIN_TIMER_MODE_NATIVE:
|
||||||
|
b_info->tsc_mode = LIBXL_TSC_MODE_NATIVE;
|
||||||
|
break;
|
||||||
|
@@ -315,10 +344,10 @@ libxlMakeDomBuildInfo(virDomainDefPtr de
|
||||||
|
if (!hvm) {
|
||||||
|
virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
|
||||||
|
_("unsupported timer type (name) '%s'"),
|
||||||
|
- virDomainTimerNameTypeToString(def->clock.timers[i]->name));
|
||||||
|
+ virDomainTimerNameTypeToString(clock.timers[i]->name));
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
- if (def->clock.timers[i]->present == 1)
|
||||||
|
+ if (clock.timers[i]->present == 1)
|
||||||
|
libxl_defbool_set(&b_info->u.hvm.hpet, 1);
|
||||||
|
break;
|
||||||
|
|
||||||
|
@@ -329,7 +358,7 @@ libxlMakeDomBuildInfo(virDomainDefPtr de
|
||||||
|
case VIR_DOMAIN_TIMER_NAME_PIT:
|
||||||
|
virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
|
||||||
|
_("unsupported timer type (name) '%s'"),
|
||||||
|
- virDomainTimerNameTypeToString(def->clock.timers[i]->name));
|
||||||
|
+ virDomainTimerNameTypeToString(clock.timers[i]->name));
|
||||||
|
return -1;
|
||||||
|
|
||||||
|
case VIR_DOMAIN_TIMER_NAME_LAST:
|
||||||
|
Index: libvirt-4.0.0/tests/libxlxml2domconfigdata/variable-clock-hvm.json
|
||||||
|
===================================================================
|
||||||
|
--- /dev/null
|
||||||
|
+++ libvirt-4.0.0/tests/libxlxml2domconfigdata/variable-clock-hvm.json
|
||||||
|
@@ -0,0 +1,91 @@
|
||||||
|
+{
|
||||||
|
+ "c_info": {
|
||||||
|
+ "type": "hvm",
|
||||||
|
+ "name": "test-hvm",
|
||||||
|
+ "uuid": "2147d599-9cc6-c0dc-92ab-4064b5446e9b"
|
||||||
|
+ },
|
||||||
|
+ "b_info": {
|
||||||
|
+ "max_vcpus": 4,
|
||||||
|
+ "avail_vcpus": [
|
||||||
|
+ 0,
|
||||||
|
+ 1,
|
||||||
|
+ 2,
|
||||||
|
+ 3
|
||||||
|
+ ],
|
||||||
|
+ "max_memkb": 1048576,
|
||||||
|
+ "target_memkb": 1048576,
|
||||||
|
+ "video_memkb": 8192,
|
||||||
|
+ "shadow_memkb": 12288,
|
||||||
|
+ "rtc_timeoffset": 3600,
|
||||||
|
+ "localtime": "True",
|
||||||
|
+ "device_model_version": "qemu_xen",
|
||||||
|
+ "device_model": "/bin/true",
|
||||||
|
+ "sched_params": {
|
||||||
|
+ "weight": 1000
|
||||||
|
+ },
|
||||||
|
+ "type.hvm": {
|
||||||
|
+ "pae": "True",
|
||||||
|
+ "apic": "True",
|
||||||
|
+ "acpi": "True",
|
||||||
|
+ "vga": {
|
||||||
|
+ "kind": "cirrus"
|
||||||
|
+ },
|
||||||
|
+ "vnc": {
|
||||||
|
+ "enable": "True",
|
||||||
|
+ "listen": "0.0.0.0",
|
||||||
|
+ "findunused": "False"
|
||||||
|
+ },
|
||||||
|
+ "sdl": {
|
||||||
|
+ "enable": "False"
|
||||||
|
+ },
|
||||||
|
+ "spice": {
|
||||||
|
+
|
||||||
|
+ },
|
||||||
|
+ "boot": "c",
|
||||||
|
+ "rdm": {
|
||||||
|
+
|
||||||
|
+ }
|
||||||
|
+ },
|
||||||
|
+ "arch_arm": {
|
||||||
|
+
|
||||||
|
+ }
|
||||||
|
+ },
|
||||||
|
+ "disks": [
|
||||||
|
+ {
|
||||||
|
+ "pdev_path": "/var/lib/xen/images/test-hvm.img",
|
||||||
|
+ "vdev": "hda",
|
||||||
|
+ "backend": "qdisk",
|
||||||
|
+ "format": "raw",
|
||||||
|
+ "removable": 1,
|
||||||
|
+ "readwrite": 1
|
||||||
|
+ }
|
||||||
|
+ ],
|
||||||
|
+ "nics": [
|
||||||
|
+ {
|
||||||
|
+ "devid": 0,
|
||||||
|
+ "mac": "00:16:3e:66:12:b4",
|
||||||
|
+ "bridge": "br0",
|
||||||
|
+ "script": "/etc/xen/scripts/vif-bridge",
|
||||||
|
+ "nictype": "vif_ioemu"
|
||||||
|
+ }
|
||||||
|
+ ],
|
||||||
|
+ "vfbs": [
|
||||||
|
+ {
|
||||||
|
+ "devid": -1,
|
||||||
|
+ "vnc": {
|
||||||
|
+ "enable": "True",
|
||||||
|
+ "listen": "0.0.0.0",
|
||||||
|
+ "findunused": "False"
|
||||||
|
+ },
|
||||||
|
+ "sdl": {
|
||||||
|
+ "enable": "False"
|
||||||
|
+ }
|
||||||
|
+ }
|
||||||
|
+ ],
|
||||||
|
+ "vkbs": [
|
||||||
|
+ {
|
||||||
|
+ "devid": -1
|
||||||
|
+ }
|
||||||
|
+ ],
|
||||||
|
+ "on_reboot": "restart"
|
||||||
|
+}
|
||||||
|
Index: libvirt-4.0.0/tests/libxlxml2domconfigdata/variable-clock-hvm.xml
|
||||||
|
===================================================================
|
||||||
|
--- /dev/null
|
||||||
|
+++ libvirt-4.0.0/tests/libxlxml2domconfigdata/variable-clock-hvm.xml
|
||||||
|
@@ -0,0 +1,36 @@
|
||||||
|
+<domain type='xen'>
|
||||||
|
+ <name>test-hvm</name>
|
||||||
|
+ <description>None</description>
|
||||||
|
+ <uuid>2147d599-9cc6-c0dc-92ab-4064b5446e9b</uuid>
|
||||||
|
+ <memory>1048576</memory>
|
||||||
|
+ <currentMemory>1048576</currentMemory>
|
||||||
|
+ <vcpu>4</vcpu>
|
||||||
|
+ <on_poweroff>destroy</on_poweroff>
|
||||||
|
+ <on_reboot>restart</on_reboot>
|
||||||
|
+ <on_crash>destroy</on_crash>
|
||||||
|
+ <clock offset='localtime' adjustment='3600'/>
|
||||||
|
+ <os>
|
||||||
|
+ <type>hvm</type>
|
||||||
|
+ <loader>/usr/lib/xen/boot/hvmloader</loader>
|
||||||
|
+ <boot dev='hd'/>
|
||||||
|
+ </os>
|
||||||
|
+ <features>
|
||||||
|
+ <apic/>
|
||||||
|
+ <acpi/>
|
||||||
|
+ <pae/>
|
||||||
|
+ </features>
|
||||||
|
+ <devices>
|
||||||
|
+ <emulator>/bin/true</emulator>
|
||||||
|
+ <disk type='file' device='disk'>
|
||||||
|
+ <driver name='qemu'/>
|
||||||
|
+ <source file='/var/lib/xen/images/test-hvm.img'/>
|
||||||
|
+ <target dev='hda'/>
|
||||||
|
+ </disk>
|
||||||
|
+ <interface type='bridge'>
|
||||||
|
+ <source bridge='br0'/>
|
||||||
|
+ <mac address='00:16:3e:66:12:b4'/>
|
||||||
|
+ <script path='/etc/xen/scripts/vif-bridge'/>
|
||||||
|
+ </interface>
|
||||||
|
+ <graphics type='vnc' port='-1' autoport='yes' listen='0.0.0.0'/>
|
||||||
|
+ </devices>
|
||||||
|
+</domain>
|
||||||
|
Index: libvirt-4.0.0/tests/libxlxml2domconfigtest.c
|
||||||
|
===================================================================
|
||||||
|
--- libvirt-4.0.0.orig/tests/libxlxml2domconfigtest.c
|
||||||
|
+++ libvirt-4.0.0/tests/libxlxml2domconfigtest.c
|
||||||
|
@@ -188,6 +188,7 @@ mymain(void)
|
||||||
|
|
||||||
|
DO_TEST("basic-pv");
|
||||||
|
DO_TEST("basic-hvm");
|
||||||
|
+ DO_TEST("variable-clock-hvm");
|
||||||
|
DO_TEST("moredevs-hvm");
|
||||||
|
DO_TEST("vnuma-hvm");
|
||||||
|
DO_TEST("multiple-ip");
|
||||||
|
Index: libvirt-4.0.0/tests/xlconfigdata/test-fullvirt-tsc-timer.cfg
|
||||||
|
===================================================================
|
||||||
|
--- libvirt-4.0.0.orig/tests/xlconfigdata/test-fullvirt-tsc-timer.cfg
|
||||||
|
+++ libvirt-4.0.0/tests/xlconfigdata/test-fullvirt-tsc-timer.cfg
|
||||||
|
@@ -9,8 +9,8 @@ apic = 1
|
||||||
|
hap = 0
|
||||||
|
viridian = 0
|
||||||
|
tsc_mode = "native"
|
||||||
|
-rtc_timeoffset = 0
|
||||||
|
-localtime = 0
|
||||||
|
+rtc_timeoffset = 3600
|
||||||
|
+localtime = 1
|
||||||
|
on_poweroff = "destroy"
|
||||||
|
on_reboot = "restart"
|
||||||
|
on_crash = "restart"
|
||||||
|
Index: libvirt-4.0.0/tests/xlconfigdata/test-fullvirt-tsc-timer.xml
|
||||||
|
===================================================================
|
||||||
|
--- libvirt-4.0.0.orig/tests/xlconfigdata/test-fullvirt-tsc-timer.xml
|
||||||
|
+++ libvirt-4.0.0/tests/xlconfigdata/test-fullvirt-tsc-timer.xml
|
||||||
|
@@ -15,7 +15,7 @@
|
||||||
|
<pae/>
|
||||||
|
<hap state='off'/>
|
||||||
|
</features>
|
||||||
|
- <clock offset='variable' adjustment='0' basis='utc'>
|
||||||
|
+ <clock offset='variable' adjustment='3600' basis='localtime'>
|
||||||
|
<timer name='tsc' present='yes' mode='native'/>
|
||||||
|
</clock>
|
||||||
|
<on_poweroff>destroy</on_poweroff>
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Feb 21 23:32:55 UTC 2018 - jfehlig@suse.com
|
||||||
|
|
||||||
|
- libxl: add support for specifying clock offset and adjustment
|
||||||
|
c391e07e-libxl-clock-settings.patch
|
||||||
|
bsc#1082161
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Feb 9 13:28:14 UTC 2018 - cbosdonnat@suse.com
|
Fri Feb 9 13:28:14 UTC 2018 - cbosdonnat@suse.com
|
||||||
|
|
||||||
|
@ -325,6 +325,7 @@ Patch4: 0c710a37-libxl-resume-lock-on-mig-failure.patch
|
|||||||
Patch5: 6b3d716e-keycodemap-py3.patch
|
Patch5: 6b3d716e-keycodemap-py3.patch
|
||||||
Patch6: 759b4d1b-virlog-determine-the-hostname-on-startup-CVE-2018-67.patch
|
Patch6: 759b4d1b-virlog-determine-the-hostname-on-startup-CVE-2018-67.patch
|
||||||
Patch7: c2dc6698-fix-deadlock-obtaining-hostname.patch
|
Patch7: c2dc6698-fix-deadlock-obtaining-hostname.patch
|
||||||
|
Patch8: c391e07e-libxl-clock-settings.patch
|
||||||
# Patches pending upstream review
|
# Patches pending upstream review
|
||||||
Patch100: libxl-dom-reset.patch
|
Patch100: libxl-dom-reset.patch
|
||||||
Patch101: network-don-t-use-dhcp-authoritative-on-static-netwo.patch
|
Patch101: network-don-t-use-dhcp-authoritative-on-static-netwo.patch
|
||||||
@ -924,6 +925,7 @@ pushd src/keycodemapdb
|
|||||||
popd
|
popd
|
||||||
%patch6 -p1
|
%patch6 -p1
|
||||||
%patch7 -p1
|
%patch7 -p1
|
||||||
|
%patch8 -p1
|
||||||
%patch100 -p1
|
%patch100 -p1
|
||||||
%patch101 -p1
|
%patch101 -p1
|
||||||
%patch150 -p1
|
%patch150 -p1
|
||||||
|
@ -7,7 +7,7 @@ Index: libvirt-4.0.0/src/libxl/libxl_conf.c
|
|||||||
===================================================================
|
===================================================================
|
||||||
--- libvirt-4.0.0.orig/src/libxl/libxl_conf.c
|
--- libvirt-4.0.0.orig/src/libxl/libxl_conf.c
|
||||||
+++ libvirt-4.0.0/src/libxl/libxl_conf.c
|
+++ libvirt-4.0.0/src/libxl/libxl_conf.c
|
||||||
@@ -736,6 +736,30 @@ libxlDiskSetDiscard(libxl_device_disk *x
|
@@ -765,6 +765,30 @@ libxlDiskSetDiscard(libxl_device_disk *x
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -38,7 +38,7 @@ Index: libvirt-4.0.0/src/libxl/libxl_conf.c
|
|||||||
static char *
|
static char *
|
||||||
libxlMakeNetworkDiskSrcStr(virStorageSourcePtr src,
|
libxlMakeNetworkDiskSrcStr(virStorageSourcePtr src,
|
||||||
const char *username,
|
const char *username,
|
||||||
@@ -984,6 +1008,7 @@ libxlMakeDisk(virDomainDiskDefPtr l_disk
|
@@ -1013,6 +1037,7 @@ libxlMakeDisk(virDomainDiskDefPtr l_disk
|
||||||
x_disk->is_cdrom = l_disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM ? 1 : 0;
|
x_disk->is_cdrom = l_disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM ? 1 : 0;
|
||||||
if (libxlDiskSetDiscard(x_disk, l_disk->discard) < 0)
|
if (libxlDiskSetDiscard(x_disk, l_disk->discard) < 0)
|
||||||
return -1;
|
return -1;
|
||||||
|
@ -11,7 +11,7 @@ Index: libvirt-4.0.0/src/libxl/libxl_conf.c
|
|||||||
===================================================================
|
===================================================================
|
||||||
--- libvirt-4.0.0.orig/src/libxl/libxl_conf.c
|
--- libvirt-4.0.0.orig/src/libxl/libxl_conf.c
|
||||||
+++ libvirt-4.0.0/src/libxl/libxl_conf.c
|
+++ libvirt-4.0.0/src/libxl/libxl_conf.c
|
||||||
@@ -736,6 +736,25 @@ libxlDiskSetDiscard(libxl_device_disk *x
|
@@ -765,6 +765,25 @@ libxlDiskSetDiscard(libxl_device_disk *x
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -37,7 +37,7 @@ Index: libvirt-4.0.0/src/libxl/libxl_conf.c
|
|||||||
static void
|
static void
|
||||||
libxlDiskSetCacheMode(libxl_device_disk *x_disk, int cachemode)
|
libxlDiskSetCacheMode(libxl_device_disk *x_disk, int cachemode)
|
||||||
{
|
{
|
||||||
@@ -881,6 +900,7 @@ libxlMakeNetworkDiskSrc(virStorageSource
|
@@ -910,6 +929,7 @@ libxlMakeNetworkDiskSrc(virStorageSource
|
||||||
int
|
int
|
||||||
libxlMakeDisk(virDomainDiskDefPtr l_disk, libxl_device_disk *x_disk)
|
libxlMakeDisk(virDomainDiskDefPtr l_disk, libxl_device_disk *x_disk)
|
||||||
{
|
{
|
||||||
@ -45,7 +45,7 @@ Index: libvirt-4.0.0/src/libxl/libxl_conf.c
|
|||||||
const char *driver = virDomainDiskGetDriver(l_disk);
|
const char *driver = virDomainDiskGetDriver(l_disk);
|
||||||
int format = virDomainDiskGetFormat(l_disk);
|
int format = virDomainDiskGetFormat(l_disk);
|
||||||
int actual_type = virStorageSourceGetActualType(l_disk->src);
|
int actual_type = virStorageSourceGetActualType(l_disk->src);
|
||||||
@@ -896,7 +916,7 @@ libxlMakeDisk(virDomainDiskDefPtr l_disk
|
@@ -925,7 +945,7 @@ libxlMakeDisk(virDomainDiskDefPtr l_disk
|
||||||
if (libxlMakeNetworkDiskSrc(l_disk->src, &x_disk->pdev_path) < 0)
|
if (libxlMakeNetworkDiskSrc(l_disk->src, &x_disk->pdev_path) < 0)
|
||||||
return -1;
|
return -1;
|
||||||
} else {
|
} else {
|
||||||
@ -54,7 +54,7 @@ Index: libvirt-4.0.0/src/libxl/libxl_conf.c
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1009,6 +1029,9 @@ libxlMakeDisk(virDomainDiskDefPtr l_disk
|
@@ -1038,6 +1058,9 @@ libxlMakeDisk(virDomainDiskDefPtr l_disk
|
||||||
if (libxlDiskSetDiscard(x_disk, l_disk->discard) < 0)
|
if (libxlDiskSetDiscard(x_disk, l_disk->discard) < 0)
|
||||||
return -1;
|
return -1;
|
||||||
libxlDiskSetCacheMode(x_disk, l_disk->cachemode);
|
libxlDiskSetCacheMode(x_disk, l_disk->cachemode);
|
||||||
|
Loading…
Reference in New Issue
Block a user