aboutsummaryrefslogtreecommitdiffstats
path: root/net/rxrpc/recvmsg.c
AgeCommit message (Expand)AuthorFilesLines
2023-02-20rxrpc: Fix overproduction of wakeups to recvmsg()David Howells1-1/+15
2023-02-07rxrpc: Reduce unnecessary ack transmissionDavid Howells1-1/+1
2023-01-31rxrpc: De-atomic call->ackr_window and call->ackr_nr_unackedDavid Howells1-3/+3
2023-01-31rxrpc: Convert call->recvmsg_lock to a spinlockDavid Howells1-6/+6
2023-01-06rxrpc: Move call state changes from recvmsg to I/O threadDavid Howells1-106/+62
2023-01-06rxrpc: Wrap accesses to get call state to put the barrier in one placeDavid Howells1-6/+6
2023-01-06rxrpc: Split out the call state changing functions into their own fileDavid Howells1-81/+0
2023-01-06rxrpc: Tidy up abort generation infrastructureDavid Howells1-7/+11
2023-01-06rxrpc: Only disconnect calls in the I/O threadDavid Howells1-0/+1
2023-01-06rxrpc: Only set/transmit aborts in the I/O threadDavid Howells1-0/+2
2022-12-28rxrpc: Fix a couple of potential use-after-freesDavid Howells1-6/+8
2022-12-01rxrpc: Transmit ACKs at the point of generationDavid Howells1-3/+0
2022-12-01rxrpc: Remove the _bh annotation from all the spinlocksDavid Howells1-18/+18
2022-12-01rxrpc: Make the I/O thread take over the call and local processor workDavid Howells1-6/+3
2022-12-01rxrpc: Copy client call parameters into rxrpc_call earlierDavid Howells1-5/+3
2022-12-01rxrpc: trace: Don't use __builtin_return_address for sk_buff tracingDavid Howells1-3/+3
2022-12-01rxrpc: trace: Don't use __builtin_return_address for rxrpc_call tracingDavid Howells1-4/+4
2022-12-01rxrpc: Remove handling of duplicate packets in recvmsg_queueDavid Howells1-18/+0
2022-11-08rxrpc: Get rid of the Rx ringDavid Howells1-57/+60
2022-11-08rxrpc: Clone received jumbo subpackets and queue separatelyDavid Howells1-90/+14
2022-11-08rxrpc: Split the rxrpc_recvmsg tracepointDavid Howells1-19/+18
2022-11-08rxrpc: Clean up ACK handlingDavid Howells1-8/+6
2022-11-08rxrpc: Allocate ACK records at proposal and queue for transmissionDavid Howells1-23/+10
2022-11-08rxrpc: Remove call->tx_phaseDavid Howells1-1/+0
2022-09-01rxrpc: Remove rxrpc_get_reply_time() which is no longer usedDavid Howells1-43/+0
2022-05-22rxrpc: Fix decision on when to generate an IDLE ACKDavid Howells1-5/+3
2021-04-23afs: Don't truncate iter during data fetchDavid Howells1-4/+5
2020-12-09net: rxrpc: convert comma to semicolonZheng Yongjun1-1/+1
2020-10-05rxrpc: Fix accept on a connection that need securingDavid Howells1-35/+1
2020-08-23treewide: Use fallthrough pseudo-keywordGustavo A. R. Silva1-1/+1
2020-07-30rxrpc: Fix race between recvmsg and sendmsg on immediate call failureDavid Howells1-1/+1
2020-07-20rxrpc: Fix sendmsg() returning EPIPE due to recvmsg() returning ENODATADavid Howells1-1/+1
2020-06-05rxrpc: Fix missing notificationDavid Howells1-8/+13
2020-06-05rxrpc: Move the call completion handling out of lineDavid Howells1-0/+74
2019-10-31rxrpc: Fix handling of last subpacket of jumbo packetDavid Howells1-5/+13
2019-10-07rxrpc: Fix call crypto state cleanupDavid Howells1-3/+3
2019-08-27rxrpc: Use the tx-phase skb flag to simplify tracingDavid Howells1-3/+3
2019-08-27rxrpc: Use info in skbuff instead of reparsing a jumbo packetDavid Howells1-17/+24
2019-08-09rxrpc: Don't bother generating maxSkew in the ACK packetDavid Howells1-3/+3
2019-05-30treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 152Thomas Gleixner1-5/+1
2019-02-06rxrpc: bad unlock balance in rxrpc_recvmsgEric Dumazet1-1/+2
2018-10-04rxrpc: Allow the reply time to be obtained on a client callDavid Howells1-0/+43
2018-08-03rxrpc: Push iov_iter up from rxrpc_kernel_recv_data() to callerDavid Howells1-22/+11
2018-08-01rxrpc: Transmit more ACKs during data receptionDavid Howells1-0/+17
2018-08-01rxrpc: Propose, but don't immediately transmit, the final ACK for a callDavid Howells1-4/+2
2018-03-16rxrpc: remove redundant initialization of variable 'len'Colin Ian King1-1/+1
2018-02-16rxrpc: Work around usercopy checkDavid Howells1-2/+3
2017-11-24rxrpc: Add a timeout for detecting lost ACKs/lost DATADavid Howells1-2/+2
2017-11-24rxrpc: Don't transmit DELAY ACKs immediately on proposalDavid Howells1-2/+2
2017-11-24rxrpc: Fix call timeoutsDavid Howells1-1/+1
2017-11-24rxrpc: Delay terminal ACK transmission on a client callDavid Howells1-0/+2
2017-11-02rxrpc: Lock around calling a kernel service Rx notificationDavid Howells1-0/+2
2017-10-18rxrpc: Support service upgrade from a kernel serviceDavid Howells1-1/+4
2017-06-05rxrpc: Separate the connection's protocol service ID from the lookup IDDavid Howells1-2/+5
2017-04-06rxrpc: Trace protocol errors in received packetsDavid Howells1-0/+2
2017-04-06rxrpc: Use negative error codes in rxrpc_call structDavid Howells1-3/+3
2017-03-07rxrpc: Call state should be read with READ_ONCE() under some circumstancesDavid Howells1-2/+2
2017-03-04Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netLinus Torvalds1-6/+33
2017-03-02sched/headers: Prepare to move signal wakeup & sigpending methods from <linux...Ingo Molnar1-0/+2
2017-03-01rxrpc: Fix deadlock between call creation and sendmsg/recvmsgDavid Howells1-6/+33
2017-02-26rxrpc: Kernel calls get stuck in recvmsgDavid Howells1-2/+6
2016-10-06rxrpc: Need to produce an ACK for service op if op takes a long timeDavid Howells1-2/+6
2016-10-06rxrpc: Return negative error code to kernel serviceDavid Howells1-1/+1
2016-10-06rxrpc: Fix loss of PING RESPONSE ACK production due to PING ACKsDavid Howells1-2/+2
2016-10-06rxrpc: Fix warning by splitting rxrpc_send_call_packet()David Howells1-2/+2
2016-09-30rxrpc: The offset field in struct rxrpc_skb_priv is unnecessaryDavid Howells1-4/+2
2016-09-24rxrpc: Include the last reply DATA serial number in the final ACKDavid Howells1-3/+3
2016-09-24rxrpc: Send an ACK after every few DATA packets we receiveDavid Howells1-1/+12
2016-09-23rxrpc: Add tracepoint for ACK proposalDavid Howells1-1/+2
2016-09-23rxrpc: Don't send an ACK at the end of service call response transmissionDavid Howells1-2/+0
2016-09-17rxrpc: Improve skb tracingDavid Howells1-3/+4
2016-09-17rxrpc: Remove printks from rxrpc_recvmsg_data() to fix uninit varDavid Howells1-8/+0
2016-09-17rxrpc: Add a tracepoint to follow what recvmsg doesDavid Howells1-8/+26
2016-09-17rxrpc: Add a tracepoint to follow packets in the Rx bufferDavid Howells1-0/+11
2016-09-17rxrpc: Fix handling of the last packet in rxrpc_recvmsg_data()David Howells1-16/+33
2016-09-17rxrpc: Check the return value of rxrpc_locate_data()David Howells1-1/+4
2016-09-17rxrpc: Move the check of rx_pkt_offset from rxrpc_locate_data() to callerDavid Howells1-5/+4
2016-09-13rxrpc: Fix prealloc refcountingDavid Howells1-0/+1
2016-09-13rxrpc: Requeue call for recvmsg if more dataDavid Howells1-0/+4
2016-09-08rxrpc: Rewrite the data and ack handling codeDavid Howells1-340/+424
2016-09-07rxrpc: Calls shouldn't hold socket refsDavid Howells1-23/+1
2016-09-07rxrpc: Improve the call tracking tracepointDavid Howells1-11/+12
2016-09-01rxrpc: Don't expose skbs to in-kernel users [ver #2]David Howells1-34/+157
2016-08-30rxrpc: Trace rxrpc_call usageDavid Howells1-0/+1
2016-08-30rxrpc: Calls should only have one terminal stateDavid Howells1-4/+8
2016-08-23rxrpc: Use a tracepoint for skb accounting debuggingDavid Howells1-0/+1
2016-08-06rxrpc: Fix races between skb free, ACK generation and replyingDavid Howells1-22/+3
2016-06-22rxrpc: Replace conn->trans->{local,peer} with conn->params.{local,peer}David Howells1-2/+2
2016-06-22rxrpc: Use structs to hold connection params and protocol infoDavid Howells1-1/+1
2016-06-13rxrpc: Rename files matching ar-*.c to git rid of the "ar-" prefixDavid Howells1-0/+436