Deleted Added
full compact
vm_radix.h (246794) vm_radix.h (247742)
1/*
2 * Copyright (c) 2013 EMC Corp.
3 * Copyright (c) 2011 Jeffrey Roberson <jeff@freebsd.org>
4 * Copyright (c) 2008 Mayur Shardul <mayur.shardul@gmail.com>
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

--- 20 unchanged lines hidden (view full) ---

29
30#ifndef _VM_RADIX_H_
31#define _VM_RADIX_H_
32
33#include <vm/_vm_radix.h>
34
35#ifdef _KERNEL
36
1/*
2 * Copyright (c) 2013 EMC Corp.
3 * Copyright (c) 2011 Jeffrey Roberson <jeff@freebsd.org>
4 * Copyright (c) 2008 Mayur Shardul <mayur.shardul@gmail.com>
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

--- 20 unchanged lines hidden (view full) ---

29
30#ifndef _VM_RADIX_H_
31#define _VM_RADIX_H_
32
33#include <vm/_vm_radix.h>
34
35#ifdef _KERNEL
36
37void vm_radix_init(void);
37void vm_radix_insert(struct vm_radix *rtree, vm_pindex_t index,
38 vm_page_t page);
39vm_page_t vm_radix_lookup(struct vm_radix *rtree, vm_pindex_t index);
40vm_page_t vm_radix_lookup_ge(struct vm_radix *rtree, vm_pindex_t index);
41vm_page_t vm_radix_lookup_le(struct vm_radix *rtree, vm_pindex_t index);
42void vm_radix_reclaim_allnodes(struct vm_radix *rtree);
43void vm_radix_remove(struct vm_radix *rtree, vm_pindex_t index);
44
45#endif /* _KERNEL */
46#endif /* !_VM_RADIX_H_ */
38void vm_radix_insert(struct vm_radix *rtree, vm_pindex_t index,
39 vm_page_t page);
40vm_page_t vm_radix_lookup(struct vm_radix *rtree, vm_pindex_t index);
41vm_page_t vm_radix_lookup_ge(struct vm_radix *rtree, vm_pindex_t index);
42vm_page_t vm_radix_lookup_le(struct vm_radix *rtree, vm_pindex_t index);
43void vm_radix_reclaim_allnodes(struct vm_radix *rtree);
44void vm_radix_remove(struct vm_radix *rtree, vm_pindex_t index);
45
46#endif /* _KERNEL */
47#endif /* !_VM_RADIX_H_ */