mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-23 22:25:25 +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;
|
virNetDevOpenvswitchGetMigrateData;
|
||||||
virNetDevOpenvswitchGetVhostuserIfname;
|
virNetDevOpenvswitchGetVhostuserIfname;
|
||||||
virNetDevOpenvswitchInterfaceClearQos;
|
virNetDevOpenvswitchInterfaceClearQos;
|
||||||
virNetDevOpenvswitchInterfaceClearRxQos;
|
|
||||||
virNetDevOpenvswitchInterfaceClearTxQos;
|
|
||||||
virNetDevOpenvswitchInterfaceGetMaster;
|
virNetDevOpenvswitchInterfaceGetMaster;
|
||||||
virNetDevOpenvswitchInterfaceParseStats;
|
virNetDevOpenvswitchInterfaceParseStats;
|
||||||
virNetDevOpenvswitchInterfaceSetQos;
|
virNetDevOpenvswitchInterfaceSetQos;
|
||||||
|
@ -637,7 +637,7 @@ virNetDevOpenvswitchFindUUID(const char *table,
|
|||||||
return uuid;
|
return uuid;
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
static int
|
||||||
virNetDevOpenvswitchInterfaceClearTxQos(const char *ifname,
|
virNetDevOpenvswitchInterfaceClearTxQos(const char *ifname,
|
||||||
const unsigned char *vmuuid)
|
const unsigned char *vmuuid)
|
||||||
{
|
{
|
||||||
@ -716,7 +716,7 @@ virNetDevOpenvswitchInterfaceClearTxQos(const char *ifname,
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
static int
|
||||||
virNetDevOpenvswitchInterfaceClearRxQos(const char *ifname)
|
virNetDevOpenvswitchInterfaceClearRxQos(const char *ifname)
|
||||||
{
|
{
|
||||||
g_autoptr(virCommand) cmd = NULL;
|
g_autoptr(virCommand) cmd = NULL;
|
||||||
|
@ -80,10 +80,3 @@ int virNetDevOpenvswitchInterfaceSetQos(const char *ifname,
|
|||||||
int virNetDevOpenvswitchInterfaceClearQos(const char *ifname,
|
int virNetDevOpenvswitchInterfaceClearQos(const char *ifname,
|
||||||
const unsigned char *vmuuid)
|
const unsigned char *vmuuid)
|
||||||
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) G_GNUC_WARN_UNUSED_RESULT;
|
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