search for: if_id

Displaying 5 results from an estimated 5 matches for "if_id".

Did you mean: f_id
2009 Oct 27
0
[PATCH 1/4] Add 'raid' interface class
..., pflash, virtio)", },{ .name = "index", .type = QEMU_OPT_NUMBER, diff --git a/sysemu.h b/sysemu.h index 2ef3797..8ed0b8c 100644 --- a/sysemu.h +++ b/sysemu.h @@ -159,7 +159,7 @@ extern unsigned int nb_prom_envs; typedef enum { IF_NONE, - IF_IDE, IF_SCSI, IF_FLOPPY, IF_PFLASH, IF_MTD, IF_SD, IF_VIRTIO, IF_XEN, + IF_IDE, IF_SCSI, IF_RAID, IF_FLOPPY, IF_PFLASH, IF_MTD, IF_SD, IF_VIRTIO, IF_XEN, IF_COUNT } BlockInterfaceType; @@ -185,6 +185,7 @@ typedef struct DriveInfo { #define MAX_IDE_DEVS 2 #define MAX_SCSI_DEVS 7 +#define...
2009 Oct 27
0
[PATCH 1/4] Add 'raid' interface class
..., pflash, virtio)", },{ .name = "index", .type = QEMU_OPT_NUMBER, diff --git a/sysemu.h b/sysemu.h index 2ef3797..8ed0b8c 100644 --- a/sysemu.h +++ b/sysemu.h @@ -159,7 +159,7 @@ extern unsigned int nb_prom_envs; typedef enum { IF_NONE, - IF_IDE, IF_SCSI, IF_FLOPPY, IF_PFLASH, IF_MTD, IF_SD, IF_VIRTIO, IF_XEN, + IF_IDE, IF_SCSI, IF_RAID, IF_FLOPPY, IF_PFLASH, IF_MTD, IF_SD, IF_VIRTIO, IF_XEN, IF_COUNT } BlockInterfaceType; @@ -185,6 +185,7 @@ typedef struct DriveInfo { #define MAX_IDE_DEVS 2 #define MAX_SCSI_DEVS 7 +#define...
2007 Dec 21
0
[Virtio-for-kvm] [PATCH 3/7] userspace virtio
...virtio_add_queue(&s->vdev, 128, virtio_blk_handle_output); + + return &s->vdev; +} diff --git a/qemu/sysemu.h b/qemu/sysemu.h index 1f5b093..e20159d 100644 --- a/qemu/sysemu.h +++ b/qemu/sysemu.h @@ -117,7 +117,7 @@ extern unsigned int nb_prom_envs; #endif typedef enum { - IF_IDE, IF_SCSI, IF_FLOPPY, IF_PFLASH, IF_MTD, IF_SD + IF_IDE, IF_SCSI, IF_FLOPPY, IF_PFLASH, IF_MTD, IF_SD, IF_VIRTIO } BlockInterfaceType; typedef struct DriveInfo { diff --git a/qemu/vl.c b/qemu/vl.c index 28c5df4..26055a4 100644 --- a/qemu/vl.c +++ b/qemu/vl.c @@ -4970,6 +4970,9 @@ static int...
2007 Dec 21
0
[Virtio-for-kvm] [PATCH 3/7] userspace virtio
...virtio_add_queue(&s->vdev, 128, virtio_blk_handle_output); + + return &s->vdev; +} diff --git a/qemu/sysemu.h b/qemu/sysemu.h index 1f5b093..e20159d 100644 --- a/qemu/sysemu.h +++ b/qemu/sysemu.h @@ -117,7 +117,7 @@ extern unsigned int nb_prom_envs; #endif typedef enum { - IF_IDE, IF_SCSI, IF_FLOPPY, IF_PFLASH, IF_MTD, IF_SD + IF_IDE, IF_SCSI, IF_FLOPPY, IF_PFLASH, IF_MTD, IF_SD, IF_VIRTIO } BlockInterfaceType; typedef struct DriveInfo { diff --git a/qemu/vl.c b/qemu/vl.c index 28c5df4..26055a4 100644 --- a/qemu/vl.c +++ b/qemu/vl.c @@ -4970,6 +4970,9 @@ static int...
2010 Aug 12
59
[PATCH 00/15] RFC xen device model support
Hi all, this is the long awaited patch series to add xen device model support in qemu; the main author is Anthony Perard. Developing this series we tried to come up with the cleanest possible solution from the qemu point of view, limiting the amount of changes to common code as much as possible. The end result still requires a couple of hooks in piix_pci but overall the impact should be very