summaryrefslogtreecommitdiff
path: root/vm/vm_map.c
diff options
context:
space:
mode:
Diffstat (limited to 'vm/vm_map.c')
-rw-r--r--vm/vm_map.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/vm/vm_map.c b/vm/vm_map.c
index 9bd9d4f4..883936c5 100644
--- a/vm/vm_map.c
+++ b/vm/vm_map.c
@@ -310,20 +310,6 @@ retry:
}
static inline struct vm_map_entry *
-vm_map_prev(struct vm_map *map, struct vm_map_entry *entry)
-{
- struct list *node;
-
- node = list_prev(&entry->list_node);
-
- if (list_end(&map->entry_list, node)) {
- return NULL;
- } else {
- return list_entry(node, struct vm_map_entry, list_node);
- }
-}
-
-static inline struct vm_map_entry *
vm_map_next(struct vm_map *map, struct vm_map_entry *entry)
{
struct list *node;