[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v5 13/48] hw/net/net_tx_pkt: Remove net_rx_pkt_get_l4_info
From: |
Akihiko Odaki |
Subject: |
[PATCH v5 13/48] hw/net/net_tx_pkt: Remove net_rx_pkt_get_l4_info |
Date: |
Tue, 23 May 2023 11:43:04 +0900 |
This function is not used.
Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
---
hw/net/net_rx_pkt.h | 9 ---------
hw/net/net_rx_pkt.c | 5 -----
2 files changed, 14 deletions(-)
diff --git a/hw/net/net_rx_pkt.h b/hw/net/net_rx_pkt.h
index a06f5c2675..ce8dbdb284 100644
--- a/hw/net/net_rx_pkt.h
+++ b/hw/net/net_rx_pkt.h
@@ -119,15 +119,6 @@ eth_ip6_hdr_info *net_rx_pkt_get_ip6_info(struct NetRxPkt
*pkt);
*/
eth_ip4_hdr_info *net_rx_pkt_get_ip4_info(struct NetRxPkt *pkt);
-/**
- * fetches L4 header analysis results
- *
- * Return: pointer to analysis results structure which is stored in internal
- * packet area.
- *
- */
-eth_l4_hdr_info *net_rx_pkt_get_l4_info(struct NetRxPkt *pkt);
-
typedef enum {
NetPktRssIpV4,
NetPktRssIpV4Tcp,
diff --git a/hw/net/net_rx_pkt.c b/hw/net/net_rx_pkt.c
index 63be6e05ad..6125a063d7 100644
--- a/hw/net/net_rx_pkt.c
+++ b/hw/net/net_rx_pkt.c
@@ -236,11 +236,6 @@ eth_ip4_hdr_info *net_rx_pkt_get_ip4_info(struct NetRxPkt
*pkt)
return &pkt->ip4hdr_info;
}
-eth_l4_hdr_info *net_rx_pkt_get_l4_info(struct NetRxPkt *pkt)
-{
- return &pkt->l4hdr_info;
-}
-
static inline void
_net_rx_rss_add_chunk(uint8_t *rss_input, size_t *bytes_written,
void *ptr, size_t size)
--
2.40.1
- [PATCH v5 04/48] igb: Fix Rx packet type encoding, (continued)
- [PATCH v5 04/48] igb: Fix Rx packet type encoding, Akihiko Odaki, 2023/05/22
- [PATCH v5 05/48] igb: Do not require CTRL.VME for tx VLAN tagging, Akihiko Odaki, 2023/05/22
- [PATCH v5 06/48] igb: Clear IMS bits when committing ICR access, Akihiko Odaki, 2023/05/22
- [PATCH v5 07/48] net/net_rx_pkt: Use iovec for net_rx_pkt_set_protocols(), Akihiko Odaki, 2023/05/22
- [PATCH v5 08/48] e1000e: Always copy ethernet header, Akihiko Odaki, 2023/05/22
- [PATCH v5 09/48] igb: Always copy ethernet header, Akihiko Odaki, 2023/05/22
- [PATCH v5 10/48] Fix references to igb Avocado test, Akihiko Odaki, 2023/05/22
- [PATCH v5 12/48] tests/avocado: Remove test_igb_nomsi_kvm, Akihiko Odaki, 2023/05/22
- [PATCH v5 11/48] tests/avocado: Remove unused imports, Akihiko Odaki, 2023/05/22
- [PATCH v5 14/48] net/eth: Rename eth_setup_vlan_headers_ex, Akihiko Odaki, 2023/05/22
- [PATCH v5 13/48] hw/net/net_tx_pkt: Remove net_rx_pkt_get_l4_info,
Akihiko Odaki <=
- [PATCH v5 15/48] e1000x: Share more Rx filtering logic, Akihiko Odaki, 2023/05/22
- [PATCH v5 16/48] e1000x: Take CRC into consideration for size check, Akihiko Odaki, 2023/05/22
- [PATCH v5 17/48] e1000x: Rename TcpIpv6 into TcpIpv6Ex, Akihiko Odaki, 2023/05/22
- [PATCH v5 18/48] e1000e: Always log status after building rx metadata, Akihiko Odaki, 2023/05/22
- [PATCH v5 19/48] igb: Always log status after building rx metadata, Akihiko Odaki, 2023/05/22
- [PATCH v5 20/48] igb: Remove goto, Akihiko Odaki, 2023/05/22
- [PATCH v5 22/48] e1000e: Reset packet state after emptying Tx queue, Akihiko Odaki, 2023/05/22
- [PATCH v5 21/48] igb: Read DCMD.VLE of the first Tx descriptor, Akihiko Odaki, 2023/05/22
- [PATCH v5 26/48] igb: Fix igb_mac_reg_init coding style alignment, Akihiko Odaki, 2023/05/22
- [PATCH v5 31/48] net/eth: Always add VLAN tag, Akihiko Odaki, 2023/05/22