diff options
author | Markus Armbruster <armbru@redhat.com> | 2021-11-17 17:34:09 +0100 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2021-12-15 14:56:14 +0100 |
commit | 95fd260f0a3663ed229b8e0d2ef111a9f8bd93ad (patch) | |
tree | d084871d1762db94f372bedcfc36628aea1e31a5 /include/sysemu | |
parent | 8ec239f2d80bed82ad5a361ddfb9ca3560a45ad8 (diff) | |
download | qemu-95fd260f0a3663ed229b8e0d2ef111a9f8bd93ad.zip qemu-95fd260f0a3663ed229b8e0d2ef111a9f8bd93ad.tar.gz qemu-95fd260f0a3663ed229b8e0d2ef111a9f8bd93ad.tar.bz2 |
blockdev: Drop unused drive_get_next()
drive_get_next() is basically a bad idea. It returns the "next" block
backend of a certain interface type. "Next" means bus=0,unit=N, where
subsequent calls count N up from zero, per interface type.
This lets you define unit numbers implicitly by execution order. If the
order changes, or new calls appear "in the middle", unit numbers change.
ABI break. Hard to spot in review.
The previous commits eliminated all uses. Drop the function.
Cc: Kevin Wolf <kwolf@redhat.com>
Cc: Hanna Reitz <hreitz@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20211117163409.3587705-14-armbru@redhat.com>
Reviewed-by: Hanna Reitz <hreitz@redhat.com>
Diffstat (limited to 'include/sysemu')
-rw-r--r-- | include/sysemu/blockdev.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/sysemu/blockdev.h b/include/sysemu/blockdev.h index 32c2d60..a750f99 100644 --- a/include/sysemu/blockdev.h +++ b/include/sysemu/blockdev.h @@ -50,7 +50,6 @@ void drive_check_orphaned(void); DriveInfo *drive_get_by_index(BlockInterfaceType type, int index); int drive_get_max_bus(BlockInterfaceType type); int drive_get_max_devs(BlockInterfaceType type); -DriveInfo *drive_get_next(BlockInterfaceType type); QemuOpts *drive_def(const char *optstr); QemuOpts *drive_add(BlockInterfaceType type, int index, const char *file, |