Searched refs:NetTxPkt (Results 1 – 7 of 7) sorted by relevance
/openbmc/qemu/hw/net/ |
H A D | net_tx_pkt.h | 27 struct NetTxPkt; 38 void net_tx_pkt_init(struct NetTxPkt **pkt, uint32_t max_frags); 45 void net_tx_pkt_uninit(struct NetTxPkt *pkt); 53 struct virtio_net_hdr *net_tx_pkt_get_vhdr(struct NetTxPkt *pkt); 65 bool net_tx_pkt_build_vheader(struct NetTxPkt *pkt, bool tso_enable, 77 void net_tx_pkt_setup_vlan_header_ex(struct NetTxPkt *pkt, 88 net_tx_pkt_setup_vlan_header(struct NetTxPkt *pkt, uint16_t vlan) in net_tx_pkt_setup_vlan_header() 101 bool net_tx_pkt_add_raw_fragment(struct NetTxPkt *pkt, void *base, size_t len); 109 void net_tx_pkt_update_ip_checksums(struct NetTxPkt *pkt); 117 void net_tx_pkt_update_ip_hdr_checksum(struct NetTxPkt *pkt); [all …]
|
H A D | net_tx_pkt.c | 35 struct NetTxPkt { struct 64 void net_tx_pkt_init(struct NetTxPkt **pkt, uint32_t max_frags) in net_tx_pkt_init() argument 66 struct NetTxPkt *p = g_malloc0(sizeof *p); in net_tx_pkt_init() 82 void net_tx_pkt_uninit(struct NetTxPkt *pkt) in net_tx_pkt_uninit() 91 void net_tx_pkt_update_ip_hdr_checksum(struct NetTxPkt *pkt) in net_tx_pkt_update_ip_hdr_checksum() 105 void net_tx_pkt_update_ip_checksums(struct NetTxPkt *pkt) in net_tx_pkt_update_ip_checksums() 139 bool net_tx_pkt_update_sctp_checksum(struct NetTxPkt *pkt) in net_tx_pkt_update_sctp_checksum() 160 static void net_tx_pkt_calculate_hdr_len(struct NetTxPkt *pkt) in net_tx_pkt_calculate_hdr_len() 166 static bool net_tx_pkt_parse_headers(struct NetTxPkt *pkt) in net_tx_pkt_parse_headers() 279 static void net_tx_pkt_rebuild_payload(struct NetTxPkt *pkt) in net_tx_pkt_rebuild_payload() [all …]
|
H A D | vmxnet3_defs.h | 109 struct NetTxPkt *tx_pkt;
|
H A D | igb_core.h | 83 struct NetTxPkt *tx_pkt;
|
H A D | e1000e_core.h | 79 struct NetTxPkt *tx_pkt;
|
H A D | e1000e_core.c | 659 e1000e_on_tx_done_update_stats(E1000ECore *core, struct NetTxPkt *tx_pkt) in e1000e_on_tx_done_update_stats()
|
H A D | igb_core.c | 567 igb_on_tx_done_update_stats(IGBCore *core, struct NetTxPkt *tx_pkt, int qn) in igb_on_tx_done_update_stats()
|