diff options
author | Kevin Wolf | 2018-04-12 17:29:59 +0200 |
---|---|---|
committer | Kevin Wolf | 2018-05-23 14:30:49 +0200 |
commit | 33e9e9bd62d9ae00880d9e12ad8a5b7d2c00e8a5 (patch) | |
tree | eacaf4579f55de26f5a3ca8c45fa0faa60a19ba3 /MAINTAINERS | |
parent | blockjob: Improve BlockJobInfo.offset/len documentation (diff) | |
download | qemu-33e9e9bd62d9ae00880d9e12ad8a5b7d2c00e8a5.tar.gz qemu-33e9e9bd62d9ae00880d9e12ad8a5b7d2c00e8a5.tar.xz qemu-33e9e9bd62d9ae00880d9e12ad8a5b7d2c00e8a5.zip |
job: Create Job, JobDriver and job_create()
This is the first step towards creating an infrastructure for generic
background jobs that aren't tied to a block device. For now, Job only
stores its ID and JobDriver, the rest stays in BlockJob.
The following patches will move over more parts of BlockJob to Job if
they are meaningful outside the context of a block job.
BlockJob.driver is now redundant, but this patch leaves it around to
avoid unnecessary churn. The next patches will get rid of almost all of
its uses anyway so that it can be removed later with much less churn.
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Max Reitz <mreitz@redhat.com>
Reviewed-by: John Snow <jsnow@redhat.com>
Diffstat (limited to 'MAINTAINERS')
-rw-r--r-- | MAINTAINERS | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/MAINTAINERS b/MAINTAINERS index e187b1f18f..9fba3307d9 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -1369,6 +1369,8 @@ L: qemu-block@nongnu.org S: Supported F: blockjob.c F: include/block/blockjob.h +F: job.c +F: include/block/job.h F: block/backup.c F: block/commit.c F: block/stream.c |