/Linux-v5.10/fs/cifs/ |
D | smbdirect.h | 49 * 4. Receive and reassembly queues for data receive path 130 /* Reassembly queue */ 135 /* total data length of reassembly queue */ 138 /* the offset to first buffer in reassembly queue */ 148 * payload (SMB packet) in reassembly queue so we can return a 251 /* Link to receive queue or reassembly queue */
|
D | smbdirect.c | 484 * reassembly queue and wake up the reading thread in recv_done() 1114 * layer. All the inncoming payload go to the reassembly queue, regardless of 1115 * if reassembly is required. The uuper layer code reads from the queue for all 1117 * Put a received packet to the reassembly queue 1143 * Get the first entry at the front of reassembly queue 1342 /* It's not posssible for upper layer to get to reassembly */ in smbd_destroy() 1343 log_rdma_event(INFO, "drain the reassembly queue\n"); in smbd_destroy() 1743 * Receive data from receive reassembly queue 1744 * All the incoming data packets are placed in reassembly queue 1751 * borrow the buffer from reassembly queue, and return it after data is [all …]
|
/Linux-v5.10/drivers/bluetooth/ |
D | bfusb.c | 64 struct sk_buff *reassembly; member 251 kfree_skb(data->reassembly); in bfusb_recv_block() 252 data->reassembly = NULL; in bfusb_recv_block() 261 if (data->reassembly) { in bfusb_recv_block() 263 kfree_skb(data->reassembly); in bfusb_recv_block() 264 data->reassembly = NULL; in bfusb_recv_block() 314 data->reassembly = skb; in bfusb_recv_block() 316 if (!data->reassembly) { in bfusb_recv_block() 323 skb_put_data(data->reassembly, buf, len); in bfusb_recv_block() 326 hci_recv_frame(data->hdev, data->reassembly); in bfusb_recv_block() [all …]
|
D | hci_ath.c | 198 bt_dev_err(hu->hdev, "Frame reassembly failed (%d)", err); in ath_recv()
|
D | hci_h4.c | 119 bt_dev_err(hu->hdev, "Frame reassembly failed (%d)", err); in h4_recv()
|
D | hci_ag6xx.c | 113 bt_dev_err(hu->hdev, "Frame reassembly failed (%d)", err); in ag6xx_recv()
|
/Linux-v5.10/net/bluetooth/cmtp/ |
D | core.c | 109 struct sk_buff *skb = session->reassembly[id], *nskb; in cmtp_add_msgpart() 127 session->reassembly[id] = nskb; in cmtp_add_msgpart() 174 cmtp_recv_capimsg(session, session->reassembly[id]); in cmtp_recv_frame() 175 session->reassembly[id] = NULL; in cmtp_recv_frame() 181 kfree_skb(session->reassembly[id]); in cmtp_recv_frame() 182 session->reassembly[id] = NULL; in cmtp_recv_frame() 377 session->reassembly[i] = NULL; in cmtp_add_connection()
|
D | cmtp.h | 100 struct sk_buff *reassembly[16]; member
|
/Linux-v5.10/Documentation/devicetree/bindings/dma/ti/ |
D | k3-udma.yaml | 16 The UDMA-P architecture facilitates the segmentation and reassembly of SoC DMA 20 segmentation or reassembly operations to be ongoing. The DMA controller 22 segmentation and reassembly operations to be time division multiplexed between
|
/Linux-v5.10/net/sctp/ |
D | ulpqueue.c | 56 /* Flush the reassembly and ordering queues. */ 100 /* Do reassembly if needed. */ in sctp_ulpq_tail_data() 314 * as stored in the reassembly queue. The skb's may be non-linear if the sctp 362 /* Remove the first fragment from the reassembly queue. */ in sctp_make_reassembled_event() 379 /* Remove the fragment from the reassembly queue. */ in sctp_make_reassembled_event() 672 * Flush out stale fragments from the reassembly queue when processing 712 * Drain the reassembly queue. If we just cleared parted delivery, it 713 * is possible that the reassembly queue will contain already reassembled 1018 /* Renege 'needed' bytes from the reassembly queue. */ 1096 * delivered; otherwise, drain the reassembly queue. in sctp_ulpq_renege()
|
/Linux-v5.10/net/ieee802154/6lowpan/ |
D | Makefile | 4 ieee802154_6lowpan-y := core.o rx.o reassembly.o tx.o
|
D | reassembly.c | 2 /* 6LoWPAN fragment reassembly 7 * Based on: net/ipv6/reassembly.c 160 * queue is eligible for reassembly i.e. it is not COMPLETE, 183 net_dbg_ratelimited("lowpan_frag_reasm: no memory for reassembly\n"); in lowpan_frag_reasm()
|
/Linux-v5.10/drivers/atm/ |
D | midway.h | 176 #define MID_VCI_SIZE 0x00038000 /* reassembly buffer size, 200 * Reassembly buffer descriptor
|
D | iphase.h | 480 /*----------------- Reassembly control registers ---------------------*/ 481 /* The reassembly registers are 16 bits access and the addresses 569 /* These memory maps are actually offsets from the segmentation and reassembly RAM base addresses … 602 /* Reassembly Control Memory Map */ 608 #define REASS_TABLE 0x7000 /* Reassembly Table */ 615 #define REASS_TABLE_SZ 1024 /* Number of entries in Reassembly Table */ 625 /* Reassembly Table */
|
D | eni.h | 128 int size; /* PDU size in reassembly buffer */
|
/Linux-v5.10/include/net/sctp/ |
D | ulpqueue.h | 13 * reassembly and ordering.
|
/Linux-v5.10/net/ipv6/ |
D | Makefile | 11 raw.o icmp.o mcast.o reassembly.o tcp_ipv6.o ping.o \
|
D | reassembly.c | 3 * IPv6 fragment reassembly 247 * queue is eligible for reassembly i.e. it is not COMPLETE, 312 net_dbg_ratelimited("ip6_frag_reasm: no memory for reassembly\n"); in ip6_frag_reasm()
|
D | ipcomp6.c | 17 * The decompression of IP datagram MUST be done after the reassembly,
|
/Linux-v5.10/net/ipv6/netfilter/ |
D | nf_conntrack_reasm.c | 3 * IPv6 fragment reassembly for connection tracking 10 * Based on: net/ipv6/reassembly.c 312 * queue is eligible for reassembly i.e. it is not COMPLETE,
|
/Linux-v5.10/net/ipv4/ |
D | inet_fragment.c | 7 * ipv6/reassembly. and ipv6 nf conntrack reassembly 356 * queue/fragments kept for later reassembly). in inet_frag_queue_insert()
|
/Linux-v5.10/drivers/net/ethernet/sun/ |
D | cassini.h | 104 len of non-reassembly pkt 1007 /* PIO diagnostic access to RX reassembly DMA Table RAM. 6-bit register holds 1008 * one of 64 79-bit locations in the RX Reassembly DMA table and the addr of 1016 #define REG_RX_TABLE_ADDR 0x4128 /* RX reassembly DMA table 1020 #define REG_RX_TABLE_DATA_LOW 0x412C /* RX reassembly DMA table 1022 #define REG_RX_TABLE_DATA_MID 0x4130 /* RX reassembly DMA table 1024 #define REG_RX_TABLE_DATA_HI 0x4134 /* RX reassembly DMA table 1071 for reassembly */ 1173 reassembly */ 1411 /* when CRC is not stripped, reassembly packets will not contain the CRC. [all …]
|
/Linux-v5.10/net/tipc/ |
D | msg.c | 127 * out: set when successful non-complete reassembly, otherwise NULL 129 * out: head buf after successful complete reassembly, otherwise NULL 130 * Returns 1 when reassembly complete, otherwise 0
|
/Linux-v5.10/drivers/net/arcnet/ |
D | rfc1201.c | 335 /* "bad" duplicate, kill reassembly */ in rx() 336 …arc_printk(D_EXTRA, dev, "out-of-order splitpacket, reassembly (seq=%d) aborted (splitflag=%d, seq… in rx()
|
/Linux-v5.10/net/nfc/nci/ |
D | data.c | 244 /* third, free old reassembly */ in nci_add_rx_data_frag()
|