ethdev: fix build of Tx rate limitation debug
authorThomas Monjalon <thomas.monjalon@6wind.com>
Wed, 2 Jul 2014 13:10:30 +0000 (15:10 +0200)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Wed, 2 Jul 2014 20:32:18 +0000 (22:32 +0200)
The commit 8dbe82b0733 (Tx rate limitation) didn't compile if
CONFIG_RTE_LIBRTE_ETHDEV_DEBUG is enabled.

Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
lib/librte_ether/rte_ethdev.c

index 0ebb8fb..8dccc6f 100644 (file)
@@ -2261,7 +2261,7 @@ int rte_eth_set_queue_rate_limit(uint8_t port_id, uint16_t queue_idx,
        if (tx_rate > link.link_speed) {
                PMD_DEBUG_TRACE("set queue rate limit:invalid tx_rate=%d, "
                                "bigger than link speed= %d\n",
-                       tx_rate, link_speed);
+                       tx_rate, link.link_speed);
                return -EINVAL;
        }
 
@@ -2298,7 +2298,7 @@ int rte_eth_set_vf_rate_limit(uint8_t port_id, uint16_t vf, uint16_t tx_rate,
        if (tx_rate > link.link_speed) {
                PMD_DEBUG_TRACE("set VF rate limit:invalid tx_rate=%d, "
                                "bigger than link speed= %d\n",
-                               tx_rate, link_speed);
+                               tx_rate, link.link_speed);
                return -EINVAL;
        }