]> git.proxmox.com Git - qemu.git/blame - blockdev.h
blockdev: Fix regression in -drive if=scsi,index=N
[qemu.git] / blockdev.h
CommitLineData
666daa68
MA
1/*
2 * QEMU host block devices
3 *
4 * Copyright (c) 2003-2008 Fabrice Bellard
5 *
6 * This work is licensed under the terms of the GNU GPL, version 2 or
7 * later. See the COPYING file in the top-level directory.
8 */
9
10#ifndef BLOCKDEV_H
11#define BLOCKDEV_H
12
13#include "block.h"
14#include "qemu-queue.h"
15
14bafc54
MA
16void blockdev_mark_auto_del(BlockDriverState *bs);
17void blockdev_auto_del(BlockDriverState *bs);
18
666daa68
MA
19#define BLOCK_SERIAL_STRLEN 20
20
904ebffe
MA
21typedef enum {
22 IF_NONE,
23 IF_IDE, IF_SCSI, IF_FLOPPY, IF_PFLASH, IF_MTD, IF_SD, IF_VIRTIO, IF_XEN,
24 IF_COUNT
25} BlockInterfaceType;
26
2446333c 27struct DriveInfo {
666daa68
MA
28 BlockDriverState *bdrv;
29 char *id;
30 const char *devaddr;
31 BlockInterfaceType type;
32 int bus;
33 int unit;
14bafc54 34 int auto_del; /* see blockdev_mark_auto_del() */
666daa68 35 QemuOpts *opts;
666daa68
MA
36 char serial[BLOCK_SERIAL_STRLEN + 1];
37 QTAILQ_ENTRY(DriveInfo) next;
2446333c 38};
666daa68 39
6ea421fe
SW
40DriveInfo *drive_get(BlockInterfaceType type, int bus, int unit);
41int drive_get_max_bus(BlockInterfaceType type);
13839974 42DriveInfo *drive_get_next(BlockInterfaceType type);
6ea421fe
SW
43void drive_uninit(DriveInfo *dinfo);
44DriveInfo *drive_get_by_blockdev(BlockDriverState *bs);
45
46QemuOpts *drive_add(const char *file, const char *fmt, ...) GCC_FMT_ATTR(2, 3);
47DriveInfo *drive_init(QemuOpts *arg, int default_to_scsi, int *fatal_error);
666daa68
MA
48
49/* device-hotplug */
50
51DriveInfo *add_init_drive(const char *opts);
52
53void do_commit(Monitor *mon, const QDict *qdict);
54int do_eject(Monitor *mon, const QDict *qdict, QObject **ret_data);
55int do_block_set_passwd(Monitor *mon, const QDict *qdict, QObject **ret_data);
56int do_change_block(Monitor *mon, const char *device,
57 const char *filename, const char *fmt);
9063f814 58int do_drive_del(Monitor *mon, const QDict *qdict, QObject **ret_data);
f8882568 59int do_snapshot_blkdev(Monitor *mon, const QDict *qdict, QObject **ret_data);
6d4a2b3a 60int do_block_resize(Monitor *mon, const QDict *qdict, QObject **ret_data);
666daa68
MA
61
62#endif