mirror of
git://git.yoctoproject.org/linux-yocto.git
synced 2025-08-22 00:42:01 +02:00

Split out the functions that change the state of an rxrpc call into their own file. The idea being to remove anything to do with changing the state of a call directly from the rxrpc sendmsg() and recvmsg() paths and have all that done in the I/O thread only, with the ultimate aim of removing the state lock entirely. Moving the code out of sendmsg.c and recvmsg.c makes that easier to manage. Signed-off-by: David Howells <dhowells@redhat.com> cc: Marc Dionne <marc.dionne@auristor.com> cc: linux-afs@lists.infradead.org
656 B
656 B
SPDX-License-Identifier: GPL-2.0
Makefile for Linux kernel RxRPC
obj-$(CONFIG_AF_RXRPC) += rxrpc.o
rxrpc-y :=
af_rxrpc.o
call_accept.o
call_event.o
call_object.o
call_state.o
conn_client.o
conn_event.o
conn_object.o
conn_service.o
input.o
insecure.o
io_thread.o
key.o
local_event.o
local_object.o
misc.o
net_ns.o
output.o
peer_event.o
peer_object.o
recvmsg.o
rtt.o
security.o
sendmsg.o
server_key.o
skbuff.o
txbuf.o
utils.o
rxrpc-$(CONFIG_PROC_FS) += proc.o rxrpc-$(CONFIG_RXKAD) += rxkad.o rxrpc-$(CONFIG_SYSCTL) += sysctl.o
obj-$(CONFIG_RXPERF) += rxperf.o