The patch titled Overrun in drivers/scsi/scsi.c has been added to the -mm tree. Its filename is overrun-in-drivers-scsi-scsic.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: Overrun in drivers/scsi/scsi.c From: Eric Sesterhenn <snakebyte@xxxxxx> This overrun was spotted by coverity (cid #1403). If type == ARRAY_SIZE(scsi_device_types), we are off by one. Signed-off-by: Eric Sesterhenn <snakebyte@xxxxxx> Cc: James Bottomley <James.Bottomley@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/scsi/scsi.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/scsi/scsi.c~overrun-in-drivers-scsi-scsic drivers/scsi/scsi.c --- a/drivers/scsi/scsi.c~overrun-in-drivers-scsi-scsic +++ a/drivers/scsi/scsi.c @@ -128,7 +128,7 @@ const char * scsi_device_type(unsigned t return "Well-known LUN "; if (type == 0x1f) return "No Device "; - if (type > ARRAY_SIZE(scsi_device_types)) + if (type >= ARRAY_SIZE(scsi_device_types)) return "Unknown "; return scsi_device_types[type]; } _ Patches currently in -mm which might be from snakebyte@xxxxxx are git-dvb.patch git-gfs2.patch possible-dereference-in.patch git-intelfb.patch git-netdev-all.patch remove-unnecessary-check-in-drivers-net-depcac.patch possible-null-dereference-in-net-core-rtnetlinkc.patch remove-unnecessary-check-in.patch git-scsi-misc.patch remove-unnecessary-check-in-drivers-scsi-sgc.patch overrun-in-drivers-scsi-scsic.patch uninitialized-variable-in-drivers-net-wan-syncpppc.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