mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
fs: gfs2: Adding new return type vm_fault_t
Use new return type vm_fault_t for gfs2_page_mkwrite
handler.
see commit 1c8f422059
("mm: change return type to
vm_fault_t") for reference.
Signed-off-by: Souptick Joarder <jrdr.linux@gmail.com>
Reviewed-by: Matthew Wilcox <mawilcox@microsoft.com>
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
This commit is contained in:
parent
910f3d58d0
commit
109dbb1e6f
1 changed files with 1 additions and 1 deletions
|
@ -387,7 +387,7 @@ static int gfs2_allocate_page_backing(struct page *page)
|
|||
* blocks allocated on disk to back that page.
|
||||
*/
|
||||
|
||||
static int gfs2_page_mkwrite(struct vm_fault *vmf)
|
||||
static vm_fault_t gfs2_page_mkwrite(struct vm_fault *vmf)
|
||||
{
|
||||
struct page *page = vmf->page;
|
||||
struct inode *inode = file_inode(vmf->vma->vm_file);
|
||||
|
|
Loading…
Reference in a new issue