2010-06-02 18:48:27 +02:00
|
|
|
/*
|
|
|
|
* QEMU host block devices
|
|
|
|
*
|
|
|
|
* Copyright (c) 2003-2008 Fabrice Bellard
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or
|
|
|
|
* later. See the COPYING file in the top-level directory.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef BLOCKDEV_H
|
|
|
|
#define BLOCKDEV_H
|
|
|
|
|
2012-12-17 18:19:44 +01:00
|
|
|
#include "block/block.h"
|
2012-12-17 18:20:00 +01:00
|
|
|
#include "qemu/queue.h"
|
2010-06-02 18:48:27 +02:00
|
|
|
|
2014-10-07 13:59:18 +02:00
|
|
|
void blockdev_mark_auto_del(BlockBackend *blk);
|
|
|
|
void blockdev_auto_del(BlockBackend *blk);
|
2010-06-25 08:09:10 +02:00
|
|
|
|
2011-01-28 11:21:38 +01:00
|
|
|
typedef enum {
|
2011-01-28 11:21:41 +01:00
|
|
|
IF_DEFAULT = -1, /* for use with drive_add() only */
|
2012-11-20 15:30:34 +01:00
|
|
|
/*
|
2017-02-15 11:05:42 +01:00
|
|
|
* IF_NONE must be zero, because we want MachineClass member
|
|
|
|
* block_default_type to default-initialize to IF_NONE
|
2012-11-20 15:30:34 +01:00
|
|
|
*/
|
2017-02-15 11:05:42 +01:00
|
|
|
IF_NONE = 0,
|
|
|
|
IF_IDE, IF_SCSI, IF_FLOPPY, IF_PFLASH, IF_MTD, IF_SD, IF_VIRTIO, IF_XEN,
|
2011-01-28 11:21:38 +01:00
|
|
|
IF_COUNT
|
|
|
|
} BlockInterfaceType;
|
|
|
|
|
2010-08-24 17:22:24 +02:00
|
|
|
struct DriveInfo {
|
2010-06-02 18:48:27 +02:00
|
|
|
BlockInterfaceType type;
|
|
|
|
int bus;
|
|
|
|
int unit;
|
2010-06-25 08:09:10 +02:00
|
|
|
int auto_del; /* see blockdev_mark_auto_del() */
|
2014-10-01 20:19:24 +02:00
|
|
|
bool is_default; /* Added by default_drive() ? */
|
2011-05-16 15:04:56 +02:00
|
|
|
int media_cd;
|
2010-06-02 18:48:27 +02:00
|
|
|
QemuOpts *opts;
|
|
|
|
QTAILQ_ENTRY(DriveInfo) next;
|
2010-08-24 17:22:24 +02:00
|
|
|
};
|
2010-06-02 18:48:27 +02:00
|
|
|
|
2014-10-07 13:59:06 +02:00
|
|
|
DriveInfo *blk_legacy_dinfo(BlockBackend *blk);
|
|
|
|
DriveInfo *blk_set_legacy_dinfo(BlockBackend *blk, DriveInfo *dinfo);
|
|
|
|
BlockBackend *blk_by_legacy_dinfo(DriveInfo *dinfo);
|
|
|
|
|
2014-10-01 20:19:25 +02:00
|
|
|
void override_max_devs(BlockInterfaceType type, int max_devs);
|
|
|
|
|
2010-09-23 20:47:32 +02:00
|
|
|
DriveInfo *drive_get(BlockInterfaceType type, int bus, int unit);
|
2017-02-15 11:05:46 +01:00
|
|
|
void drive_check_orphaned(void);
|
2011-01-28 11:21:44 +01:00
|
|
|
DriveInfo *drive_get_by_index(BlockInterfaceType type, int index);
|
2010-09-23 20:47:32 +02:00
|
|
|
int drive_get_max_bus(BlockInterfaceType type);
|
2014-10-01 20:19:27 +02:00
|
|
|
int drive_get_max_devs(BlockInterfaceType type);
|
2011-01-28 11:21:37 +01:00
|
|
|
DriveInfo *drive_get_next(BlockInterfaceType type);
|
2010-09-23 20:47:32 +02:00
|
|
|
|
2011-01-28 11:21:41 +01:00
|
|
|
QemuOpts *drive_def(const char *optstr);
|
|
|
|
QemuOpts *drive_add(BlockInterfaceType type, int index, const char *file,
|
2011-01-31 11:50:09 +01:00
|
|
|
const char *optstr);
|
2018-10-17 10:26:57 +02:00
|
|
|
DriveInfo *drive_new(QemuOpts *arg, BlockInterfaceType block_default_type,
|
|
|
|
Error **errp);
|
2010-06-02 18:48:27 +02:00
|
|
|
|
|
|
|
/* device-hotplug */
|
|
|
|
|
hmp: Name HMP command handler functions hmp_COMMAND()
Some are called do_COMMAND() (old ones, usually), some hmp_COMMAND(),
and sometimes COMMAND pointlessly differs in spelling.
Normalize to hmp_COMMAND(), where COMMAND is exactly the command name
with '-' replaced by '_'.
Exceptions:
* do_device_add() and client_migrate_info() *not* renamed to
hmp_device_add(), hmp_client_migrate_info(), because they're also
QMP handlers. They still need to be converted to QAPI.
* do_memory_dump(), do_physical_memory_dump(), do_ioport_read(),
do_ioport_write() renamed do hmp_* instead of hmp_x(), hmp_xp(),
hmp_i(), hmp_o(), because those names are too cryptic for my taste.
* do_info_help() renamed to hmp_info_help() instead of hmp_info(),
because it only covers help.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
2015-02-06 13:55:43 +01:00
|
|
|
void hmp_commit(Monitor *mon, const QDict *qdict);
|
2015-03-05 17:00:56 +01:00
|
|
|
void hmp_drive_del(Monitor *mon, const QDict *qdict);
|
2010-06-02 18:48:27 +02:00
|
|
|
#endif
|