I don't think we need to bother Andrew with this. I found a newer email address for Jaya; let's try that, and the linux-fbdev mailing list. On Sun, Apr 15, 2018 at 12:40:14AM +0530, Souptick Joarder wrote: > Mail-Id of Maintainer doesn't in invalid. Shall i send this patch to Andrew ? > > On Sun, Apr 15, 2018 at 12:40 AM, Souptick Joarder <jrdr.linux@xxxxxxxxx> wrote: > > Use new return type vm_fault_t for fault handler > > and page_mkwrite handler. > > > > Signed-off-by: Souptick Joarder <jrdr.linux@xxxxxxxxx> > > Reviewed-by: Matthew Wilcox <mawilcox@xxxxxxxxxxxxx> > > --- > > drivers/video/fbdev/core/fb_defio.c | 4 ++-- > > 1 file changed, 2 insertions(+), 2 deletions(-) > > > > diff --git a/drivers/video/fbdev/core/fb_defio.c b/drivers/video/fbdev/core/fb_defio.c > > index 487d5e3..82c20c6 100644 > > --- a/drivers/video/fbdev/core/fb_defio.c > > +++ b/drivers/video/fbdev/core/fb_defio.c > > @@ -37,7 +37,7 @@ static struct page *fb_deferred_io_page(struct fb_info *info, unsigned long offs > > } > > > > /* this is to find and return the vmalloc-ed fb pages */ > > -static int fb_deferred_io_fault(struct vm_fault *vmf) > > +static vm_fault_t fb_deferred_io_fault(struct vm_fault *vmf) > > { > > unsigned long offset; > > struct page *page; > > @@ -90,7 +90,7 @@ int fb_deferred_io_fsync(struct file *file, loff_t start, loff_t end, int datasy > > EXPORT_SYMBOL_GPL(fb_deferred_io_fsync); > > > > /* vm_ops->page_mkwrite handler */ > > -static int fb_deferred_io_mkwrite(struct vm_fault *vmf) > > +static vm_fault_t fb_deferred_io_mkwrite(struct vm_fault *vmf) > > { > > struct page *page = vmf->page; > > struct fb_info *info = vmf->vma->vm_private_data; > > -- > > 1.9.1 > > -- To unsubscribe from this list: send the line "unsubscribe linux-fbdev" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html