search for: 17ff6f2

Displaying 4 results from an estimated 4 matches for "17ff6f2".

Did you mean: 17fe612
2007 Dec 21
0
[Virtio-for-kvm] [PATCH 3/7] userspace virtio
...qemu/hw/virtio-blk.c | 163 ++++++++++++++++++++++++++++++++++++++++++++++++++ qemu/sysemu.h | 2 +- qemu/vl.c | 4 + 6 files changed, 185 insertions(+), 2 deletions(-) create mode 100644 qemu/hw/virtio-blk.c diff --git a/qemu/Makefile.target b/qemu/Makefile.target index 17ff6f2..535f4f5 100644 --- a/qemu/Makefile.target +++ b/qemu/Makefile.target @@ -464,7 +464,7 @@ VL_OBJS += rtl8139.o VL_OBJS+= hypercall.o # virtio devices -VL_OBJS += virtio.o virtio-net.o +VL_OBJS += virtio.o virtio-net.o virtio-blk.o ifeq ($(TARGET_BASE_ARCH), i386) # Hardware support diff --g...
2007 Dec 21
0
[Virtio-for-kvm] [PATCH 3/7] userspace virtio
...qemu/hw/virtio-blk.c | 163 ++++++++++++++++++++++++++++++++++++++++++++++++++ qemu/sysemu.h | 2 +- qemu/vl.c | 4 + 6 files changed, 185 insertions(+), 2 deletions(-) create mode 100644 qemu/hw/virtio-blk.c diff --git a/qemu/Makefile.target b/qemu/Makefile.target index 17ff6f2..535f4f5 100644 --- a/qemu/Makefile.target +++ b/qemu/Makefile.target @@ -464,7 +464,7 @@ VL_OBJS += rtl8139.o VL_OBJS+= hypercall.o # virtio devices -VL_OBJS += virtio.o virtio-net.o +VL_OBJS += virtio.o virtio-net.o virtio-blk.o ifeq ($(TARGET_BASE_ARCH), i386) # Hardware support diff --g...
2007 Dec 21
0
[Virtio-for-kvm] [PATCH 2/7] userspace virtio
....h | 5 ++ qemu/hw/pci.c | 5 +- qemu/hw/virtio-net.c | 178 ++++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 188 insertions(+), 2 deletions(-) create mode 100644 qemu/hw/virtio-net.c diff --git a/qemu/Makefile.target b/qemu/Makefile.target index 8b5853b..17ff6f2 100644 --- a/qemu/Makefile.target +++ b/qemu/Makefile.target @@ -464,7 +464,7 @@ VL_OBJS += rtl8139.o VL_OBJS+= hypercall.o # virtio devices -VL_OBJS += virtio.o +VL_OBJS += virtio.o virtio-net.o ifeq ($(TARGET_BASE_ARCH), i386) # Hardware support diff --git a/qemu/hw/pc.h b/qemu/hw/pc.h in...
2007 Dec 21
0
[Virtio-for-kvm] [PATCH 2/7] userspace virtio
....h | 5 ++ qemu/hw/pci.c | 5 +- qemu/hw/virtio-net.c | 178 ++++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 188 insertions(+), 2 deletions(-) create mode 100644 qemu/hw/virtio-net.c diff --git a/qemu/Makefile.target b/qemu/Makefile.target index 8b5853b..17ff6f2 100644 --- a/qemu/Makefile.target +++ b/qemu/Makefile.target @@ -464,7 +464,7 @@ VL_OBJS += rtl8139.o VL_OBJS+= hypercall.o # virtio devices -VL_OBJS += virtio.o +VL_OBJS += virtio.o virtio-net.o ifeq ($(TARGET_BASE_ARCH), i386) # Hardware support diff --git a/qemu/hw/pc.h b/qemu/hw/pc.h in...