diff options
| author | Markus Armbruster | 2011-01-28 11:21:44 +0100 |
|---|---|---|
| committer | Kevin Wolf | 2011-01-31 11:17:07 +0100 |
| commit | f1bd51ac2b6e6ccd3d13dfd52c1c381a68bf261c (patch) | |
| tree | 29d846394839738805d94ae2647d46aec1980198 /blockdev.h | |
| parent | blockdev: Factor drive_index_to_{bus,unit}_id out of drive_init() (diff) | |
| download | qemu-f1bd51ac2b6e6ccd3d13dfd52c1c381a68bf261c.tar.gz qemu-f1bd51ac2b6e6ccd3d13dfd52c1c381a68bf261c.tar.xz qemu-f1bd51ac2b6e6ccd3d13dfd52c1c381a68bf261c.zip | |
blockdev: New drive_get_by_index()
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'blockdev.h')
| -rw-r--r-- | blockdev.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/blockdev.h b/blockdev.h index 0c01e0801e..18278cc65d 100644 --- a/blockdev.h +++ b/blockdev.h @@ -39,6 +39,7 @@ struct DriveInfo { }; DriveInfo *drive_get(BlockInterfaceType type, int bus, int unit); +DriveInfo *drive_get_by_index(BlockInterfaceType type, int index); int drive_get_max_bus(BlockInterfaceType type); DriveInfo *drive_get_next(BlockInterfaceType type); void drive_uninit(DriveInfo *dinfo); |
