The patch titled PCIe portdrv: eliminate double kfree in remove path has been removed from the -mm tree. Its filename was pcie-portdrv-eliminate-double-kfree-in-remove-path.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: PCIe portdrv: eliminate double kfree in remove path From: Alex Chiang <achiang@xxxxxx> Commit 55633af3 ("PCIe portdrv: Use driver data to simplify code") added a kfree of the driver private data in pcie_port_device_remove but forgot to remove the old kfree from pcie_portdrv_remove. Signed-off-by: Alex Chiang <achiang@xxxxxx> Acked-by: Rafael J. Wysocki <rjw@xxxxxxx> Cc: Jesse Barnes <jbarnes@xxxxxxxxxxxxxxxx> Cc: Matthew Wilcox <matthew@xxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/pci/pcie/portdrv_pci.c | 1 - 1 file changed, 1 deletion(-) diff -puN drivers/pci/pcie/portdrv_pci.c~pcie-portdrv-eliminate-double-kfree-in-remove-path drivers/pci/pcie/portdrv_pci.c --- a/drivers/pci/pcie/portdrv_pci.c~pcie-portdrv-eliminate-double-kfree-in-remove-path +++ a/drivers/pci/pcie/portdrv_pci.c @@ -94,7 +94,6 @@ static void pcie_portdrv_remove (struct { pcie_port_device_remove(dev); pci_disable_device(dev); - kfree(pci_get_drvdata(dev)); } static int error_detected_iter(struct device *device, void *data) _ Patches currently in -mm which might be from achiang@xxxxxx are origin.patch linux-next.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