mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-27 16:15:23 +00:00
9817604afc
This matches the public API and helps to get rid of some special case code in the remote generator. Rename driver API functions and XDR protocol structs. No functional change included outside of the remote generator.
90 lines
2.5 KiB
C
90 lines
2.5 KiB
C
|
|
/*
|
|
* esx_device_monitor.c: device monitor functions for managing VMware ESX
|
|
* host devices
|
|
*
|
|
* Copyright (C) 2010 Red Hat, Inc.
|
|
* Copyright (C) 2010 Matthias Bolte <matthias.bolte@googlemail.com>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "internal.h"
|
|
#include "util.h"
|
|
#include "memory.h"
|
|
#include "logging.h"
|
|
#include "uuid.h"
|
|
#include "esx_private.h"
|
|
#include "esx_device_monitor.h"
|
|
#include "esx_vi.h"
|
|
#include "esx_vi_methods.h"
|
|
#include "esx_util.h"
|
|
|
|
#define VIR_FROM_THIS VIR_FROM_ESX
|
|
|
|
|
|
|
|
static virDrvOpenStatus
|
|
esxDeviceOpen(virConnectPtr conn,
|
|
virConnectAuthPtr auth ATTRIBUTE_UNUSED,
|
|
int flags ATTRIBUTE_UNUSED)
|
|
{
|
|
if (conn->driver->no != VIR_DRV_ESX) {
|
|
return VIR_DRV_OPEN_DECLINED;
|
|
}
|
|
|
|
conn->devMonPrivateData = conn->privateData;
|
|
|
|
return VIR_DRV_OPEN_SUCCESS;
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
esxDeviceClose(virConnectPtr conn)
|
|
{
|
|
conn->devMonPrivateData = NULL;
|
|
|
|
return 0;
|
|
}
|
|
|
|
|
|
|
|
static virDeviceMonitor esxDeviceMonitor = {
|
|
"ESX", /* name */
|
|
esxDeviceOpen, /* open */
|
|
esxDeviceClose, /* close */
|
|
NULL, /* numOfDevices */
|
|
NULL, /* listDevices */
|
|
NULL, /* deviceLookupByName */
|
|
NULL, /* deviceGetXMLDesc */
|
|
NULL, /* deviceGetParent */
|
|
NULL, /* deviceNumOfCaps */
|
|
NULL, /* deviceListCaps */
|
|
NULL, /* deviceCreateXML */
|
|
NULL, /* deviceDestroy */
|
|
};
|
|
|
|
|
|
|
|
int
|
|
esxDeviceRegister(void)
|
|
{
|
|
return virRegisterDeviceMonitor(&esxDeviceMonitor);
|
|
}
|