The patch titled powerpc: make OF interrupt tree parsing more strict has been removed from the -mm tree. Its filename is powerpc-make-of-interrupt-tree-parsing-more-strict.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: powerpc: make OF interrupt tree parsing more strict From: Segher Boessenkool <segher@xxxxxxxxxxxxxxxxxxx> This patch fixes a bit of boundchecking in the new Open Firmware interrupt tree parsing code. It's important that it fails when things aren't correct in order to trigger fallback mecanisms that are necessary to make some machines work properly. Signed-off-by: Benjamin Herrenschmidt <benh@xxxxxxxxxxxxxxxxxxx> Cc: Paul Mackerras <paulus@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/powerpc/kernel/prom_parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN arch/powerpc/kernel/prom_parse.c~powerpc-make-of-interrupt-tree-parsing-more-strict arch/powerpc/kernel/prom_parse.c --- a/arch/powerpc/kernel/prom_parse.c~powerpc-make-of-interrupt-tree-parsing-more-strict +++ a/arch/powerpc/kernel/prom_parse.c @@ -881,7 +881,7 @@ int of_irq_map_one(struct device_node *d intsize = *tmp; /* Check index */ - if (index * intsize >= intlen) + if ((index + 1) * intsize > intlen) return -EINVAL; /* Get new specifier and map it */ _ Patches currently in -mm which might be from segher@xxxxxxxxxxxxxxxxxxx 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