RE: [patch 0/5] [PATCH,RFC] vfs: per-superblock unused dentries list (2nd version)

From: Ravinandan Arakali
Date: Tue Jun 20 2006 - 20:30:10 EST


You are right. Driver on website does not have the fix yet. It's still in
our internal tree.
We will submit patch to netdev either later today or tomorrow morning.

Ravi

-----Original Message-----
From: Andrew Morton [mailto:akpm@xxxxxxxx]
Sent: Tuesday, June 20, 2006 5:19 PM
To: ravinandan.arakali@xxxxxxxxxxxx
Cc: tglx@xxxxxxxxxxxxx; dgc@xxxxxxx; mingo@xxxxxxx; neilb@xxxxxxx;
jblunck@xxxxxxx; linux-kernel@xxxxxxxxxxxxxxx;
linux-fsdevel@xxxxxxxxxxxxxxx; viro@xxxxxxxxxxxxxxxxxx;
balbir@xxxxxxxxxx; ananda.raju@xxxxxxxxxxxx;
leonid.grossman@xxxxxxxxxxxx; jes@xxxxxxxxxxxxxxxxxx
Subject: Re: [patch 0/5] [PATCH,RFC] vfs: per-superblock unused dentries
list (2nd version)


"Ravinandan Arakali" <ravinandan.arakali@xxxxxxxxxxxx> wrote:
>
> The formal submission will take some more time.
> To boot your system, can you use the driver available on our website ?

Not really - it's not my system and I'd need to monkey around and generate
a diff which I then cannot test.


The driver you have there (REL_2.0.14.5152_LX.tar.gz) doesn't actually
appear to fix the bug:

int s2io_open(struct net_device *dev)
{
nic_t *sp = dev->priv;
int err = 0;

/*
* Make sure you have link off by default every time
* Nic is initialized
*/
netif_carrier_off(dev);
sp->last_link_state = 0;

/* Initialize H/W and enable interrupts */
err = s2io_card_up(sp);
if (err) {
DBG_PRINT(ERR_DBG, "%s: H/W initialization failed\n",
dev->name);
if (err == -ENODEV)
goto hw_init_failed;
else
goto hw_enable_failed;
}

#ifdef CONFIG_PCI_MSI
/* Store the values of the MSIX table in the nic_t structure */
store_xmsi_data(sp);

/* After proper initialization of H/W, register ISR */
if (sp->intr_type == MSI) {
err = request_irq((int) sp->pdev->irq, s2io_msi_handle,
SA_SHIRQ, sp->name, dev);


It's still calling request_irq() _after_ "enable interrupts".

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/