diff options
author | Gleb Smirnoff <glebius@FreeBSD.org> | 2013-04-09 17:25:15 +0000 |
---|---|---|
committer | Gleb Smirnoff <glebius@FreeBSD.org> | 2013-04-09 17:25:15 +0000 |
commit | 04fc5741e0b64c8ec6967167386a40169c8a2274 (patch) | |
tree | 9c13f7cb1a7caad0012389bde8333b5245b658af /sys/vm | |
parent | 7c99b6764e47f50ceefaf02482e589a76216b05d (diff) | |
download | src-test2-04fc5741e0b64c8ec6967167386a40169c8a2274.tar.gz src-test2-04fc5741e0b64c8ec6967167386a40169c8a2274.zip |
Notes
Diffstat (limited to 'sys/vm')
-rw-r--r-- | sys/vm/uma_int.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/vm/uma_int.h b/sys/vm/uma_int.h index 34b335fd92c1..4adf9377b9cf 100644 --- a/sys/vm/uma_int.h +++ b/sys/vm/uma_int.h @@ -245,9 +245,9 @@ struct uma_slab_head { } us_type; SLIST_ENTRY(uma_slab) us_hlink; /* Link for hash table */ u_int8_t *us_data; /* First item */ + u_int16_t us_freecount; /* How many are free? */ u_int8_t us_flags; /* Page flags see uma.h */ - u_int16_t us_freecount; /* How many are free? */ - u_int8_t us_firstfree; /* First free item index */ + u_int8_t us_firstfree; /* First free item index */ }; /* The standard slab structure */ |