From: John Snow <jsnow@redhat.com>
To: Kevin Wolf <kwolf@redhat.com>
Cc: qemu-block@nongnu.org, vsementsov@virtuozzo.com, famz@redhat.com,
stefanha@redhat.com, jcody@redhat.com, eblake@redhat.com,
qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH v2 05/11] blockjobs: split interface into public/private
Date: Wed, 5 Oct 2016 12:20:50 -0400 [thread overview]
Message-ID: <eade0e4d-50ca-dd15-d0b1-01da54cbdb69@redhat.com> (raw)
In-Reply-To: <20161005141708.GD1657@noname.str.redhat.com>
On 10/05/2016 10:17 AM, Kevin Wolf wrote:
> Am 01.10.2016 um 00:00 hat John Snow geschrieben:
>> To make it a little more obvious which functions are intended to be
>> public interface and which are intended to be for use only by jobs
>> themselves, split the interface into "public" and "private" files.
>>
>> Convert blockjobs (e.g. block/backup) to using the private interface.
>> Leave blockdev and others on the public interface.
>>
>> Give up and let qemu-img use the internal interface, though it doesn't
>> strictly need to be using it.
>>
>> As a side-effect, hide the BlockJob and BlockJobDriver implementation
>> from most of the QEMU codebase.
>>
>> Signed-off-by: John Snow <jsnow@redhat.com>
>
>> --- a/block/replication.c
>> +++ b/block/replication.c
>> @@ -15,7 +15,7 @@
>> #include "qemu/osdep.h"
>> #include "qemu-common.h"
>> #include "block/nbd.h"
>> -#include "block/blockjob.h"
>> +#include "block/blockjob_int.h"
>> #include "block/block_int.h"
>> #include "block/block_backup.h"
>> #include "sysemu/block-backend.h"
>
> This one is wrong. replication.c is a block job user, not part of the
> implementation. After removing this hunk, the result still compiles.
>
Sorry, this is a mistake from an intermediate form of the patch.
>> --- a/include/block/block.h
>> +++ b/include/block/block.h
>> @@ -7,16 +7,15 @@
>> #include "qemu/coroutine.h"
>> #include "block/accounting.h"
>> #include "block/dirty-bitmap.h"
>> +#include "block/blockjob.h"
>> #include "qapi/qmp/qobject.h"
>> #include "qapi-types.h"
>> #include "qemu/hbitmap.h"
>
> Hm... This header file doesn't need any of the definitions from
> blockjob.h, so I guess .c files should include it explicitly rather than
> getting it from here. That would be a separate patch, though.
>
OK. The reason this happened was because we used to have the struct
definitions in block_int.h; and by moving those to a Blockjob-specific
header, I needed to reintroduce those definitions somehow. I reasoned
that BlockJobs were part of the public interface for the Block layer, so
I added it here.
I can remove it and include the public blockjob interface only where
specifically required if desired, though.
>> /* block.c */
>> typedef struct BlockDriver BlockDriver;
>> -typedef struct BlockJob BlockJob;
>> typedef struct BdrvChild BdrvChild;
>> typedef struct BdrvChildRole BdrvChildRole;
>> -typedef struct BlockJobTxn BlockJobTxn;
>>
>> typedef struct BlockDriverInfo {
>> /* in bytes, 0 if irrelevant */
>
>> --- a/qemu-img.c
>> +++ b/qemu-img.c
>> @@ -37,7 +37,7 @@
>> #include "sysemu/sysemu.h"
>> #include "sysemu/block-backend.h"
>> #include "block/block_int.h"
>> -#include "block/blockjob.h"
>> +#include "block/blockjob_int.h"
>> #include "block/qapi.h"
>> #include "crypto/init.h"
>> #include "trace/control.h"
>
> qemu-img doesn't compile without including blockjob_int.h, but that's
> just a sign that the split isn't completely right yet. Maybe it needs to
> use the pulic function block_job_query() to get the information it takes
> directly from the BlockJob struct.
>
> Kevin
>
Yes, you caught me. I'd need to spend a little more time shining up
qemu-img, which just takes time away from that FDC rev-- I'm kidding.
I'll fix this up at your request.
--js
next prev parent reply other threads:[~2016-10-05 16:21 UTC|newest]
Thread overview: 51+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-09-30 22:00 [Qemu-devel] [PATCH v2 00/11] blockjobs: Fix transactional race condition John Snow
2016-09-30 22:00 ` [Qemu-devel] [PATCH v2 01/11] blockjob: fix dead pointer in txn list John Snow
2016-10-05 13:43 ` Kevin Wolf
2016-09-30 22:00 ` [Qemu-devel] [PATCH v2 02/11] blockjob: centralize QMP event emissions John Snow
2016-10-05 13:43 ` Kevin Wolf
2016-10-05 18:49 ` John Snow
2016-10-05 19:24 ` Eric Blake
2016-10-05 21:00 ` John Snow
2016-10-10 16:45 ` Kashyap Chamarthy
2016-10-10 18:36 ` John Snow
2016-10-10 19:28 ` Eric Blake
2016-10-11 13:32 ` Kashyap Chamarthy
2016-10-06 7:44 ` Kevin Wolf
2016-10-06 16:57 ` John Snow
2016-10-06 18:16 ` Eric Blake
2016-10-06 18:19 ` John Snow
2016-10-11 9:50 ` Markus Armbruster
2016-09-30 22:00 ` [Qemu-devel] [PATCH v2 03/11] Blockjobs: Internalize user_pause logic John Snow
2016-10-04 0:57 ` Jeff Cody
2016-10-04 2:46 ` John Snow
2016-10-04 18:35 ` John Snow
2016-09-30 22:00 ` [Qemu-devel] [PATCH v2 04/11] blockjobs: Always use block_job_get_aio_context John Snow
2016-10-05 14:02 ` Kevin Wolf
2016-10-06 20:22 ` John Snow
2016-10-07 7:49 ` Paolo Bonzini
2016-10-13 0:49 ` John Snow
2016-10-13 9:03 ` Paolo Bonzini
2016-09-30 22:00 ` [Qemu-devel] [PATCH v2 05/11] blockjobs: split interface into public/private John Snow
2016-10-05 14:17 ` Kevin Wolf
2016-10-05 16:20 ` John Snow [this message]
2016-09-30 22:00 ` [Qemu-devel] [PATCH v2 06/11] blockjobs: fix documentation John Snow
2016-10-05 15:03 ` Kevin Wolf
2016-10-05 16:22 ` John Snow
2016-09-30 22:00 ` [Qemu-devel] [PATCH v2 07/11] blockjob: add .clean property John Snow
2016-10-12 11:11 ` Vladimir Sementsov-Ogievskiy
2016-09-30 22:00 ` [Qemu-devel] [PATCH v2 08/11] blockjob: add .start field John Snow
2016-09-30 22:00 ` [Qemu-devel] [PATCH v2 09/11] blockjob: add block_job_start John Snow
2016-10-05 15:17 ` Kevin Wolf
2016-10-06 22:44 ` John Snow
2016-10-17 18:00 ` John Snow
2016-09-30 22:00 ` [Qemu-devel] [PATCH v2 10/11] blockjob: refactor backup_start as backup_job_create John Snow
2016-10-07 18:39 ` John Snow
2016-10-10 8:57 ` Kevin Wolf
2016-10-10 22:51 ` John Snow
2016-10-11 8:56 ` Paolo Bonzini
2016-10-11 9:35 ` Kevin Wolf
2016-10-17 8:59 ` Fam Zheng
2016-09-30 22:00 ` [Qemu-devel] [PATCH v2 11/11] iotests: add transactional failure race test John Snow
2016-10-12 11:26 ` Vladimir Sementsov-Ogievskiy
2016-10-12 16:09 ` John Snow
2016-09-30 22:22 ` [Qemu-devel] [PATCH v2 00/11] blockjobs: Fix transactional race condition 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=eade0e4d-50ca-dd15-d0b1-01da54cbdb69@redhat.com \
--to=jsnow@redhat.com \
--cc=eblake@redhat.com \
--cc=famz@redhat.com \
--cc=jcody@redhat.com \
--cc=kwolf@redhat.com \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@redhat.com \
--cc=vsementsov@virtuozzo.com \
/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).