* [PATCH] Remove SCSI_BH
@ 2002-06-16 18:22 Matthew Wilcox
2002-06-17 5:22 ` David S. Miller
0 siblings, 1 reply; 3+ messages in thread
From: Matthew Wilcox @ 2002-06-16 18:22 UTC (permalink / raw)
To: Linus Torvalds; +Cc: linux-kernel, linux-scsi
Hi, Linus. This patch switches SCSI from a bottom half to a tasklet.
It's been reviewed, tested & approved by Andrew Morton, James Bottomley &
Doug Gilbert. Please apply.
--- linux-2.5.21/drivers/scsi/scsi.c Sun Jun 2 18:44:50 2002
+++ linux-2.5.21-flock/drivers/scsi/scsi.c Sat Jun 15 19:45:45 2002
@@ -1090,6 +1090,9 @@
SCSI_LOG_MLQUEUE(3, printk("Leaving scsi_do_cmd()\n"));
}
+void scsi_tasklet_func(unsigned long);
+static DECLARE_TASKLET(scsi_tasklet, scsi_tasklet_func, 0);
+
/*
* This function is the mid-level interrupt routine, which decides how
* to handle error conditions. Each invocation of this function must
@@ -1187,7 +1190,7 @@
/*
* Mark the bottom half handler to be run.
*/
- mark_bh(SCSI_BH);
+ tasklet_hi_schedule(&scsi_tasklet);
}
/*
@@ -1213,7 +1216,7 @@
* half queue. Thus the only time we hold the lock here is when
* we wish to atomically remove the contents of the queue.
*/
-void scsi_bottom_half_handler(void)
+void scsi_tasklet_func(unsigned long ignore)
{
Scsi_Cmnd *SCpnt;
Scsi_Cmnd *SCnext;
@@ -2545,11 +2548,6 @@
if (scsihosts)
printk(KERN_INFO "scsi: host order: %s\n", scsihosts);
scsi_host_no_init (scsihosts);
- /*
- * This is where the processing takes place for most everything
- * when commands are completed.
- */
- init_bh(SCSI_BH, scsi_bottom_half_handler);
return 0;
}
@@ -2559,7 +2557,7 @@
Scsi_Host_Name *shn, *shn2 = NULL;
int i;
- remove_bh(SCSI_BH);
+ tasklet_kill(&scsi_tasklet);
devfs_unregister (scsi_devfs_handle);
for (shn = scsi_host_no_list;shn;shn = shn->next) {
--
Revolutions do not require corporate support.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] Remove SCSI_BH
2002-06-16 18:22 [PATCH] Remove SCSI_BH Matthew Wilcox
@ 2002-06-17 5:22 ` David S. Miller
2002-06-17 11:14 ` Matthew Wilcox
0 siblings, 1 reply; 3+ messages in thread
From: David S. Miller @ 2002-06-17 5:22 UTC (permalink / raw)
To: willy; +Cc: torvalds, linux-kernel, linux-scsi
From: Matthew Wilcox <willy@debian.org>
Date: Sun, 16 Jun 2002 19:22:53 +0100
Hi, Linus. This patch switches SCSI from a bottom half to a tasklet.
It's been reviewed, tested & approved by Andrew Morton, James Bottomley &
Doug Gilbert. Please apply.
I always wanted to make this a per-cpu SOFTIRQ, there is no reason
it can't be and it's important enough to deserve to be one.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] Remove SCSI_BH
2002-06-17 5:22 ` David S. Miller
@ 2002-06-17 11:14 ` Matthew Wilcox
0 siblings, 0 replies; 3+ messages in thread
From: Matthew Wilcox @ 2002-06-17 11:14 UTC (permalink / raw)
To: David S. Miller; +Cc: willy, torvalds, linux-kernel, linux-scsi
On Sun, Jun 16, 2002 at 10:22:01PM -0700, David S. Miller wrote:
> From: Matthew Wilcox <willy@debian.org>
> Date: Sun, 16 Jun 2002 19:22:53 +0100
>
> Hi, Linus. This patch switches SCSI from a bottom half to a tasklet.
> It's been reviewed, tested & approved by Andrew Morton, James Bottomley &
> Doug Gilbert. Please apply.
>
> I always wanted to make this a per-cpu SOFTIRQ, there is no reason
> it can't be and it's important enough to deserve to be one.
I agree that it probably should become a softirq. However, in its current
state, I'm not sure it would gain any advantage from becoming a softirq.
I think it would take someone with far more understanding of the SCSI
layer than I have to do this work properly. My current motivation is to
eradicate bottom halves rather than to improve scsi.
If someone's maintaining a TODO list for the scsi subsystem, please include:
* Convert scsi_bottom_half_handler to a softirq.
as one of the entries.
--
Revolutions do not require corporate support.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2002-06-17 11:14 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-06-16 18:22 [PATCH] Remove SCSI_BH Matthew Wilcox
2002-06-17 5:22 ` David S. Miller
2002-06-17 11:14 ` Matthew Wilcox
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox