[GSoC][PATCH 0/2] Extracting qemu domain jobs into a separate file

Prathamesh Chavan posted 2 patches 3 years, 10 months ago
Test syntax-check failed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/libvirt tags/patchew/20200624104523.4770-1-pc44800@gmail.com
po/POTFILES.in            |    1 +
src/qemu/Makefile.inc.am  |    2 +
src/qemu/qemu_domain.c    | 1172 +-----------------------------------
src/qemu/qemu_domain.h    |  247 +-------
src/qemu/qemu_domainjob.c | 1192 +++++++++++++++++++++++++++++++++++++
src/qemu/qemu_domainjob.h |  269 +++++++++
6 files changed, 1472 insertions(+), 1411 deletions(-)
create mode 100644 src/qemu/qemu_domainjob.c
create mode 100644 src/qemu/qemu_domainjob.h
[GSoC][PATCH 0/2] Extracting qemu domain jobs into a separate file
Posted by Prathamesh Chavan 3 years, 10 months ago
These patches aim towards extracting out the domain jobs
into a separate file. Curretnly, we have named it as
`qemu_domainjob`, keeping it similar to the already
exisiting `qemu_blockjob` files.

Prathamesh Chavan (2):
  qemu_domain: Avoid using qemuDomainObjPrivatePtr as parameter
  qemu_domainjob: moved domain job APIs to a separate file

 po/POTFILES.in            |    1 +
 src/qemu/Makefile.inc.am  |    2 +
 src/qemu/qemu_domain.c    | 1172 +-----------------------------------
 src/qemu/qemu_domain.h    |  247 +-------
 src/qemu/qemu_domainjob.c | 1192 +++++++++++++++++++++++++++++++++++++
 src/qemu/qemu_domainjob.h |  269 +++++++++
 6 files changed, 1472 insertions(+), 1411 deletions(-)
 create mode 100644 src/qemu/qemu_domainjob.c
 create mode 100644 src/qemu/qemu_domainjob.h

-- 
2.17.1

Re: [GSoC][PATCH 0/2] Extracting qemu domain jobs into a separate file
Posted by Michal Privoznik 3 years, 10 months ago
On 6/24/20 12:45 PM, Prathamesh Chavan wrote:
> These patches aim towards extracting out the domain jobs
> into a separate file. Curretnly, we have named it as
> `qemu_domainjob`, keeping it similar to the already
> exisiting `qemu_blockjob` files.
> 
> Prathamesh Chavan (2):
>    qemu_domain: Avoid using qemuDomainObjPrivatePtr as parameter
>    qemu_domainjob: moved domain job APIs to a separate file
> 
>   po/POTFILES.in            |    1 +
>   src/qemu/Makefile.inc.am  |    2 +
>   src/qemu/qemu_domain.c    | 1172 +-----------------------------------
>   src/qemu/qemu_domain.h    |  247 +-------
>   src/qemu/qemu_domainjob.c | 1192 +++++++++++++++++++++++++++++++++++++
>   src/qemu/qemu_domainjob.h |  269 +++++++++
>   6 files changed, 1472 insertions(+), 1411 deletions(-)
>   create mode 100644 src/qemu/qemu_domainjob.c
>   create mode 100644 src/qemu/qemu_domainjob.h
> 

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

and pushed.

Michal