From 0c359981787c4f44a920b9ce410c410cf308dbbd Mon Sep 17 00:00:00 2001 From: Daniel Pouzzner Date: Thu, 20 Aug 2020 18:37:44 -0500 Subject: [PATCH] linuxkm/module_hooks.c: log "cleanup complete" at unload time. --- linuxkm/module_hooks.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/linuxkm/module_hooks.c b/linuxkm/module_hooks.c index ff90e6488..3b1ce2f80 100644 --- a/linuxkm/module_hooks.c +++ b/linuxkm/module_hooks.c @@ -39,6 +39,8 @@ static void wolfssl_exit(void) int ret = wolfSSL_Cleanup(); if (ret != WOLFSSL_SUCCESS) pr_err("wolfSSL_Cleanup() failed: %s", wc_GetErrorString(ret)); + else + pr_info("wolfSSL " LIBWOLFSSL_VERSION_STRING " cleanup complete.\n"); return; }