diff options
author | Kevin Wolf <kwolf@redhat.com> | 2016-04-18 17:30:17 +0200 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2016-05-25 19:04:21 +0200 |
commit | b75536c9fa742f887304769d0608557bb8e3a27f (patch) | |
tree | 7a7d7164a6f6afa8f4fd11525ea48ec60976b4a5 /include | |
parent | 4653456a5f60cbedaa0d4638252967e2248c570b (diff) | |
download | qemu-b75536c9fa742f887304769d0608557bb8e3a27f.tar.gz qemu-b75536c9fa742f887304769d0608557bb8e3a27f.tar.bz2 qemu-b75536c9fa742f887304769d0608557bb8e3a27f.zip |
blockjob: Remove BlockJob.bs
There is a single remaining user in qemu-img, and another one in a test
case, both of which can be trivially converted to using BlockJob.blk
instead.
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Max Reitz <mreitz@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/block/blockjob.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/block/blockjob.h b/include/block/blockjob.h index 32012afb2c..86d28070b8 100644 --- a/include/block/blockjob.h +++ b/include/block/blockjob.h @@ -82,7 +82,6 @@ struct BlockJob { const BlockJobDriver *driver; /** The block device on which the job is operating. */ - BlockDriverState *bs; /* TODO Remove */ BlockBackend *blk; /** |