Re: [patch] radeonfb: FB_WAITFORVSYNC implementation
From: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Date: 2005-03-12 23:31:06
On Sat, 2005-03-12 at 14:06 +0000, Torgeir Veimo wrote:
This is an implementation of the FB_WAITFORVSYNC ioctl for the radeonfb. A small test application is attached at the end. This patch is against vanilla 2.6.11. Signed-off-by: Torgeir Veimo <redacted>
Please, put patches inline in the mail, not as attachment, it makes dealing with them simpler and possible to quote them with any mailer. The patch definitely needs a lot of cleanups. A few things are wrong too, like using test_and_set_* as a mean of locking. This doesn't work on relaxed ordering architectures. Besides, the entire fbdev subsystem is protected by the console semaphore, so you shouldn't need anything else. You need to acquire it yourself in the driver ioctl() routine though. In order to avoid conflicting with other apps, you should probably "abort" the operation if a console switch happens while you are waiting. That is, a set_var() and/or a blank(). Return -EINTR or something like that. Ben. ------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click