I have a very serious and stupid bug in this patch which did not show in my tests. Please forgive me. Below is a diff of the bug. As an answer to this mail I will resend 2 revised patches AB1, and A2 is also affected. Sorry Boaz diff --git a/drivers/scsi/scsi_lib.c b/drivers/scsi/scsi_lib.c index c065de5..29adcc6 100644 --- a/drivers/scsi/scsi_lib.c +++ b/drivers/scsi/scsi_lib.c @@ -1649,7 +1649,7 @@ int __init scsi_init_queue(void) for (i = 0, size = 8; i < SG_MEMPOOL_NR; i++, size <<= 1) { struct scsi_host_sg_pool *sgp = scsi_sg_pools + i; - sgp->size = size; + sgp->size = (i != SG_MEMPOOL_NR-1) ? size : SCSI_MAX_SG_SEGMENTS; sgp->slab = kmem_cache_create(sg_names[i], sgp->size*sizeof(struct scatterlist), 0, 0, NULL); - To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html