The patch titled Fixed alloc_sha256 (missed argument) has been added to the -mm tree. Its filename is reiser4-get-rid-of-deprecated-crypto-api-build-fix.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: Fixed alloc_sha256 (missed argument) From: Edward Shishkin <edward@xxxxxxxxxxx> Signed-off-by: Edward Shishkin <edward@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- fs/reiser4/plugin/crypto/digest.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN fs/reiser4/plugin/crypto/digest.c~reiser4-get-rid-of-deprecated-crypto-api-build-fix fs/reiser4/plugin/crypto/digest.c --- a/fs/reiser4/plugin/crypto/digest.c~reiser4-get-rid-of-deprecated-crypto-api-build-fix +++ a/fs/reiser4/plugin/crypto/digest.c @@ -14,7 +14,7 @@ extern digest_plugin digest_plugins[LAST 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); _ Patches currently in -mm which might be from edward@xxxxxxxxxxx are reiser4-vs-streamline-generic_file_-interfaces-and-filemap-fix.patch reiser4-rename-generic_sounding_globalspatch.patch reiser4-format-subversion-numbers-heir-set-and-file-conversion.patch reiser4-cleanups-in-lzo-compression-library.patch reiser4-get-rid-of-deprecated-crypto-api.patch reiser4-get-rid-of-deprecated-crypto-api-build-fix.patch reiser4-use-list_head-instead-of-struct-blocknr.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html