[PATCH 0/2] RFC: Allow using custom XML validator

Peter Krempa posted 2 patches 1 year, 7 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/libvirt tags/patchew/cover.1663947646.git.pkrempa@redhat.com
src/libvirt_private.syms          |  1 +
src/remote/libvirtd.aug.in        |  1 +
src/remote/libvirtd.conf.in       | 21 +++++++
src/remote/remote_daemon.c        |  3 +
src/remote/remote_daemon_config.c |  4 ++
src/remote/remote_daemon_config.h |  2 +
src/remote/test_libvirtd.aug.in   |  1 +
src/util/virxml.c                 | 93 ++++++++++++++++++++++++++++++-
src/util/virxml.h                 |  3 +
9 files changed, 127 insertions(+), 2 deletions(-)
[PATCH 0/2] RFC: Allow using custom XML validator
Posted by Peter Krempa 1 year, 7 months ago
Benefits described in patch 2/2 with an example of using 'jing' as
validator.

Peter Krempa (2):
  util: xml: Introduce infrastructure to support custom XML validators
  daemon: Introduce the possibility for users to register custom XML
    validator

 src/libvirt_private.syms          |  1 +
 src/remote/libvirtd.aug.in        |  1 +
 src/remote/libvirtd.conf.in       | 21 +++++++
 src/remote/remote_daemon.c        |  3 +
 src/remote/remote_daemon_config.c |  4 ++
 src/remote/remote_daemon_config.h |  2 +
 src/remote/test_libvirtd.aug.in   |  1 +
 src/util/virxml.c                 | 93 ++++++++++++++++++++++++++++++-
 src/util/virxml.h                 |  3 +
 9 files changed, 127 insertions(+), 2 deletions(-)

-- 
2.37.1
Re: [PATCH 0/2] RFC: Allow using custom XML validator
Posted by Michal Prívozník 1 year, 7 months ago
On 9/23/22 17:42, Peter Krempa wrote:
> Benefits described in patch 2/2 with an example of using 'jing' as
> validator.
> 
> Peter Krempa (2):
>   util: xml: Introduce infrastructure to support custom XML validators
>   daemon: Introduce the possibility for users to register custom XML
>     validator
> 
>  src/libvirt_private.syms          |  1 +
>  src/remote/libvirtd.aug.in        |  1 +
>  src/remote/libvirtd.conf.in       | 21 +++++++
>  src/remote/remote_daemon.c        |  3 +
>  src/remote/remote_daemon_config.c |  4 ++
>  src/remote/remote_daemon_config.h |  2 +
>  src/remote/test_libvirtd.aug.in   |  1 +
>  src/util/virxml.c                 | 93 ++++++++++++++++++++++++++++++-
>  src/util/virxml.h                 |  3 +
>  9 files changed, 127 insertions(+), 2 deletions(-)
> 

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

Michal