Fixed alloc_sha256 (missed argument) Signed-off-by: Edward Shishkin --- linux-2.6.19-rc2-mm1/fs/reiser4/plugin/crypto/digest.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) --- linux-2.6.19-rc2-mm1/fs/reiser4/plugin/crypto/digest.c.orig +++ linux-2.6.19-rc2-mm1/fs/reiser4/plugin/crypto/digest.c @@ -14,7 +14,7 @@ static struct crypto_hash * alloc_sha256 (void) { #if REISER4_SHA256 - return crypto_alloc_hash ("sha256", 0); + return crypto_alloc_hash ("sha256", 0, CRYPTO_ALG_ASYNC); #else warning("edward-1418", "sha256 unsupported"); return ERR_PTR(-EINVAL);