89 lines
2.6 KiB
Diff
89 lines
2.6 KiB
Diff
From 6ece5388a7fb7fc3c703cd1bc9e214ad411451d8 Mon Sep 17 00:00:00 2001
|
|
Message-Id: <6ece5388a7fb7fc3c703cd1bc9e214ad411451d8@dist-git>
|
|
From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= <berrange@redhat.com>
|
|
Date: Mon, 3 Feb 2020 18:07:23 +0000
|
|
Subject: [PATCH] conf: remove unused virCapabilitiesSetHostCPU method
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Reviewed-by: Daniel Henrique Barboza <danielhb413@gmail.com>
|
|
Reviewed-by: Jiri Denemark <jdenemar@redhat.com>
|
|
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
|
|
(cherry picked from commit 2ce9474c2a6ba3df4977068dcee35d3fa5468749)
|
|
|
|
BZ: https://bugzilla.redhat.com/show_bug.cgi?id=1785207
|
|
BZ: https://bugzilla.redhat.com/show_bug.cgi?id=1785211
|
|
Message-Id: <20200203180726.2203691-3-berrange@redhat.com>
|
|
Reviewed-by: Jiri Denemark <jdenemar@redhat.com>
|
|
---
|
|
src/conf/capabilities.c | 21 ---------------------
|
|
src/conf/capabilities.h | 6 ------
|
|
src/libvirt_private.syms | 1 -
|
|
3 files changed, 28 deletions(-)
|
|
|
|
diff --git a/src/conf/capabilities.c b/src/conf/capabilities.c
|
|
index 9a39858280..bf1d9936ed 100644
|
|
--- a/src/conf/capabilities.c
|
|
+++ b/src/conf/capabilities.c
|
|
@@ -368,27 +368,6 @@ virCapabilitiesHostNUMAAddCell(virCapsHostNUMAPtr caps,
|
|
g_ptr_array_add(caps->cells, cell);
|
|
}
|
|
|
|
-
|
|
-/**
|
|
- * virCapabilitiesSetHostCPU:
|
|
- * @caps: capabilities to extend
|
|
- * @cpu: CPU definition
|
|
- *
|
|
- * Sets host CPU specification
|
|
- */
|
|
-int
|
|
-virCapabilitiesSetHostCPU(virCapsPtr caps,
|
|
- virCPUDefPtr cpu)
|
|
-{
|
|
- if (cpu == NULL)
|
|
- return -1;
|
|
-
|
|
- caps->host.cpu = cpu;
|
|
-
|
|
- return 0;
|
|
-}
|
|
-
|
|
-
|
|
/**
|
|
* virCapabilitiesAllocMachines:
|
|
* @machines: machine variants for emulator ('pc', or 'isapc', etc)
|
|
diff --git a/src/conf/capabilities.h b/src/conf/capabilities.h
|
|
index f604e7b95e..4a49e94aa5 100644
|
|
--- a/src/conf/capabilities.h
|
|
+++ b/src/conf/capabilities.h
|
|
@@ -258,12 +258,6 @@ virCapabilitiesHostNUMAAddCell(virCapsHostNUMAPtr caps,
|
|
int npageinfo,
|
|
virCapsHostNUMACellPageInfoPtr pageinfo);
|
|
|
|
-
|
|
-int
|
|
-virCapabilitiesSetHostCPU(virCapsPtr caps,
|
|
- virCPUDefPtr cpu);
|
|
-
|
|
-
|
|
virCapsGuestMachinePtr *
|
|
virCapabilitiesAllocMachines(const char *const *names,
|
|
int nnames);
|
|
diff --git a/src/libvirt_private.syms b/src/libvirt_private.syms
|
|
index b97906b852..afa7d4fcae 100644
|
|
--- a/src/libvirt_private.syms
|
|
+++ b/src/libvirt_private.syms
|
|
@@ -77,7 +77,6 @@ virCapabilitiesHostSecModelAddBaseLabel;
|
|
virCapabilitiesInitCaches;
|
|
virCapabilitiesInitPages;
|
|
virCapabilitiesNew;
|
|
-virCapabilitiesSetHostCPU;
|
|
virCapabilitiesSetNetPrefix;
|
|
|
|
|
|
--
|
|
2.25.0
|
|
|