mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-02 11:21:12 +00:00
5095bf06f1
This patch adds the following: - functions to set and get vf configs - Functions to replace and store vf configs (Only mac address is handled today. But the functions can be easily extended for vlans and other vf configs) - function to dump link dev info (This is moved from virnetdevvportprofile.c) Signed-off-by: Roopa Prabhu <roprabhu@cisco.com>
74 lines
2.3 KiB
C
74 lines
2.3 KiB
C
/*
|
|
* Copyright (C) 2010-2011 Red Hat, Inc.
|
|
* Copyright (C) 2010-2012 IBM Corporation
|
|
*
|
|
* 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
|
|
*/
|
|
|
|
#ifndef __VIR_NETLINK_H__
|
|
# define __VIR_NETLINK_H__
|
|
|
|
# include "config.h"
|
|
# include "internal.h"
|
|
|
|
# if defined(__linux__) && defined(HAVE_LIBNL)
|
|
|
|
# include <netlink/msg.h>
|
|
|
|
# else
|
|
|
|
struct nl_msg;
|
|
struct sockaddr_nl;
|
|
struct nlattr;
|
|
|
|
# endif /* __linux__ */
|
|
|
|
int virNetlinkCommand(struct nl_msg *nl_msg,
|
|
unsigned char **respbuf, unsigned int *respbuflen,
|
|
int nl_pid);
|
|
|
|
typedef void (*virNetlinkEventHandleCallback)(unsigned char *msg, int length, struct sockaddr_nl *peer, bool *handled, void *opaque);
|
|
|
|
typedef void (*virNetlinkEventRemoveCallback)(int watch, const unsigned char *macaddr, void *opaque);
|
|
|
|
/**
|
|
* stopNetlinkEventServer: stop the monitor to receive netlink messages for libvirtd
|
|
*/
|
|
int virNetlinkEventServiceStop(void);
|
|
|
|
/**
|
|
* startNetlinkEventServer: start a monitor to receive netlink messages for libvirtd
|
|
*/
|
|
int virNetlinkEventServiceStart(void);
|
|
|
|
/**
|
|
* virNetlinkEventServiceIsRunning: returns if the netlink event service is running.
|
|
*/
|
|
bool virNetlinkEventServiceIsRunning(void);
|
|
|
|
/**
|
|
* virNetlinkEventAddClient: register a callback for handling of netlink messages
|
|
*/
|
|
int virNetlinkEventAddClient(virNetlinkEventHandleCallback handleCB,
|
|
virNetlinkEventRemoveCallback removeCB,
|
|
void *opaque, const unsigned char *macaddr);
|
|
|
|
/**
|
|
* virNetlinkEventRemoveClient: unregister a callback from a netlink monitor
|
|
*/
|
|
int virNetlinkEventRemoveClient(int watch, const unsigned char *macaddr);
|
|
|
|
#endif /* __VIR_NETLINK_H__ */
|