All of lore.kernel.org
 help / color / mirror / Atom feed
* [KJ] RE: [PATCH 3/22] block/cciss: replace schedule_timeout() with
@ 2005-01-17 22:14 Miller, Mike (OS Dev)
  2005-01-17 22:30 ` [KJ] RE: [PATCH 3/22] block/cciss: replace schedule_timeout() Greg KH
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Miller, Mike (OS Dev) @ 2005-01-17 22:14 UTC (permalink / raw)
  To: kernel-janitors

> From: Nishanth Aravamudan [mailto:nacc@us.ibm.com]
> Hi,
> 
> Please consider applying.
> 
> I used msleep(10) here under the presumption that the 
> schedule_timeout(1) was
> written assuming that HZ\x100 (as it used to be), which is
> equivalent to 10 milliseconds. If the desire is actually for 
> 1 ms or the minimal
> sleep interval, then the patch can be changed appropriately. 
> A similar assumption
> as to the constant delay value was made in the other 
> replacement, which can also
> be appropriately adjusted.
> 
> Description: Change the delay logic in pollcomplete() to use 
> msleep() and
> time_before(). Instead of assuming schedule_timeout() will 
> sleep exactly as
> requested, use msleep(10) to guarantee minimally 10 
> millisecond increments and
> time_before() to guarantee stopping the loop as close to 20 
> seconds as possible.
> Also changes another occurrence of schedule_timeout() to msleep().
> TASK_INTERRUPTIBLE is used in this case, but signals are not handled. 
> 
> Signed-off-by: Nishanth Aravamudan <nacc@us.ibm.com>

I still fail to see the benefits of this patch.

mikem

> 
> --- 2.6.11-rc1-kj-v/drivers/block/cciss.c	2005-01-15 
> 16:55:43.000000000 -0800
> +++ 2.6.11-rc1-kj/drivers/block/cciss.c	2005-01-17 
> 10:33:44.000000000 -0800
> @@ -1729,17 +1729,15 @@ static int cciss_revalidate(struct gendi
>  static unsigned long pollcomplete(int ctlr)
>  {
>  	unsigned long done;
> -	int i;
> +	unsigned long end_jiffies = jiffies + 20 * HZ;
>  
>  	/* Wait (up to 20 seconds) for a command to complete */
> -
> -	for (i = 20 * HZ; i > 0; i--) {
> +	while (time_before(jiffies,end_jiffies)) {
>  		done = hba[ctlr]->access.command_completed(hba[ctlr]);
> -		if (done = FIFO_EMPTY) {
> -			set_current_state(TASK_UNINTERRUPTIBLE);
> -			schedule_timeout(1);
> -		} else
> -			return (done);
> +		if (done = FIFO_EMPTY)
> +			msleep(10);
> +		else
> +			return done;
>  	}
>  	/* Invalid address to tell caller we ran out of time */
>  	return 1;
> @@ -2512,8 +2510,7 @@ static int cciss_pci_init(ctlr_info_t *c
>  		if (!(readl(c->vaddr + SA5_DOORBELL) & 
> CFGTBL_ChangeReq))
>  			break;
>  		/* delay and try again */
> -		set_current_state(TASK_INTERRUPTIBLE);
> -		schedule_timeout(10);
> +		msleep(100);
>  	}	
>  
>  #ifdef CCISS_DEBUG
> 

_______________________________________________
Kernel-janitors mailing list
Kernel-janitors@lists.osdl.org
http://lists.osdl.org/mailman/listinfo/kernel-janitors

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2005-01-18 19:00 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-01-17 22:14 [KJ] RE: [PATCH 3/22] block/cciss: replace schedule_timeout() with Miller, Mike (OS Dev)
2005-01-17 22:30 ` [KJ] RE: [PATCH 3/22] block/cciss: replace schedule_timeout() Greg KH
2005-01-17 22:35 ` [KJ] Re: [PATCH 3/22] block/cciss: replace schedule_timeout() with Nishanth Aravamudan
2005-01-18 19:00 ` [KJ] RE: [PATCH 3/22] block/cciss: replace schedule_timeout() Miller, Mike (OS Dev)

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.