android_kernel_motorola_sm6225/net/9p
Dominique Martinet be87f21e6b 9p: add a per-client fcall kmem_cache
[ Upstream commit 91a76be37ff89795526c452a6799576b03bec501 ]

Having a specific cache for the fcall allocations helps speed up
end-to-end latency.

The caches will automatically be merged if there are multiple caches
of items with the same size so we do not need to try to share a cache
between different clients of the same size.

Since the msize is negotiated with the server, only allocate the cache
after that negotiation has happened - previous allocations or
allocations of different sizes (e.g. zero-copy fcall) are made with
kmalloc directly.

Some figures on two beefy VMs with Connect-IB (sriov) / trans=rdma,
with ior running 32 processes in parallel doing small 32 bytes IOs:
 - no alloc (4.18-rc7 request cache): 65.4k req/s
 - non-power of two alloc, no patch: 61.6k req/s
 - power of two alloc, no patch: 62.2k req/s
 - non-power of two alloc, with patch: 64.7k req/s
 - power of two alloc, with patch: 65.1k req/s

Link: http://lkml.kernel.org/r/1532943263-24378-2-git-send-email-asmadeus@codewreck.org
Signed-off-by: Dominique Martinet <dominique.martinet@cea.fr>
Acked-by: Jun Piao <piaojun@huawei.com>
Cc: Matthew Wilcox <willy@infradead.org>
Cc: Greg Kurz <groug@kaod.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
2019-07-03 13:14:42 +02:00
..
client.c 9p: add a per-client fcall kmem_cache 2019-07-03 13:14:42 +02:00
error.c
Kconfig IB: Revert "remove redundant INFINIBAND kconfig dependencies" 2018-05-28 10:40:16 -06:00
Makefile
mod.c 9p: Use a slab for allocating requests 2019-07-03 13:14:41 +02:00
protocol.c 9p: do not trust pdu content for stat item size 2019-04-20 09:16:00 +02:00
protocol.h
trans_common.c net/9p: correct some comment errors in 9p file system code 2018-05-10 08:21:53 -04:00
trans_common.h
trans_fd.c 9p: embed fcall in req to round down buffer allocs 2019-07-03 13:14:42 +02:00
trans_rdma.c 9p: embed fcall in req to round down buffer allocs 2019-07-03 13:14:42 +02:00
trans_virtio.c 9p: embed fcall in req to round down buffer allocs 2019-07-03 13:14:42 +02:00
trans_xen.c 9p: embed fcall in req to round down buffer allocs 2019-07-03 13:14:42 +02:00
util.c 9p: fix whitespace issues 2018-08-13 09:34:58 +09:00