Whamcloud - gitweb
LU-2053 crypto: Fix cfs_crypto_hash memleak
authorOleg Drokin <green@whamcloud.com>
Sat, 29 Sep 2012 20:15:40 +0000 (16:15 -0400)
committerOleg Drokin <green@whamcloud.com>
Mon, 1 Oct 2012 16:22:34 +0000 (12:22 -0400)
commit1d7fa63a7f78aeed42e4e3b6709131e92aad1b30
tree5bff6500e9ba77434e71eb69061989e135055fd5
parentfd82b671957cbddc47b8d28117ed3c90b0521d19
LU-2053 crypto: Fix cfs_crypto_hash memleak

Commit 353e3c2f8d9f195c0f87a16259f22b2f84de11d4 that introduced cryptoapi
support to Lustre is allocating a hdesc in cfs_crypto_hash_init and never
freeing it.
This function is called every time a checksum needs to be calculated,
so on every bulk RPC send or receive, so even though allocations are small,
they tend to still quickly consume all available memory with any significant
amount of IO.

Change-Id: Ic654c6102ea4306a81c1f7592c81cfb6e597f1f2
Signed-off-by: Oleg Drokin <green@whamcloud.com>
Reviewed-on: http://review.whamcloud.com/4135
Tested-by: Hudson
Tested-by: Maloo <whamcloud.maloo@gmail.com>
Reviewed-by: Andreas Dilger <adilger@whamcloud.com>
Reviewed-by: Alexander Boyko <alexander_boyko@xyratex.com>
libcfs/libcfs/linux/linux-crypto.c