diff options
author | Javier Martinez Canillas <martinez.javier@gmail.com> | 2010-12-06 00:28:39 +0100 |
---|---|---|
committer | Javier Martinez Canillas <martinez.javier@gmail.com> | 2010-12-06 00:28:39 +0100 |
commit | b61e20b8ae13f7b89ad247a9dbc952b0b1202cac (patch) | |
tree | e831c807bfe47d501220517ad190d876554ad3fb /sculld | |
parent | a94a4998e89b6a2ffd0af0267545fefb0a32168f (diff) | |
download | ldd3-b61e20b8ae13f7b89ad247a9dbc952b0b1202cac.tar.gz |
sculld: mmap: Change nopage to fault field in sculld_vm_ops
Diffstat (limited to 'sculld')
-rw-r--r-- | sculld/mmap.c | 2 |
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, }; |