search for: bb5f6b0

Displaying 3 results from an estimated 3 matches for "bb5f6b0".

2011 Nov 13
0
[PATCH] kvm-tool: don't add the -Wunused-result flag
...previous version of gcc can't support this flag, it may cause a compile error. Signed-off-by: Wanlong Gao <gaowanlong at cn.fujitsu.com> --- tools/kvm/Makefile | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/tools/kvm/Makefile b/tools/kvm/Makefile index f4741f2..bb5f6b0 100644 --- a/tools/kvm/Makefile +++ b/tools/kvm/Makefile @@ -176,7 +176,6 @@ WARNINGS += -Wstrict-prototypes WARNINGS += -Wundef WARNINGS += -Wvolatile-register-var WARNINGS += -Wwrite-strings -WARNINGS += -Wunused-result CFLAGS += $(WARNINGS) -- 1.7.8.rc1
2011 Nov 15
2
[RFC] kvm tools: Add support for virtio-mmio
...vm/virtio/net.c | 8 +- tools/kvm/virtio/trans.c | 11 ++ 8 files changed, 260 insertions(+), 2 deletions(-) create mode 100644 tools/kvm/include/kvm/virtio-mmio.h create mode 100644 tools/kvm/virtio/mmio.c diff --git a/tools/kvm/Makefile b/tools/kvm/Makefile index bb5f6b0..449651c 100644 --- a/tools/kvm/Makefile +++ b/tools/kvm/Makefile @@ -84,6 +84,7 @@ OBJS += hw/vesa.o OBJS += hw/i8042.o OBJS += hw/pci-shmem.o OBJS += kvm-ipc.o +OBJS += virtio/mmio.o FLAGS_BFD := $(CFLAGS) -lbfd has_bfd := $(call try-cc,$(SOURCE_BFD),$(FLAGS_BFD)) diff --git a/tools/kvm/bu...
2011 Nov 15
2
[RFC] kvm tools: Add support for virtio-mmio
...vm/virtio/net.c | 8 +- tools/kvm/virtio/trans.c | 11 ++ 8 files changed, 260 insertions(+), 2 deletions(-) create mode 100644 tools/kvm/include/kvm/virtio-mmio.h create mode 100644 tools/kvm/virtio/mmio.c diff --git a/tools/kvm/Makefile b/tools/kvm/Makefile index bb5f6b0..449651c 100644 --- a/tools/kvm/Makefile +++ b/tools/kvm/Makefile @@ -84,6 +84,7 @@ OBJS += hw/vesa.o OBJS += hw/i8042.o OBJS += hw/pci-shmem.o OBJS += kvm-ipc.o +OBJS += virtio/mmio.o FLAGS_BFD := $(CFLAGS) -lbfd has_bfd := $(call try-cc,$(SOURCE_BFD),$(FLAGS_BFD)) diff --git a/tools/kvm/bu...