mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Reduce the size of the vm object on 64-bit architectures by moving
a field within the structure.
This commit is contained in:
parent
c98a31cad3
commit
c759a3ca06
1 changed files with 1 additions and 1 deletions
|
|
@ -96,8 +96,8 @@ struct vm_object {
|
|||
LIST_ENTRY(vm_object) shadow_list; /* chain of shadow objects */
|
||||
TAILQ_HEAD(, vm_page) memq; /* list of resident pages */
|
||||
vm_page_t root; /* root of the resident page splay tree */
|
||||
int generation; /* generation ID */
|
||||
vm_pindex_t size; /* Object size */
|
||||
int generation; /* generation ID */
|
||||
int ref_count; /* How many refs?? */
|
||||
int shadow_count; /* how many objects that this is a shadow for */
|
||||
objtype_t type; /* type of pager */
|
||||
|
|
|
|||
Loading…
Reference in a new issue