From: Herbert Xu Date: Sat, 29 Aug 2009 10:44:04 +0000 (+1000) Subject: crypto: skcipher - Fix skcipher_dequeue_givcrypt NULL test X-Git-Tag: v2.6.31-rc9~7^2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0c7d400fafaeab6014504a6a6249f01bac7f7db4;p=pandora-kernel.git crypto: skcipher - Fix skcipher_dequeue_givcrypt NULL test As struct skcipher_givcrypt_request includes struct crypto_request at a non-zero offset, testing for NULL after converting the pointer returned by crypto_dequeue_request does not work. This can result in IPsec crashes when the queue is depleted. This patch fixes it by doing the pointer conversion only when the return value is non-NULL. In particular, we create a new function __crypto_dequeue_request that does the pointer conversion. Reported-by: Brad Bosch Signed-off-by: Herbert Xu --- Reading git-diff-tree failed