diff options
Diffstat (limited to 'vm/vm_map.c')
-rw-r--r-- | vm/vm_map.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/vm/vm_map.c b/vm/vm_map.c index 4ff86904..0a94b351 100644 --- a/vm/vm_map.c +++ b/vm/vm_map.c @@ -900,6 +900,16 @@ out: mutex_unlock(&map->lock); } +int +vm_map_fault(struct vm_map *map, unsigned long addr, int access) +{ + (void)map; + (void)addr; + (void)access; + + return ERROR_AGAIN; +} + static void vm_map_init(struct vm_map *map, struct pmap *pmap, unsigned long start, unsigned long end) |