From: Zhiyong Yang Date: Mon, 16 Oct 2017 02:30:44 +0000 (+0800) Subject: app/testpmd: remove useless function declarations X-Git-Tag: spdx-start~1173 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=84656cb7c99b736871738dea23f5d28f6b0f0599;p=dpdk.git app/testpmd: remove useless function declarations The four function declarations have no function implementation, remove them. Fixes: 0db70a803028 ("app/testpmd: add commands for filters") Cc: stable@dpdk.org Signed-off-by: Zhiyong Yang --- diff --git a/app/test-pmd/testpmd.h b/app/test-pmd/testpmd.h index 265b75f9f1..15ebf8c92d 100644 --- a/app/test-pmd/testpmd.h +++ b/app/test-pmd/testpmd.h @@ -698,10 +698,6 @@ void port_rss_hash_conf_show(portid_t port_id, char rss_info[], int show_rss_key); void port_rss_hash_key_update(portid_t port_id, char rss_type[], uint8_t *hash_key, uint hash_key_len); -void get_syn_filter(portid_t port_id); -void get_ethertype_filter(portid_t port_id, uint16_t index); -void get_2tuple_filter(portid_t port_id, uint16_t index); -void get_5tuple_filter(portid_t port_id, uint16_t index); int rx_queue_id_is_invalid(queueid_t rxq_id); int tx_queue_id_is_invalid(queueid_t txq_id); void setup_gro(const char *onoff, portid_t port_id);