The patch titled crypto: don't return PTR_ERR() of wrong pointer has been removed from the -mm tree. Its filename was crypto-dont-return-ptr_err-of-wrong-pointer.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: crypto: don't return PTR_ERR() of wrong pointer From: roel kluin <roel.kluin@xxxxxxxxx> Fix a PTR_ERR() return of the wrong pointer Signed-off-by: Roel Kluin <roel.kluin@xxxxxxxxx> Cc: Herbert Xu <herbert@xxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/crypto/mv_cesa.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/crypto/mv_cesa.c~crypto-dont-return-ptr_err-of-wrong-pointer drivers/crypto/mv_cesa.c --- a/drivers/crypto/mv_cesa.c~crypto-dont-return-ptr_err-of-wrong-pointer +++ a/drivers/crypto/mv_cesa.c @@ -857,7 +857,7 @@ static int mv_cra_hash_init(struct crypt printk(KERN_WARNING MV_CESA "Base driver '%s' could not be loaded!\n", base_hash_name); - err = PTR_ERR(fallback_tfm); + err = PTR_ERR(base_hash); goto err_bad_base; } } _ Patches currently in -mm which might be from roel.kluin@xxxxxxxxx are linux-next.patch btrfs-dont-dereference-extent_mapping-if-null.patch macintosh-wrong-test-in-fan_readwrite_reg.patch frv-duplicate-output_buffer-of-e03.patch frv-duplicate-output_buffer-of-e03-checkpatch-fixes.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