]> Git Repo - linux.git/commitdiff
fb_defio: Remove custom address_space_operations
authorMatthew Wilcox (Oracle) <[email protected]>
Wed, 10 Mar 2021 18:55:30 +0000 (18:55 +0000)
committerDaniel Vetter <[email protected]>
Fri, 12 Mar 2021 14:10:03 +0000 (15:10 +0100)
There's no need to give the page an address_space.  Leaving the
page->mapping as NULL will cause the VM to handle set_page_dirty()
the same way that it's handled now, and that was the only reason to
set the address_space in the first place.

Signed-off-by: Matthew Wilcox (Oracle) <[email protected]>
Reviewed-by: Christoph Hellwig <[email protected]>
Reviewed-by: William Kucharski <[email protected]>
Signed-off-by: Daniel Vetter <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
drivers/video/fbdev/core/fb_defio.c
drivers/video/fbdev/core/fbmem.c
include/linux/fb.h

index a591d291b231af8531174bd7dd8057d767ab13f1..b292887a248150d1669cfe85d857f71a5be3795e 100644 (file)
@@ -52,13 +52,6 @@ static vm_fault_t fb_deferred_io_fault(struct vm_fault *vmf)
                return VM_FAULT_SIGBUS;
 
        get_page(page);
-
-       if (vmf->vma->vm_file)
-               page->mapping = vmf->vma->vm_file->f_mapping;
-       else
-               printk(KERN_ERR "no mapping available\n");
-
-       BUG_ON(!page->mapping);
        page->index = vmf->pgoff;
 
        vmf->page = page;
@@ -151,17 +144,6 @@ static const struct vm_operations_struct fb_deferred_io_vm_ops = {
        .page_mkwrite   = fb_deferred_io_mkwrite,
 };
 
-static int fb_deferred_io_set_page_dirty(struct page *page)
-{
-       if (!PageDirty(page))
-               SetPageDirty(page);
-       return 0;
-}
-
-static const struct address_space_operations fb_deferred_io_aops = {
-       .set_page_dirty = fb_deferred_io_set_page_dirty,
-};
-
 int fb_deferred_io_mmap(struct fb_info *info, struct vm_area_struct *vma)
 {
        vma->vm_ops = &fb_deferred_io_vm_ops;
@@ -212,29 +194,12 @@ void fb_deferred_io_init(struct fb_info *info)
 }
 EXPORT_SYMBOL_GPL(fb_deferred_io_init);
 
-void fb_deferred_io_open(struct fb_info *info,
-                        struct inode *inode,
-                        struct file *file)
-{
-       file->f_mapping->a_ops = &fb_deferred_io_aops;
-}
-EXPORT_SYMBOL_GPL(fb_deferred_io_open);
-
 void fb_deferred_io_cleanup(struct fb_info *info)
 {
        struct fb_deferred_io *fbdefio = info->fbdefio;
-       struct page *page;
-       int i;
 
        BUG_ON(!fbdefio);
        cancel_delayed_work_sync(&info->deferred_work);
-
-       /* clear out the mapping that we setup */
-       for (i = 0 ; i < info->fix.smem_len; i += PAGE_SIZE) {
-               page = fb_deferred_io_page(info, i);
-               page->mapping = NULL;
-       }
-
        mutex_destroy(&fbdefio->lock);
 }
 EXPORT_SYMBOL_GPL(fb_deferred_io_cleanup);
index 06f5805de2dee1d25258beed9e952f2bb4d2404a..372b52a2befab2bb8682275eb8a0cbcea8ad16fa 100644 (file)
@@ -1415,10 +1415,6 @@ __releases(&info->lock)
                if (res)
                        module_put(info->fbops->owner);
        }
-#ifdef CONFIG_FB_DEFERRED_IO
-       if (info->fbdefio)
-               fb_deferred_io_open(info, inode, file);
-#endif
 out:
        unlock_fb_info(info);
        if (res)
index ecfbcc0553a5904d28cd6f3fb4a1952c43069439..a8dccd23c2499b532537a8bd4a239aab0b54bb8f 100644 (file)
@@ -659,9 +659,6 @@ static inline void __fb_pad_aligned_buffer(u8 *dst, u32 d_pitch,
 /* drivers/video/fb_defio.c */
 int fb_deferred_io_mmap(struct fb_info *info, struct vm_area_struct *vma);
 extern void fb_deferred_io_init(struct fb_info *info);
-extern void fb_deferred_io_open(struct fb_info *info,
-                               struct inode *inode,
-                               struct file *file);
 extern void fb_deferred_io_cleanup(struct fb_info *info);
 extern int fb_deferred_io_fsync(struct file *file, loff_t start,
                                loff_t end, int datasync);
This page took 0.075347 seconds and 4 git commands to generate.