summaryrefslogtreecommitdiff
path: root/src/driver-network.h
diff options
context:
space:
mode:
authorDaniel P. Berrange <berrange@redhat.com>2015-01-20 16:16:26 +0000
committerDaniel P. Berrange <berrange@redhat.com>2015-01-27 12:02:04 +0000
commit55ea7be7d96c6967e1492ce4ccc38bb85a83881d (patch)
treed0eb09fa131b212e68547949157a4b4d006d6ac0 /src/driver-network.h
parent220c01aa0a18919f83047f07d7adcf417659a480 (diff)
downloadlibvirt-55ea7be7d96c6967e1492ce4ccc38bb85a83881d.tar.gz
Removing probing of secondary drivers
For stateless, client side drivers, it is never correct to probe for secondary drivers. It is only ever appropriate to use the secondary driver that is associated with the hypervisor in question. As a result the ESX & HyperV drivers have both been forced to do hacks where they register no-op drivers for the ones they don't implement. For stateful, server side drivers, we always just want to use the same built-in shared driver. The exception is virtualbox which is really a stateless driver and so wants to use its own server side secondary drivers. To deal with this virtualbox has to be built as 3 separate loadable modules to allow registration to work in the right order. This can all be simplified by introducing a new struct recording the precise set of secondary drivers each hypervisor driver wants struct _virConnectDriver { virHypervisorDriverPtr hypervisorDriver; virInterfaceDriverPtr interfaceDriver; virNetworkDriverPtr networkDriver; virNodeDeviceDriverPtr nodeDeviceDriver; virNWFilterDriverPtr nwfilterDriver; virSecretDriverPtr secretDriver; virStorageDriverPtr storageDriver; }; Instead of registering the hypervisor driver, we now just register a virConnectDriver instead. This allows us to remove all probing of secondary drivers. Once we have chosen the primary driver, we immediately know the correct secondary drivers to use. Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
Diffstat (limited to 'src/driver-network.h')
-rw-r--r--src/driver-network.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/driver-network.h b/src/driver-network.h
index 9ede53c47d..e65117c49a 100644
--- a/src/driver-network.h
+++ b/src/driver-network.h
@@ -25,9 +25,6 @@
# error "Don't include this file directly, only use driver.h"
# endif
-typedef virDrvConnectOpen virDrvNetworkOpen;
-typedef virDrvConnectClose virDrvNetworkClose;
-
typedef int
(*virDrvConnectNumOfNetworks)(virConnectPtr conn);
@@ -129,15 +126,9 @@ typedef virNetworkDriver *virNetworkDriverPtr;
*
* Structure associated to a network virtualization driver, defining the various
* entry points for it.
- *
- * All drivers must support the following fields/methods:
- * - open
- * - close
*/
struct _virNetworkDriver {
- const char * name; /* the name of the driver */
- virDrvNetworkOpen networkOpen;
- virDrvNetworkClose networkClose;
+ const char *name; /* the name of the driver */
virDrvConnectNumOfNetworks connectNumOfNetworks;
virDrvConnectListNetworks connectListNetworks;
virDrvConnectNumOfDefinedNetworks connectNumOfDefinedNetworks;