summaryrefslogtreecommitdiffstats
path: root/sculld/mmap.c
diff options
context:
space:
mode:
authorJavier Martinez Canillas <martinez.javier@gmail.com>2010-12-06 00:28:39 +0100
committerJavier Martinez Canillas <martinez.javier@gmail.com>2010-12-06 00:28:39 +0100
commitb61e20b8ae13f7b89ad247a9dbc952b0b1202cac (patch)
treee831c807bfe47d501220517ad190d876554ad3fb /sculld/mmap.c
parenta94a4998e89b6a2ffd0af0267545fefb0a32168f (diff)
downloadldd3-b61e20b8ae13f7b89ad247a9dbc952b0b1202cac.tar.gz
sculld: mmap: Change nopage to fault field in sculld_vm_ops
Diffstat (limited to 'sculld/mmap.c')
-rw-r--r--sculld/mmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sculld/mmap.c b/sculld/mmap.c
index 42989f3..3424e89 100644
--- a/sculld/mmap.c
+++ b/sculld/mmap.c
@@ -95,7 +95,7 @@ struct page *sculld_vma_nopage(struct vm_area_struct *vma,
struct vm_operations_struct sculld_vm_ops = {
.open = sculld_vma_open,
.close = sculld_vma_close,
- .nopage = sculld_vma_nopage,
+ .fault = sculld_vma_nopage,
};