X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=vswitchd%2Fbridge.c;h=aed36c6359df994f51f4979bb8f4a1167254ff44;hb=93d1f7f44eedee39bd6a86c240b9ae692eda570e;hp=6c6928aad4bc5231f154944ba2767dbfc2aa895c;hpb=1d9d9681b5578d264a37dbf082ed5a73a2b466a0;p=sliver-openvswitch.git diff --git a/vswitchd/bridge.c b/vswitchd/bridge.c index 6c6928aad..aed36c635 100644 --- a/vswitchd/bridge.c +++ b/vswitchd/bridge.c @@ -2571,9 +2571,12 @@ iface_configure_qos(struct iface *iface, const struct ovsrec_qos *qos) if (!queue_zero) { static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 1); VLOG_WARN_RL(&rl, "interface %s: QoS configured without a default " - "queue (queue 0). Packets not directed to a " - "correctly configured queue may be dropped.", + "queue (queue 0). Using default configuration.", iface->name); + + shash_init(&details); + netdev_set_queue(iface->netdev, 0, &details); + shash_destroy(&details); } }