[RFC PATCH 0/2] Introduce 'absolute' clock offset

Peter Krempa posted 2 patches 2 years ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/libvirt tags/patchew/cover.1650987168.git.pkrempa@redhat.com
docs/formatdomain.rst                         |  4 ++
src/conf/domain_conf.c                        | 13 +++++++
src/conf/domain_conf.h                        |  4 ++
src/conf/schemas/domaincommon.rng             |  8 ++++
src/libxl/libxl_conf.c                        |  1 +
src/qemu/qemu_command.c                       | 10 ++++-
.../clock-absolute.x86_64-latest.args         | 36 ++++++++++++++++++
tests/qemuxml2argvdata/clock-absolute.xml     | 30 +++++++++++++++
tests/qemuxml2argvtest.c                      |  1 +
.../clock-absolute.x86_64-latest.xml          | 38 +++++++++++++++++++
tests/qemuxml2xmltest.c                       |  1 +
11 files changed, 145 insertions(+), 1 deletion(-)
create mode 100644 tests/qemuxml2argvdata/clock-absolute.x86_64-latest.args
create mode 100644 tests/qemuxml2argvdata/clock-absolute.xml
create mode 100644 tests/qemuxml2xmloutdata/clock-absolute.x86_64-latest.xml
[RFC PATCH 0/2] Introduce 'absolute' clock offset
Posted by Peter Krempa 2 years ago
Based on
https://listman.redhat.com/archives/libvirt-users/2022-April/013537.html

Looked as a very simple addition.

Peter Krempa (2):
  conf: Introduce 'absolute' clock offset
  qemu: Implement 'absolute' clock offset mode

 docs/formatdomain.rst                         |  4 ++
 src/conf/domain_conf.c                        | 13 +++++++
 src/conf/domain_conf.h                        |  4 ++
 src/conf/schemas/domaincommon.rng             |  8 ++++
 src/libxl/libxl_conf.c                        |  1 +
 src/qemu/qemu_command.c                       | 10 ++++-
 .../clock-absolute.x86_64-latest.args         | 36 ++++++++++++++++++
 tests/qemuxml2argvdata/clock-absolute.xml     | 30 +++++++++++++++
 tests/qemuxml2argvtest.c                      |  1 +
 .../clock-absolute.x86_64-latest.xml          | 38 +++++++++++++++++++
 tests/qemuxml2xmltest.c                       |  1 +
 11 files changed, 145 insertions(+), 1 deletion(-)
 create mode 100644 tests/qemuxml2argvdata/clock-absolute.x86_64-latest.args
 create mode 100644 tests/qemuxml2argvdata/clock-absolute.xml
 create mode 100644 tests/qemuxml2xmloutdata/clock-absolute.x86_64-latest.xml

-- 
2.35.1
Re: [RFC PATCH 0/2] Introduce 'absolute' clock offset
Posted by Michal Prívozník 2 years ago
On 4/26/22 17:34, Peter Krempa wrote:
> Based on
> https://listman.redhat.com/archives/libvirt-users/2022-April/013537.html
> 
> Looked as a very simple addition.
> 
> Peter Krempa (2):
>   conf: Introduce 'absolute' clock offset
>   qemu: Implement 'absolute' clock offset mode
> 
>  docs/formatdomain.rst                         |  4 ++
>  src/conf/domain_conf.c                        | 13 +++++++
>  src/conf/domain_conf.h                        |  4 ++
>  src/conf/schemas/domaincommon.rng             |  8 ++++
>  src/libxl/libxl_conf.c                        |  1 +
>  src/qemu/qemu_command.c                       | 10 ++++-
>  .../clock-absolute.x86_64-latest.args         | 36 ++++++++++++++++++
>  tests/qemuxml2argvdata/clock-absolute.xml     | 30 +++++++++++++++
>  tests/qemuxml2argvtest.c                      |  1 +
>  .../clock-absolute.x86_64-latest.xml          | 38 +++++++++++++++++++
>  tests/qemuxml2xmltest.c                       |  1 +
>  11 files changed, 145 insertions(+), 1 deletion(-)
>  create mode 100644 tests/qemuxml2argvdata/clock-absolute.x86_64-latest.args
>  create mode 100644 tests/qemuxml2argvdata/clock-absolute.xml
>  create mode 100644 tests/qemuxml2xmloutdata/clock-absolute.x86_64-latest.xml
> 

Reviewed-by: Michal Privoznik <mprivozn@redhat.com>

Michal