From 1b092ce584cbee0f86f3e25b5498870c8ca96652 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Wed, 27 Jan 2021 18:13:53 +0100 Subject: device: get rid of nonce routine This moves to a simple queue with no routine processing it, to reduce scheduler pressure. This splits latency in half! benchmark old ns/op new ns/op delta BenchmarkThroughput-16 2394 2364 -1.25% BenchmarkLatency-16 259652 120810 -53.47% Signed-off-by: Jason A. Donenfeld --- device/queueconstants_android.go | 1 + 1 file changed, 1 insertion(+) (limited to 'device/queueconstants_android.go') diff --git a/device/queueconstants_android.go b/device/queueconstants_android.go index f19c7be..f4de5c9 100644 --- a/device/queueconstants_android.go +++ b/device/queueconstants_android.go @@ -8,6 +8,7 @@ package device /* Reduce memory consumption for Android */ const ( + QueueStagedSize = 128 QueueOutboundSize = 1024 QueueInboundSize = 1024 QueueHandshakeSize = 1024 -- cgit v1.2.3-59-g8ed1b