diff options
| author | Mark Brown <broonie@kernel.org> | 2023-06-07 13:28:09 +0100 |
|---|---|---|
| committer | Mark Brown <broonie@kernel.org> | 2023-06-07 13:28:09 +0100 |
| commit | 30e15cb0fbb51513586a49d299798245a1c4a207 (patch) | |
| tree | ec7e8a201c33d1ea8d3374178cd35412095b1f23 /net/handshake/request.c | |
| parent | 3b88f5fba24485e6cfa2883e155d78d330e2eabc (diff) | |
| parent | 3a76c7ca9e77269dd10cf21465a055274cfa40c6 (diff) | |
spi-geni-qcom: Add new interfaces and utilise them
Merge series from Vijaya Krishna Nivarthi <quic_vnivarth@quicinc.com>:
A "known issue" during implementation of SE DMA for spi geni driver was
that it does DMA map/unmap internally instead of in spi framework.
Current patches remove this hiccup and also clean up code a bit.
Testing revealed no regressions and results with 1000 iterations of
reading from EC showed no loss of performance.
Results
=======
Before - Iteration 999, min=5.10, max=5.17, avg=5.14, ints=25129
After - Iteration 999, min=5.10, max=5.20, avg=5.15, ints=25153
Diffstat (limited to 'net/handshake/request.c')
| -rw-r--r-- | net/handshake/request.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/net/handshake/request.c b/net/handshake/request.c index 94d5cef3e048..d78d41abb3d9 100644 --- a/net/handshake/request.c +++ b/net/handshake/request.c @@ -239,6 +239,7 @@ int handshake_req_submit(struct socket *sock, struct handshake_req *req, } req->hr_odestruct = req->hr_sk->sk_destruct; req->hr_sk->sk_destruct = handshake_sk_destruct; + req->hr_file = sock->file; ret = -EOPNOTSUPP; net = sock_net(req->hr_sk); @@ -334,6 +335,9 @@ bool handshake_req_cancel(struct sock *sk) return false; } + /* Request accepted and waiting for DONE */ + fput(req->hr_file); + out_true: trace_handshake_cancel(net, req, sk); |
