[libvirt PATCH 0/5] Remove virRun in favor of virCommand

Ján Tomko posted 5 patches 3 years, 11 months ago
Test syntax-check failed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/libvirt tags/patchew/cover.1587574318.git.jtomko@redhat.com
src/libvirt_private.syms         |  1 -
src/lxc/lxc_driver.c             |  5 +-
src/openvz/openvz_driver.c       | 96 ++++++++++++++------------------
src/qemu/qemu_domain.c           | 16 +++---
src/security/security_apparmor.c | 11 +---
src/util/vircommand.c            | 35 ------------
src/util/vircommand.h            |  2 -
src/util/virnetdev.c             | 24 +++-----
src/util/virprocess.c            |  4 +-
src/vmware/vmware_conf.c         |  9 ++-
src/vmware/vmware_driver.c       | 69 ++++++++++-------------
11 files changed, 98 insertions(+), 174 deletions(-)
[libvirt PATCH 0/5] Remove virRun in favor of virCommand
Posted by Ján Tomko 3 years, 11 months ago
Ján Tomko (5):
  openvz: switch from virRun to virCommand
  vmware: use virCommand instead of virRun
  Remove all usage of virRun
  util: remove references to virRun/virExec
  util: remove virRun

 src/libvirt_private.syms         |  1 -
 src/lxc/lxc_driver.c             |  5 +-
 src/openvz/openvz_driver.c       | 96 ++++++++++++++------------------
 src/qemu/qemu_domain.c           | 16 +++---
 src/security/security_apparmor.c | 11 +---
 src/util/vircommand.c            | 35 ------------
 src/util/vircommand.h            |  2 -
 src/util/virnetdev.c             | 24 +++-----
 src/util/virprocess.c            |  4 +-
 src/vmware/vmware_conf.c         |  9 ++-
 src/vmware/vmware_driver.c       | 69 ++++++++++-------------
 11 files changed, 98 insertions(+), 174 deletions(-)

-- 
2.25.1

Re: [libvirt PATCH 0/5] Remove virRun in favor of virCommand
Posted by Michal Privoznik 3 years, 11 months ago
On 4/22/20 6:52 PM, Ján Tomko wrote:
> Ján Tomko (5):
>    openvz: switch from virRun to virCommand
>    vmware: use virCommand instead of virRun
>    Remove all usage of virRun
>    util: remove references to virRun/virExec
>    util: remove virRun
> 
>   src/libvirt_private.syms         |  1 -
>   src/lxc/lxc_driver.c             |  5 +-
>   src/openvz/openvz_driver.c       | 96 ++++++++++++++------------------
>   src/qemu/qemu_domain.c           | 16 +++---
>   src/security/security_apparmor.c | 11 +---
>   src/util/vircommand.c            | 35 ------------
>   src/util/vircommand.h            |  2 -
>   src/util/virnetdev.c             | 24 +++-----
>   src/util/virprocess.c            |  4 +-
>   src/vmware/vmware_conf.c         |  9 ++-
>   src/vmware/vmware_driver.c       | 69 ++++++++++-------------
>   11 files changed, 98 insertions(+), 174 deletions(-)
> 

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

Michal