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:
Ján Tomko 2022-01-17 16:39:20 +01:00
parent a6ffb1712b
commit 186aa292a0
3 changed files with 2 additions and 11 deletions

View File

@ -2824,8 +2824,6 @@ virNetDevOpenvswitchAddPort;
virNetDevOpenvswitchGetMigrateData; virNetDevOpenvswitchGetMigrateData;
virNetDevOpenvswitchGetVhostuserIfname; virNetDevOpenvswitchGetVhostuserIfname;
virNetDevOpenvswitchInterfaceClearQos; virNetDevOpenvswitchInterfaceClearQos;
virNetDevOpenvswitchInterfaceClearRxQos;
virNetDevOpenvswitchInterfaceClearTxQos;
virNetDevOpenvswitchInterfaceGetMaster; virNetDevOpenvswitchInterfaceGetMaster;
virNetDevOpenvswitchInterfaceParseStats; virNetDevOpenvswitchInterfaceParseStats;
virNetDevOpenvswitchInterfaceSetQos; virNetDevOpenvswitchInterfaceSetQos;

View File

@ -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;

View File

@ -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;