diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2017-07-11 04:27:35 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2017-07-20 03:37:39 +0200 |
commit | a3a3a553249f7d870ae625f3e66f4b93f7fa4c90 (patch) | |
tree | 2dd1401b1df039f632efebb69ac6ee8cc2774ca9 /src | |
parent | 52b3a7bc7cd8a74e273cb108042ea93f76d58468 (diff) |
data: use KMEM_CACHE macro
Suggested-by: Samuel Holland <samuel@sholland.org>
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/data.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -35,10 +35,10 @@ static struct kmem_cache *decryption_ctx_cache __read_mostly; int __init packet_init_data_caches(void) { - encryption_ctx_cache = kmem_cache_create("wireguard_encryption_ctx", sizeof(struct encryption_ctx), 0, 0, NULL); + encryption_ctx_cache = KMEM_CACHE(encryption_ctx, 0); if (!encryption_ctx_cache) return -ENOMEM; - decryption_ctx_cache = kmem_cache_create("wireguard_decryption_ctx", sizeof(struct decryption_ctx), 0, 0, NULL); + decryption_ctx_cache = KMEM_CACHE(decryption_ctx, 0); if (!decryption_ctx_cache) { kmem_cache_destroy(encryption_ctx_cache); return -ENOMEM; |