Browse Source

[PATCH] sil24: add missing ata_pad_free()

sil24_port_stop() is missing call to ata_pad_free() thus leaking pad
buffer when a port is stopped.  This patch adds it.

Signed-off-by: Tejun Heo <htejun@gmail.com>
Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
Tejun Heo 19 years ago
parent
commit
e9c05afa80
1 changed files with 1 additions and 0 deletions
  1. 1 0
      drivers/scsi/sata_sil24.c

+ 1 - 0
drivers/scsi/sata_sil24.c

@@ -687,6 +687,7 @@ static void sil24_port_stop(struct ata_port *ap)
 	struct sil24_port_priv *pp = ap->private_data;
 	struct sil24_port_priv *pp = ap->private_data;
 
 
 	sil24_cblk_free(pp, dev);
 	sil24_cblk_free(pp, dev);
+	ata_pad_free(ap, dev);
 	kfree(pp);
 	kfree(pp);
 }
 }