diff options
author | David Howells <dhowells@redhat.com> | 2022-11-03 22:27:52 +0000 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2022-12-01 13:36:37 +0000 |
commit | 75bfdbf2fca372e2709bcaa43e8cf1147766ae96 (patch) | |
tree | 438100ef5bb5b174b623c72eef8df01842edc7ee /net/rxrpc/Makefile | |
parent | 84924aac08a43169811b4814c67994a9154a6a82 (diff) | |
download | lwn-75bfdbf2fca372e2709bcaa43e8cf1147766ae96.tar.gz lwn-75bfdbf2fca372e2709bcaa43e8cf1147766ae96.zip |
rxrpc: Implement an in-kernel rxperf server for testing purposes
Implement an in-kernel rxperf server to allow kernel-based rxrpc services
to be tested directly, unlike with AFS where they're accessed by the
fileserver when the latter decides it wants to.
This is implemented as a module that, if loaded, opens UDP port 7009
(afs3-rmtsys) and listens on it for incoming calls. Calls can be generated
using the rxperf command shipped with OpenAFS, for example.
Changes
=======
ver #2)
- Use min_t() instead of min().
Signed-off-by: David Howells <dhowells@redhat.com>
cc: Marc Dionne <marc.dionne@auristor.com>
cc: linux-afs@lists.infradead.org
cc: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'net/rxrpc/Makefile')
-rw-r--r-- | net/rxrpc/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net/rxrpc/Makefile b/net/rxrpc/Makefile index fdeba488fc6e..79687477d93c 100644 --- a/net/rxrpc/Makefile +++ b/net/rxrpc/Makefile @@ -36,3 +36,6 @@ rxrpc-y := \ rxrpc-$(CONFIG_PROC_FS) += proc.o rxrpc-$(CONFIG_RXKAD) += rxkad.o rxrpc-$(CONFIG_SYSCTL) += sysctl.o + + +obj-$(CONFIG_RXPERF) += rxperf.o |