From: Rabin Vincent Date: Fri, 9 Jan 2015 15:25:28 +0000 (+0100) Subject: crypto: testmgr - don't use interruptible wait in tests X-Git-Tag: fixes-v4.0-rc1~106^2~32 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8a45ac12ec5b6ee67f8559c78ae11d9af8b821ee;p=pandora-kernel.git crypto: testmgr - don't use interruptible wait in tests tcrypt/testmgr uses wait_for_completion_interruptible() everywhere when it waits for a request to be completed. If it's interrupted, then the test is aborted and the request is freed. However, if any of these calls actually do get interrupted, the result will likely be a kernel crash, when the driver handles the now-freed request. Use wait_for_completion() instead. Signed-off-by: Rabin Vincent Signed-off-by: Herbert Xu --- Reading git-diff-tree failed