aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video/fb_defio.c
diff options
context:
space:
mode:
authorPaul Mundt <lethal@linux-sh.org>2007-05-08 03:37:41 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-05-08 14:15:27 -0400
commit5e841b88d23d0ea0a6ee4e76c489899d4d23ce25 (patch)
tree7268b4bbb85aa7b1c72f54f7f8cd309b34cfecce /drivers/video/fb_defio.c
parent7bf1ea33ad70cf49638092367d52859fbbc44fee (diff)
fb: fsync() method for deferred I/O flush.
There are cases when we do not want to wait on the delay for automatically updating the "real" framebuffer, this implements a simple ->fsync() hook for explicitly flushing the deferred I/O work. The ->page_mkwrite() handler will rearm the work queue normally. (akpm: nuke unneeded ifdefs, forward-delcare struct dentry) Signed-off-by: Paul Mundt <lethal@linux-sh.org> Cc: Jaya Kumar <jayakumar.lkml@gmail.com> Acked-by: Antonino Daplas <adaplas@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/video/fb_defio.c')
-rw-r--r--drivers/video/fb_defio.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/drivers/video/fb_defio.c b/drivers/video/fb_defio.c
index 65f4e6ee7f94..f963f5f59b73 100644
--- a/drivers/video/fb_defio.c
+++ b/drivers/video/fb_defio.c
@@ -47,6 +47,18 @@ static struct page* fb_deferred_io_nopage(struct vm_area_struct *vma,
47 return page; 47 return page;
48} 48}
49 49
50int fb_deferred_io_fsync(struct file *file, struct dentry *dentry, int datasync)
51{
52 struct fb_info *info = file->private_data;
53
54 /* Kill off the delayed work */
55 cancel_rearming_delayed_work(&info->deferred_work);
56
57 /* Run it immediately */
58 return schedule_delayed_work(&info->deferred_work, 0);
59}
60EXPORT_SYMBOL_GPL(fb_deferred_io_fsync);
61
50/* vm_ops->page_mkwrite handler */ 62/* vm_ops->page_mkwrite handler */
51static int fb_deferred_io_mkwrite(struct vm_area_struct *vma, 63static int fb_deferred_io_mkwrite(struct vm_area_struct *vma,
52 struct page *page) 64 struct page *page)