Re: [PATCH] IPMI: use schedule in kthread

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Andrew Morton wrote:
> On Mon, 26 Jun 2006 09:08:19 -0500
> [email protected] wrote:
>
>   
>> The kthread used to speed up polling for IPMI was using udelay
>> when the lower-level state machine told it to do a short delay.
>> This just used CPU and didn't help scheduling, thus causing bad
>> problems with other tasks.  Call schedule() instead.
>>
>> Signed-off-by: Corey Minyard <[email protected]>
>>
>> Index: linux-2.6.17/drivers/char/ipmi/ipmi_si_intf.c
>> ===================================================================
>> --- linux-2.6.17.orig/drivers/char/ipmi/ipmi_si_intf.c
>> +++ linux-2.6.17/drivers/char/ipmi/ipmi_si_intf.c
>> @@ -809,7 +809,7 @@ static int ipmi_thread(void *data)
>>  			/* do nothing */
>>  		}
>>  		else if (smi_result == SI_SM_CALL_WITH_DELAY)
>> -			udelay(1);
>> +			schedule();
>>  		else
>>  			schedule_timeout_interruptible(1);
>>  	}
>>     
>
> calling schedule() isn't a lot of use either.
>
> If CONFIG_PREEMPT it's of no benefit and will just chew CPU.
>
> If !CONFIG_PREEMPT && !need_resched() then it's a no-op and will chew CPU.
>
> If !CONFIG_PREEMPT && need_resched() then yes, it'll schedule away.  This
> is pretty much the only time that a simple schedule() is useful.
>
>
>
> What are we actually trying to do in here?
>   
The IPMI physical interfaces in generally really suck.  The most common
are byte at a time interfaces without interrupts that generally take in
the 500 microsecond per byte range.

This thread is an attempt to improve the performance of these
interfaces.  It is very low priority and wakes up when the IPMI
interface is doing something.  It basically spins looking for IPMI
activity at nice level 19 to help improve the performance of the
interface.  So basically, it chews CPU, but should be preempted by
anything else that is scheduled to run.  However, just calling udelay(1)
caused scheduling problems; users were reporting soft lockups, jerky
mouse movement, and keyboard problems if the IPMI interface was very
busy.  Adding a schedule here seems to fix those problems, and I'm
assuming they are falling into your third scenario above.

Any suggestions on better ways to fix this?

Thanks,

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

[Index of Archives]     [Kernel Newbies]     [Netfilter]     [Bugtraq]     [Photo]     [Stuff]     [Gimp]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Video 4 Linux]     [Linux for the blind]     [Linux Resources]
  Powered by Linux