The patch titled fix "pcmcia: fix 'rmmod pcmcia' with unbound devices" has been removed from the -mm tree. Its filename was pcmcia-fix-rmmod-pcmcia-with-unbound-devices.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: fix "pcmcia: fix 'rmmod pcmcia' with unbound devices" From: Daniel Ritz <daniel.ritz-ml@xxxxxxxxxxxxxx> Add required locking to dfbc9e9d33adb1ac9910dd7f8ceb911947039a52 Signed-off-by: Daniel Ritz <daniel.ritz@xxxxxx> Cc: Dominik Brodowski <linux@xxxxxxxxxxxxxxxxxxxx> Cc: Pavol Gono <Palo.Gono@xxxxxxxxx> Cc: <stable@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/pcmcia/ds.c | 2 ++ 1 file changed, 2 insertions(+) diff -puN drivers/pcmcia/ds.c~pcmcia-fix-rmmod-pcmcia-with-unbound-devices drivers/pcmcia/ds.c --- a/drivers/pcmcia/ds.c~pcmcia-fix-rmmod-pcmcia-with-unbound-devices +++ a/drivers/pcmcia/ds.c @@ -1272,7 +1272,9 @@ static void pcmcia_bus_remove_socket(str pccard_register_pcmcia(socket, NULL); /* unregister any unbound devices */ + mutex_lock(&socket->skt_mutex); pcmcia_card_remove(socket, NULL); + mutex_unlock(&socket->skt_mutex); pcmcia_put_socket(socket); _ Patches currently in -mm which might be from daniel.ritz-ml@xxxxxxxxxxxxxx are origin.patch git-pcmcia.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