The patch titled Remove redundant NULL checks before [kv]free - in kernel/ has been removed from the -mm tree. Its filename is remove-redundant-null-checks-before-free-in-kernel.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: Remove redundant NULL checks before [kv]free - in kernel/ From: Jesper Juhl <jesper.juhl@xxxxxxxxx> Remove redundant kfree NULL checks from kernel/ Signed-off-by: Jesper Juhl <jesper.juhl@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- kernel/auditsc.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff -puN kernel/auditsc.c~remove-redundant-null-checks-before-free-in-kernel kernel/auditsc.c --- a/kernel/auditsc.c~remove-redundant-null-checks-before-free-in-kernel +++ a/kernel/auditsc.c @@ -658,8 +658,7 @@ static void audit_log_task_context(struc return; error_path: - if (ctx) - kfree(ctx); + kfree(ctx); audit_panic("error in audit_log_task_context"); return; } _ Patches currently in -mm which might be from jesper.juhl@xxxxxxxxx are origin.patch git-scsi-misc.patch small-whitespace-cleanup-for-qlogic-driver.patch debug-shared-irqs.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