From 747643ced0f1950360a2af103bb2490849aa3abf Mon Sep 17 00:00:00 2001 From: Miroslav Rezanina Date: Thu, 7 Jun 2018 07:43:14 +0200 Subject: [PATCH 262/268] Disable new pvrdma device RH-Author: Miroslav Rezanina Message-id: <5d290e25879e3ac42c247ff3c3a524001ceb0be1.1528355911.git.mrezanin@redhat.com> Patchwork-id: 80597 O-Subject: [RHEL-7.6 qemu-kvm-rhev PATCH 6/7] Disable new pvrdma device Bugzilla: 1586357 RH-Acked-by: Thomas Huth RH-Acked-by: Laurent Vivier RH-Acked-by: Markus Armbruster From: Miroslav Rezanina New pvrdma device was introduced in rebase to QEMU 2.12. We do not want to support this device. Signed-off-by: Miroslav Rezanina --- hw/rdma/Makefile.objs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hw/rdma/Makefile.objs b/hw/rdma/Makefile.objs index 3504c39..02ca2a9 100644 --- a/hw/rdma/Makefile.objs +++ b/hw/rdma/Makefile.objs @@ -1,5 +1,6 @@ ifeq ($(CONFIG_RDMA),y) obj-$(CONFIG_PCI) += rdma_utils.o rdma_backend.o rdma_rm.o obj-$(CONFIG_PCI) += vmw/pvrdma_dev_ring.o vmw/pvrdma_cmd.o \ - vmw/pvrdma_qp_ops.o vmw/pvrdma_main.o + vmw/pvrdma_qp_ops.o +#obj-$(CONFIG_PCI) += vmw/pvrdma_main.o endif -- 1.8.3.1