On Fri, 30 Jan 2009 13:56:26 -0500
Ayaz Abdulla <aabdulla@nvidia.com> wrote:
A five second busy-wait still sucks :(
Why not do
start = jiffies;
while (time_before(jiffies, start + 5*HZ)) {
...
schedule_timeout_uninterruptible(1);
}
?
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html