net/hns3: remove unused constants

This patch removed some unused macros defined in hns3_rss.h,
these macros are used to set tuples for abandoned RTE_ETH_FILTER_HASH
in hns3_dev_filter_ctrl().

Signed-off-by: Hao Chen <chenhao164@huawei.com>
Signed-off-by: Wei Hu (Xavier) <xavier.huwei@huawei.com>
This commit is contained in:
Hao Chen 2019-12-21 18:32:53 +08:00 committed by Ferruh Yigit
parent 27f9707785
commit 37c7ed1264

View File

@ -27,7 +27,6 @@
#define HNS3_RSS_HASH_ALGO_TOEPLITZ 0
#define HNS3_RSS_HASH_ALGO_SIMPLE 1
#define HNS3_RSS_HASH_ALGO_SYMMETRIC 2
#define HNS3_RSS_HASH_ALGO_MASK 0xf
#define HNS3_RSS_INPUT_TUPLE_OTHER GENMASK(3, 0)
@ -56,15 +55,6 @@ struct hns3_rss_conf {
uint16_t queue[HNS3_RSS_QUEUES_BUFFER_NUM]; /* Queues indices to use */
};
/* Bit 8 ~Bit 15 */
#define HNS3_INSET_IPV4_SRC 0x00000100UL
#define HNS3_INSET_IPV4_DST 0x00000200UL
#define HNS3_INSET_IPV6_SRC 0x00000400UL
#define HNS3_INSET_IPV6_DST 0x00000800UL
#define HNS3_INSET_SRC_PORT 0x00001000UL
#define HNS3_INSET_DST_PORT 0x00002000UL
#define HNS3_INSET_SCTP_VT 0x00004000UL
#ifndef ilog2
static inline int rss_ilog2(uint32_t x)
{