mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-23 14:15:28 +00:00
util: openvswitch: unexport InterfaceClear{Rx,Tx}Qos
This also removes the indentation error. Signed-off-by: Ján Tomko <jtomko@redhat.com> Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
parent
a6ffb1712b
commit
186aa292a0
@ -2824,8 +2824,6 @@ virNetDevOpenvswitchAddPort;
|
||||
virNetDevOpenvswitchGetMigrateData;
|
||||
virNetDevOpenvswitchGetVhostuserIfname;
|
||||
virNetDevOpenvswitchInterfaceClearQos;
|
||||
virNetDevOpenvswitchInterfaceClearRxQos;
|
||||
virNetDevOpenvswitchInterfaceClearTxQos;
|
||||
virNetDevOpenvswitchInterfaceGetMaster;
|
||||
virNetDevOpenvswitchInterfaceParseStats;
|
||||
virNetDevOpenvswitchInterfaceSetQos;
|
||||
|
@ -637,7 +637,7 @@ virNetDevOpenvswitchFindUUID(const char *table,
|
||||
return uuid;
|
||||
}
|
||||
|
||||
int
|
||||
static int
|
||||
virNetDevOpenvswitchInterfaceClearTxQos(const char *ifname,
|
||||
const unsigned char *vmuuid)
|
||||
{
|
||||
@ -716,7 +716,7 @@ virNetDevOpenvswitchInterfaceClearTxQos(const char *ifname,
|
||||
return ret;
|
||||
}
|
||||
|
||||
int
|
||||
static int
|
||||
virNetDevOpenvswitchInterfaceClearRxQos(const char *ifname)
|
||||
{
|
||||
g_autoptr(virCommand) cmd = NULL;
|
||||
|
@ -80,10 +80,3 @@ int virNetDevOpenvswitchInterfaceSetQos(const char *ifname,
|
||||
int virNetDevOpenvswitchInterfaceClearQos(const char *ifname,
|
||||
const unsigned char *vmuuid)
|
||||
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) G_GNUC_WARN_UNUSED_RESULT;
|
||||
|
||||
int virNetDevOpenvswitchInterfaceClearRxQos(const char *ifname)
|
||||
ATTRIBUTE_NONNULL(1) G_GNUC_WARN_UNUSED_RESULT;
|
||||
|
||||
int virNetDevOpenvswitchInterfaceClearTxQos(const char *ifname,
|
||||
const unsigned char *vmid)
|
||||
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) G_GNUC_WARN_UNUSED_RESULT;
|
||||
|
Loading…
Reference in New Issue
Block a user