Appears to be a small leak here when freeing pool, the kfifo gets left behind. Did I miss a caller that frees kfifo? Signed-off-by: Chris Wright <chrisw@xxxxxxxxxxxx> --- diff --git a/drivers/scsi/libsrp.c b/drivers/scsi/libsrp.c index 15e2d13..3a305f8 100644 --- a/drivers/scsi/libsrp.c +++ b/drivers/scsi/libsrp.c @@ -81,6 +81,7 @@ static void srp_iu_pool_free(struct srp_queue *q) { kfree(q->items); kfree(q->pool); + kfree(q->queue); } static struct srp_buf **srp_ring_alloc(struct device *dev, -- 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