[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20081118215723.GA3121@piipiip.net>
Date: Tue, 18 Nov 2008 23:57:23 +0200
From: Jarkko Lavinen <jlavi@....fi>
To: Andrew Morton <akpm@...ux-foundation.org>
Cc: linux-kernel@...r.kernel.org,
Doug Thompson <dougthompson@...ssion.com>,
Jesse Barnes <jbarnes@...tuousgeek.org>
Subject: Re: i82875p_edac: BAR 0 collision
On Tue, Nov 11, 2008 at 12:01:52AM -0800, Andrew Morton wrote:
> On Fri, 7 Nov 2008 13:43:55 +0200 Jarkko Lavinen <jlavi@....fi> wrote:
> > When I try load i82875p_edac module on 2.6.27 I get
> >
> > # modprobe i82875p_edac
> > FATAL: Error inserting i82875p_edac
> > (/lib/modules/2.6.27.4/kernel/drivers/edac/i82875p_edac.ko): No such device
> Might be an EDAC driver regression. It might also be a consequence of
> PCI address space management fiddlings, but I think most of the changes
> there post-date 2.6.26?
I can get around the modprobe problem by adding the missing resource after
the hidden overflow device is revealed. The diff below is against 2.6.27.
--- a/drivers/edac/i82875p_edac.c
+++ b/drivers/edac/i82875p_edac.c
@@ -295,6 +295,7 @@ static int i82875p_setup_overfl_dev(struct pci_dev *pdev,
"%s(): pci_bus_add_device() Failed\n",
__func__);
}
+ pci_bus_assign_resources(dev->bus);
}
*ovrfl_pdev = dev;
The access violation when doing "rmmod i82875p_edac" occurs
because the module exit function i82875p_exit() runs
pci_unregister_driver() while the edac_mc_workq_function() is
scheduled to be run. When the work queue runs, it accesses
something not available anymore.
static void __exit i82875p_exit(void)
{
debugf3("%s()\n", __func__);
+ mci_saved->op_state = OP_OFFLINE;
pci_unregister_driver(&i82875p_driver);
if (!i82875p_registered) {
i82875p_remove_one(mci_pdev);
pci_dev_put(mci_pdev);
}
}
I tried to stop the workqueue by saving mci pointer at the time
of its allocation and just set its state to OFFLINE just before
calling pci_unregister_driver.
This isn't the right way to remove the module and edac_dore has
refcount 2 after i82875p_edac has been removed. The refcount
should be 0.
Cheers
Jarkko Lavinen
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists