mirror of https://gitee.com/openkylin/libvirt.git
cmdAttachInterface: Fully implement @floor support
In my previous commit d7f5c88961
I tried to introduce support
for inbound.floor. But the code change was incomplete. This is
the change needed to fully enable the feature.
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
parent
f7fba69bd7
commit
68b2405c67
|
@ -1023,12 +1023,16 @@ cmdAttachInterface(vshControl *ctl, const vshCmd *cmd)
|
|||
if (inboundStr || outboundStr) {
|
||||
virBufferAddLit(&buf, "<bandwidth>\n");
|
||||
virBufferAdjustIndent(&buf, 2);
|
||||
if (inboundStr && inbound.average > 0) {
|
||||
virBufferAsprintf(&buf, "<inbound average='%llu'", inbound.average);
|
||||
if (inboundStr && (inbound.average || inbound.floor)) {
|
||||
virBufferAddLit(&buf, "<inbound");
|
||||
if (inbound.average > 0)
|
||||
virBufferAsprintf(&buf, " average='%llu'", inbound.average);
|
||||
if (inbound.peak > 0)
|
||||
virBufferAsprintf(&buf, " peak='%llu'", inbound.peak);
|
||||
if (inbound.burst > 0)
|
||||
virBufferAsprintf(&buf, " burst='%llu'", inbound.burst);
|
||||
if (inbound.floor > 0)
|
||||
virBufferAsprintf(&buf, " floor='%llu'", inbound.floor);
|
||||
virBufferAddLit(&buf, "/>\n");
|
||||
}
|
||||
if (outboundStr && outbound.average > 0) {
|
||||
|
|
Loading…
Reference in New Issue