net/mlx5: fix integrity item validation and translation
[dpdk.git] / drivers / net / tap / tap_rss.h
index 4ebb653..48c151c 100644 (file)
@@ -9,6 +9,12 @@
 #define TAP_MAX_QUEUES 16
 #endif
 
+/* Fixed RSS hash key size in bytes. */
+#define TAP_RSS_HASH_KEY_SIZE 40
+
+/* Supported RSS */
+#define TAP_RSS_HF_MASK (~(RTE_ETH_RSS_IP | RTE_ETH_RSS_UDP | RTE_ETH_RSS_TCP))
+
 /* hashed fields for RSS */
 enum hash_field {
        HASH_FIELD_IPV4_L3,     /* IPv4 src/dst addr */
@@ -29,6 +35,6 @@ struct rss_key {
        __u32 key_size;
        __u32 queues[TAP_MAX_QUEUES];
        __u32 nb_queues;
-} __attribute__((packed));
+} __rte_packed;
 
 #endif /* _TAP_RSS_H_ */