aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/queueing.h
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2017-09-25 01:39:31 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2017-09-25 01:39:31 +0200
commitc1829ab76535a8153b04cdf751e74fa71f6cbfb4 (patch)
tree1de8892f15e5a18c34364759cc80f453d228f868 /src/queueing.h
parenttools: use key_is_zero for comparing to zeros (diff)
downloadwireguard-monolithic-historical-c1829ab76535a8153b04cdf751e74fa71f6cbfb4.tar.xz
wireguard-monolithic-historical-c1829ab76535a8153b04cdf751e74fa71f6cbfb4.zip
queueing: more standard init/uninit names
Diffstat (limited to 'src/queueing.h')
-rw-r--r--src/queueing.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/queueing.h b/src/queueing.h
index a07e965..b5c732e 100644
--- a/src/queueing.h
+++ b/src/queueing.h
@@ -17,8 +17,8 @@ struct sk_buff;
/* queueing.c APIs: */
extern struct kmem_cache *crypt_ctx_cache __read_mostly;
-int init_crypt_ctx_cache(void);
-void deinit_crypt_ctx_cache(void);
+int crypt_ctx_cache_init(void);
+void crypt_ctx_cache_uninit(void);
int packet_queue_init(struct crypt_queue *queue, work_func_t function, bool multicore);
struct multicore_worker __percpu *packet_alloc_percpu_multicore_worker(work_func_t function, void *ptr);