diff options
author | alc <alc@FreeBSD.org> | 2003-08-13 03:13:22 +0000 |
---|---|---|
committer | alc <alc@FreeBSD.org> | 2003-08-13 03:13:22 +0000 |
commit | 23077fe3b55685878e9a5cc253aac2a7311b2755 (patch) | |
tree | 6d2e488fb47c926ab19888d5578328029c56c7b7 /sys/vm/vm_map.h | |
parent | ad2c7b64287bffb8f8d3a7ec4cce0294877037d5 (diff) | |
download | FreeBSD-src-23077fe3b55685878e9a5cc253aac2a7311b2755.zip FreeBSD-src-23077fe3b55685878e9a5cc253aac2a7311b2755.tar.gz |
Reduce the size of the vm map (and by inclusion the vm space) on 64-bit
architectures by moving a field within the structure.
Diffstat (limited to 'sys/vm/vm_map.h')
-rw-r--r-- | sys/vm/vm_map.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/vm/vm_map.h b/sys/vm/vm_map.h index 21c27e6..eb75d9c 100644 --- a/sys/vm/vm_map.h +++ b/sys/vm/vm_map.h @@ -169,12 +169,12 @@ struct vm_map { struct mtx system_mtx; int nentries; /* Number of entries */ vm_size_t size; /* virtual size */ + u_int timestamp; /* Version number */ u_char needs_wakeup; u_char system_map; /* Am I a system map? */ u_char infork; /* Am I in fork processing? */ vm_flags_t flags; /* flags for this vm_map */ vm_map_entry_t root; /* Root of a binary search tree */ - unsigned int timestamp; /* Version number */ vm_map_entry_t first_free; /* First free space hint */ pmap_t pmap; /* (c) Physical map */ #define min_offset header.start /* (c) */ |