From: Jeff Garzik <jgarzik@pobox.com>
To: mike.miller@hp.com
Cc: axboe@suse.de, akpm@osdl.org, linux-kernel@vger.kernel.org
Subject: Re: cpqarray patches for 2.6 [4 of 5]
Date: Tue, 16 Mar 2004 12:37:12 -0500 [thread overview]
Message-ID: <40573B48.8090400@pobox.com> (raw)
In-Reply-To: <20040316164642.GE21377@beardog.cca.cpqcorp.net>
mikem@beardog.cca.cpqcorp.net wrote:
> This is patch 4 of 5 for cpqarray. Please apply in order.
>
> Thanks,
> mikem
> -------------------------------------------------------------------------------
> - Change to use pci APIs (change from 2.4.18 to 2.4.19)
> PS: This also includes eisa detection fix during initialization
> which was missing from 2.4.19 but fixed in 2.4.25
While I like this patch a lot, there is one tiny bug I spotted, and one
question:
> + /* sendcmd will turn off interrupt, and send the flush...
> + * To write all data in the battery backed cache to disks
> + * no data returned, but don't want to send NULL to sendcmd */
> + if( sendcmd(FLUSH_CACHE, i, buff, 4, 0, 0, 0))
> + {
> + printk(KERN_WARNING "Unable to flush cache on controller %d\n",
> + i);
> + }
> + free_irq(hba[i]->intr, hba[i]);
> + iounmap(hba[i]->vaddr);
> + unregister_blkdev(COMPAQ_SMART2_MAJOR+i, hba[i]->devname);
> + del_timer(&hba[i]->timer);
should this be del_timer_sync()?
> + remove_proc_entry(hba[i]->devname, proc_array);
> + pci_free_consistent(hba[i]->pci_dev,
> + NR_CMDS * sizeof(cmdlist_t), (hba[i]->cmd_pool),
> hba[i]->cmd_pool_dhandle);
> - kfree(hba[i]->cmd_pool_bits);
> + kfree(hba[i]->cmd_pool_bits);
> + for(j = 0; j < NWD; j++) {
> + if (ida_gendisk[i][j]->flags & GENHD_FL_UP)
> + del_gendisk(ida_gendisk[i][j]);
> + devfs_remove("ida/c%dd%d",i,j);
> + put_disk(ida_gendisk[i][j]);
> + }
> + blk_cleanup_queue(hba[i]->queue);
> + release_io_mem(hba[i]);
> + free_hba(i);
> +}
>
> + hba[i]->access.set_intr_mask(hba[i], 0);
> + if (request_irq(hba[i]->intr, do_ida_intr,
> + SA_INTERRUPT|SA_SHIRQ, hba[i]->devname, hba[i]))
> + {
> + printk(KERN_ERR "cpqarray: Unable to get irq %d for %s\n",
> hba[i]->intr, hba[i]->devname);
Even though this line of code existed in the driver prior to your patch,
this highlights a bug: SA_SHIRQ should really only be passed to
request_irq() when the device is a PCI device. If it's an EISA device,
that really shouldn't be present.
I am also curious why SA_INTERRUPT is needed. EISA requirement?
This patch gets my ACK otherwise... I'm glad somebody did this.
Jeff
next prev parent reply other threads:[~2004-03-16 17:41 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-03-16 16:46 cpqarray patches for 2.6 [4 of 5] mikem
2004-03-16 17:17 ` Christoph Hellwig
2004-03-16 17:37 ` Jeff Garzik [this message]
2004-03-16 19:23 ` Jeff Garzik
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=40573B48.8090400@pobox.com \
--to=jgarzik@pobox.com \
--cc=akpm@osdl.org \
--cc=axboe@suse.de \
--cc=linux-kernel@vger.kernel.org \
--cc=mike.miller@hp.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.