The patch titled tpm: fix memory leak has been removed from the -mm tree. Its filename is tpm-fix-memory-leak.patch This patch was probably dropped from -mm because it has now been merged into a subsystem tree or into Linus's tree, or because it was folded into its parent patch in the -mm tree. From: Kylene Jo Hall <kjhall@xxxxxxxxxx> The eventname was kmalloc'd and not freed in the *_show functions. This bug was found by Coverity. Signed-off-by: Kylene Hall <kjhall@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/char/tpm/tpm_bios.c | 2 ++ 1 files changed, 2 insertions(+) diff -puN drivers/char/tpm/tpm_bios.c~tpm-fix-memory-leak drivers/char/tpm/tpm_bios.c --- devel/drivers/char/tpm/tpm_bios.c~tpm-fix-memory-leak 2006-04-22 02:34:58.000000000 -0700 +++ devel-akpm/drivers/char/tpm/tpm_bios.c 2006-04-22 02:34:58.000000000 -0700 @@ -306,6 +306,7 @@ static int tpm_binary_bios_measurements_ /* 5th: delimiter */ seq_putc(m, '\0'); + kfree(eventname); return 0; } @@ -353,6 +354,7 @@ static int tpm_ascii_bios_measurements_s /* 4th: eventname <= max + \'0' delimiter */ seq_printf(m, " %s\n", eventname); + kfree(eventname); return 0; } _ Patches currently in -mm which might be from kjhall@xxxxxxxxxx are origin.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