qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH 10/42] job: Add JobDriver.job_type


From: Kevin Wolf
Subject: Re: [Qemu-devel] [PATCH 10/42] job: Add JobDriver.job_type
Date: Mon, 14 May 2018 13:31:00 +0200
User-agent: Mutt/1.9.1 (2017-09-22)

Am 12.05.2018 um 00:53 hat Max Reitz geschrieben:
> On 2018-05-09 18:26, Kevin Wolf wrote:
> > This moves the job_type field from BlockJobDriver to JobDriver.
> > 
> > Signed-off-by: Kevin Wolf <address@hidden>
> > ---
> >  include/block/blockjob_int.h |  3 ---
> >  include/qemu/job.h           | 11 +++++++++++
> >  block/backup.c               |  2 +-
> >  block/commit.c               |  2 +-
> >  block/mirror.c               |  4 ++--
> >  block/stream.c               |  2 +-
> >  blockjob.c                   | 16 +++++++---------
> >  job.c                        | 10 ++++++++++
> >  8 files changed, 33 insertions(+), 17 deletions(-)
> > 
> 
> [...]
> 
> > diff --git a/include/qemu/job.h b/include/qemu/job.h
> > index b4b49f19e1..c87e951c8a 100644
> > --- a/include/qemu/job.h
> > +++ b/include/qemu/job.h
> 
> [...]
> 
> > @@ -57,4 +62,10 @@ struct JobDriver {
> >   */
> >  void *job_create(const char *job_id, const JobDriver *driver, Error 
> > **errp);
> >  
> > +/** Returns the JobType of a given Job. */
> > +JobType job_type(Job *job);
> > +
> > +/** Returns the enum string for the JobType of a given Job. */
> > +const char *job_type_str(Job *job);
> > +
> 
> Is there a good reason for these not to take a const Job *?
> 
> Depending on the answer:
> 
> Reviewed-by: Max Reitz <address@hidden>

Not really. I'll change it and take your R-b.

Kevin

Attachment: signature.asc
Description: PGP signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]