All of lore.kernel.org
 help / color / mirror / Atom feed
* schedule() seems to have changed.
@ 2001-04-18 14:26 Richard B. Johnson
  2001-04-18 16:25 ` george anzinger
  0 siblings, 1 reply; 3+ messages in thread
From: Richard B. Johnson @ 2001-04-18 14:26 UTC (permalink / raw)
  To: Linux kernel


It seems that the nature of schedule() has changed in recent
kernels. I am trying to update my drivers to correspond to
the latest changes. Here is an example:


This waits for some hardware (interrupt sets flag), time-out in one
second. This is in an ioctl(), i.e., user context:

    set_current_state(TASK_INTERRUPTIBLE);
    current->policy = SCHED_YIELD;
    timer = jiffies + HZ;
    while(time_before(jiffies, timer))
    {
        if(flag) break;
        schedule();
    }
    set_current_state(TASK_RUNNING);

The problem is that schedule() never returns!!! If I use 
schedule_timeout(1), it returns, but the granularity
of the timeout interval is such that it slows down the
driver (0.1 ms).

So, is there something that I'm not doing that is preventing
schedule() from returning?  It returns on a user-interrupt (^C),
but otherwise gives control to the kernel forever.


Cheers,
Dick Johnson

Penguin : Linux version 2.4.1 on an i686 machine (799.53 BogoMips).

"Memory is like gasoline. You use it up when you are running. Of
course you get it all back when you reboot..."; Actual explanation
obtained from the Micro$oft help desk.



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

end of thread, other threads:[~2001-04-18 16:45 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-04-18 14:26 schedule() seems to have changed Richard B. Johnson
2001-04-18 16:25 ` george anzinger
2001-04-18 16:44   ` Richard B. Johnson

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.