mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-05 20:45:18 +00:00
7349fa2ebe
The udev and hal drivers both already call the same functions as these new functions added to node_device_linux_sysfs.c, but 1) we need to call them from node_device_driver.c, and 2) it would be nice to eliminate the duplicated code from the hal and udev backends.
33 lines
1.2 KiB
C
33 lines
1.2 KiB
C
/*
|
|
* node_device_linux_sysfs.h: Linux specific code to gather device data
|
|
* that is available from sysfs (but not from UDEV or HAL).
|
|
*
|
|
* Copyright (C) 2015 Red Hat, Inc.
|
|
*
|
|
* 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, see
|
|
* <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
#ifndef __VIR_NODE_DEVICE_LINUX_SYSFS_H__
|
|
# define __VIR_NODE_DEVICE_LINUX_SYSFS_H__
|
|
|
|
# include "node_device_conf.h"
|
|
|
|
int nodeDeviceSysfsGetSCSIHostCaps(virNodeDevCapDataPtr d);
|
|
int nodeDeviceSysfsGetPCIRelatedDevCaps(const char *sysfsPath,
|
|
virNodeDevCapDataPtr data);
|
|
|
|
#endif /* __VIR_NODE_DEVICE_LINUX_SYSFS_H__ */
|