The patch titled tpm: tpm-new-12-sysfs-files-fix-fix-fix has been added to the -mm tree. Its filename is tpm-tpm-new-12-sysfs-files-fix-fix-fix.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this From: Kylene Jo Hall <kjhall@xxxxxxxxxx> Fix a buffer size that got set to small for the return size. Signed-off-by: Kylie Hall <kjhall@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/char/tpm/tpm.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/char/tpm/tpm.c~tpm-tpm-new-12-sysfs-files-fix-fix-fix drivers/char/tpm/tpm.c --- 25/drivers/char/tpm/tpm.c~tpm-tpm-new-12-sysfs-files-fix-fix-fix Thu Apr 13 15:46:30 2006 +++ 25-akpm/drivers/char/tpm/tpm.c Thu Apr 13 15:46:30 2006 @@ -573,7 +573,7 @@ EXPORT_SYMBOL_GPL(tpm_continue_selftest) ssize_t tpm_show_enabled(struct device * dev, struct device_attribute * attr, char *buf) { - u8 data[max_t(int, ARRAY_SIZE(tpm_cap), 30)]; + u8 data[max_t(int, ARRAY_SIZE(tpm_cap), 35)]; ssize_t rc; struct tpm_chip *chip = dev_get_drvdata(dev); _ Patches currently in -mm which might be from kjhall@xxxxxxxxxx are tpm-spacing-cleanups.patch tpm-reorganize-sysfs-files.patch tpm-chip-struct-update.patch tpm-return-chip-from-tpm_register_hardware.patch tpm-command-duration-update.patch tpm-new-12-sysfs-files.patch tpm-new-12-sysfs-files-fix.patch tpm-new-12-sysfs-files-fix-fix.patch tpm-tpm-new-12-sysfs-files-fix-fix-fix.patch tpm-driver-for-next-generation-tpm-chips.patch tpm-driver-for-next-generation-tpm-chips-fix.patch tpm-driver-for-next-generation-tpm-chips-fix-fix.patch tpm-msecs_to_jiffies-cleanups.patch tpm-use-clear_bit.patch tpm-use-clear_bit-fix.patch tpm-use-clear_bit-fix-fix.patch tpm-use-clear_bit-fix-fix-fix.patch tpm-use-clear_bit-fix-fix-fix-fix.patch tpm-tpm_infineon-updated-to-latest-interface-changes.patch tpm-check-mem-start-and-len.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