diff options
author | alc <alc@FreeBSD.org> | 2009-11-27 20:24:11 +0000 |
---|---|---|
committer | alc <alc@FreeBSD.org> | 2009-11-27 20:24:11 +0000 |
commit | dcb93e6c955b320316982f0c9532ae0b0f8663ea (patch) | |
tree | 9e63971c27f696abb5bbb78d4c260e9f2c8d89a6 /sys/vm/vm_map.h | |
parent | a855bffe7835f373e9b80eba00b37a339bac226e (diff) | |
download | FreeBSD-src-dcb93e6c955b320316982f0c9532ae0b0f8663ea.zip FreeBSD-src-dcb93e6c955b320316982f0c9532ae0b0f8663ea.tar.gz |
Simplify the invocation of vm_fault(). Specifically, eliminate the flag
VM_FAULT_DIRTY. The information provided by this flag can be trivially
inferred by vm_fault().
Discussed with: kib
Diffstat (limited to 'sys/vm/vm_map.h')
-rw-r--r-- | sys/vm/vm_map.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/vm/vm_map.h b/sys/vm/vm_map.h index dbf2c67..9630845 100644 --- a/sys/vm/vm_map.h +++ b/sys/vm/vm_map.h @@ -319,7 +319,6 @@ long vmspace_wired_count(struct vmspace *vmspace); */ #define VM_FAULT_NORMAL 0 /* Nothing special */ #define VM_FAULT_CHANGE_WIRING 1 /* Change the wiring as appropriate */ -#define VM_FAULT_DIRTY 8 /* Dirty the page */ /* * The following "find_space" options are supported by vm_map_find() |