net/i40e: fix parsing packet type for NEON
[dpdk.git] / drivers / net / enic / base / cq_enet_desc.h
index 602ac22..a34a4f5 100644 (file)
@@ -58,6 +58,19 @@ struct cq_enet_rq_clsf_desc {
        uint8_t type_color;
 };
 
+/* Completion queue descriptor: Ethernet receive queue, 64B */
+struct cq_enet_rq_desc_64 {
+       uint16_t completed_index_flags;
+       uint16_t q_number_rss_type_flags;
+       uint32_t rss_hash;
+       uint16_t bytes_written_flags;
+       uint16_t vlan;
+       uint16_t checksum_fcoe;
+       uint8_t flags;
+       uint8_t unused[48];
+       uint8_t type_color;
+};
+
 #define CQ_ENET_RQ_DESC_FLAGS_INGRESS_PORT          (0x1 << 12)
 #define CQ_ENET_RQ_DESC_FLAGS_FCOE                  (0x1 << 13)
 #define CQ_ENET_RQ_DESC_FLAGS_EOP                   (0x1 << 14)