The patch titled sata_nv: fix kfree ordering in remove has been added to the -mm tree. Its filename is sata_nv-fix-kfree-ordering-in-remove.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: sata_nv: fix kfree ordering in remove From: Robert Hancock <hancockr@xxxxxxx> The suspend/resume change for sata_nv introduced a potential bug where the hpriv structure could be used after it was freed in nv_remove_one. Fix that. Signed-off-by: Robert Hancock <hancockr@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/ata/sata_nv.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/ata/sata_nv.c~sata_nv-fix-kfree-ordering-in-remove drivers/ata/sata_nv.c --- a/drivers/ata/sata_nv.c~sata_nv-fix-kfree-ordering-in-remove +++ a/drivers/ata/sata_nv.c @@ -1554,8 +1554,8 @@ static void nv_remove_one (struct pci_de struct ata_host *host = dev_get_drvdata(&pdev->dev); struct nv_host_priv *hpriv = host->private_data; - kfree(hpriv); ata_pci_remove_one(pdev); + kfree(hpriv); } static int nv_pci_device_resume(struct pci_dev *pdev) _ Patches currently in -mm which might be from hancockr@xxxxxxx are origin.patch sata_nv-add-suspend-resume-support.patch sata_nv-fix-kfree-ordering-in-remove.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