From: Max Reitz <mreitz@redhat.com>
To: John Snow <jsnow@redhat.com>,
qemu-block@nongnu.org, qemu-devel@nongnu.org
Cc: Jeff Cody <jcody@redhat.com>, kwolf@redhat.com, jtc@redhat.com
Subject: Re: [Qemu-devel] [PATCH 1/7] jobs: change start callback to run callback
Date: Sat, 25 Aug 2018 15:33:22 +0200 [thread overview]
Message-ID: <208168ca-5e05-83b1-9531-a6ac77c80bae@redhat.com> (raw)
In-Reply-To: <e97c1bf4-9cbf-eb5a-7237-c83c534eb3b6@redhat.com>
[-- Attachment #1: Type: text/plain, Size: 3789 bytes --]
On 2018-08-23 01:01, John Snow wrote:
>
>
> On 08/22/2018 06:51 AM, Max Reitz wrote:
>> On 2018-08-17 21:04, John Snow wrote:
>>> Presently we codify the entry point for a job as the "start" callback,
>>> but a more apt name would be "run" to clarify the idea that when this
>>> function returns we consider the job to have "finished," except for
>>> any cleanup which occurs in separate callbacks later.
>>>
>>> As part of this clarification, change the signature to include an error
>>> object and a return code. The error ptr is not yet used, and the return
>>> code while captured, will be overwritten by actions in the job_completed
>>> function.
>>>
>>> Signed-off-by: John Snow <jsnow@redhat.com>
>>> ---
>>> block/backup.c | 7 ++++---
>>> block/commit.c | 7 ++++---
>>> block/create.c | 8 +++++---
>>> block/mirror.c | 10 ++++++----
>>> block/stream.c | 7 ++++---
>>> include/qemu/job.h | 2 +-
>>> job.c | 6 +++---
>>> tests/test-bdrv-drain.c | 7 ++++---
>>> tests/test-blockjob-txn.c | 16 ++++++++--------
>>> tests/test-blockjob.c | 7 ++++---
>>> 10 files changed, 43 insertions(+), 34 deletions(-)
>>
>> [...]
>>
>>> diff --git a/job.c b/job.c
>>> index fa671b431a..898260b2b3 100644
>>> --- a/job.c
>>> +++ b/job.c
>>> @@ -544,16 +544,16 @@ static void coroutine_fn job_co_entry(void *opaque)
>>> {
>>> Job *job = opaque;
>>>
>>> - assert(job && job->driver && job->driver->start);
>>> + assert(job && job->driver && job->driver->run);
>>> job_pause_point(job);
>>> - job->driver->start(job);
>>> + job->ret = job->driver->run(job, NULL);
>>> }
>>
>> Hmmm, this breaks the iff relationship with job->error. We might call
>> job_update_rc() afterwards, but then job_completed() would need to free
>> it if it overwrites it with the error description from a potential error
>> object.
>>
>> Also, I suspect the following patches might fix the relationship anyway?
>> (But then an "XXX: This does not hold right now, but will be fixed in a
>> future patch" in the documentation of Job.error might help.)
>>
>> Max
>>
>
> Hmm... does it? ... I guess you mean that we are setting job->ret
> earlier than we used to, which gives us a window where you can have ret
> set, but error unset.
>
> This will get settled out by the end of the series anyway:
Oh no, it appears I accidentally removed yet another chunk from my reply
to patch 2...
> - char *error gets replaced with Error *err,
Which is basically the same. I noted in the deleted chunk that patch 2
just removes the iff relationship from the describing comment, but, well...
> - I remove the error object from job_completed
> - v2 will remove the ret argument, too.
The most important bit of the chunk I removed was that I was complaining
about Job.ret still being there. I don't really see the point of this
patch here at this point.
Unfortunately I can't quite recall...
Having a central Error object doesn't really make sense. Whenever the
block job wants to return an error, it should probably do so as "return"
values of methods (like .run()). Same for ret, of course.
I understand that this is probably really only possible after v2 when
you've made more use of abort/commit. But still, I don't think this
patch improves anything, so I would leave this clean-up until later when
you can really do something.
I suppose the idea here is that you want to drop the errp parameter from
job_completed(), because it is not going to be called by .exit(). But
the obvious way around this would be to pass an errp to .exit() and then
pass the result on to job_completed().
Max
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
next prev parent reply other threads:[~2018-08-25 13:33 UTC|newest]
Thread overview: 53+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-08-17 19:04 [Qemu-devel] [PATCH 0/7] jobs: remove job_defer_to_main_loop John Snow
2018-08-17 19:04 ` [Qemu-devel] [PATCH 1/7] jobs: change start callback to run callback John Snow
2018-08-20 18:28 ` Eric Blake
2018-08-20 19:04 ` John Snow
2018-08-22 10:51 ` Max Reitz
2018-08-22 23:01 ` John Snow
2018-08-25 13:33 ` Max Reitz [this message]
2018-08-25 14:15 ` Max Reitz
2018-08-27 16:01 ` John Snow
2018-08-17 19:04 ` [Qemu-devel] [PATCH 2/7] jobs: canonize Error object John Snow
2018-08-20 20:03 ` Eric Blake
2018-08-21 0:10 ` John Snow
2018-08-22 10:59 ` Max Reitz
2018-08-22 22:50 ` John Snow
2018-08-25 13:15 ` Max Reitz
2018-08-22 11:09 ` Max Reitz
2018-08-22 11:11 ` Max Reitz
2018-08-17 19:04 ` [Qemu-devel] [PATCH 3/7] jobs: add exit shim John Snow
2018-08-20 21:16 ` Eric Blake
2018-08-22 11:43 ` Max Reitz
2018-08-22 11:52 ` Max Reitz
2018-08-22 21:45 ` John Snow
2018-08-25 12:54 ` Max Reitz
2018-08-22 21:52 ` John Snow
2018-08-25 13:05 ` Max Reitz
2018-08-27 15:54 ` John Snow
2018-08-29 8:16 ` Max Reitz
2018-08-22 22:01 ` Eric Blake
2018-08-22 22:04 ` John Snow
2018-08-17 19:04 ` [Qemu-devel] [PATCH 4/7] block/commit: utilize job_exit shim John Snow
2018-08-17 19:18 ` John Snow
2018-08-22 11:58 ` Max Reitz
2018-08-22 21:55 ` John Snow
2018-08-25 13:07 ` Max Reitz
2018-08-22 11:55 ` Max Reitz
2018-08-17 19:04 ` [Qemu-devel] [PATCH 5/7] block/mirror: " John Snow
2018-08-22 12:06 ` Max Reitz
2018-08-22 12:15 ` Max Reitz
2018-08-22 22:05 ` John Snow
2018-08-25 15:02 ` Max Reitz
2018-08-25 15:14 ` Max Reitz
2018-08-28 20:25 ` John Snow
2018-08-29 8:28 ` Max Reitz
2018-08-28 21:51 ` John Snow
2018-08-17 19:04 ` [Qemu-devel] [PATCH 6/7] jobs: " John Snow
2018-08-22 12:20 ` Max Reitz
2018-08-22 23:40 ` John Snow
2018-08-17 19:04 ` [Qemu-devel] [PATCH 7/7] jobs: remove job_defer_to_main_loop John Snow
2018-08-22 12:21 ` Max Reitz
2018-08-18 16:27 ` [Qemu-devel] [PATCH 0/7] " no-reply
2018-08-18 16:31 ` no-reply
2018-09-04 2:06 ` no-reply
2018-09-04 2:09 ` no-reply
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=208168ca-5e05-83b1-9531-a6ac77c80bae@redhat.com \
--to=mreitz@redhat.com \
--cc=jcody@redhat.com \
--cc=jsnow@redhat.com \
--cc=jtc@redhat.com \
--cc=kwolf@redhat.com \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).