Re: [PATCH 1/4 (updated)] ps3fb: thread updates
From: Christoph Hellwig <hch@lst.de>
Date: 2007-02-16 16:38:25
Also in:
linuxppc-dev
From: Christoph Hellwig <hch@lst.de>
Date: 2007-02-16 16:38:25
Also in:
linuxppc-dev
+ DEFINE_WAIT(wait);
+ DECLARE_WAIT_QUEUE_HEAD(wq);
+
+ while (!kthread_should_stop()) {
+ prepare_to_wait(&wq, &wait, TASK_INTERRUPTIBLE);
+ if (!ps3fb.is_kicked)
+ schedule();
+ finish_wait(&wq, &wait);
+ ps3fb.is_kicked = 0;
+ ps3fb_sync(0); /* single buffer */
should probably be just:
while (!kthread_should_stop()) {
ps3fb_sync(0);
schedule();
}
given that you don't need a waitqueue and a spurious wakeup here
seems harmless.
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV