diff options
-rw-r--r-- | sys/vm/uma_int.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/vm/uma_int.h b/sys/vm/uma_int.h index ee02a46..34b335f 100644 --- a/sys/vm/uma_int.h +++ b/sys/vm/uma_int.h @@ -246,7 +246,7 @@ struct uma_slab_head { SLIST_ENTRY(uma_slab) us_hlink; /* Link for hash table */ u_int8_t *us_data; /* First item */ u_int8_t us_flags; /* Page flags see uma.h */ - u_int8_t us_freecount; /* How many are free? */ + u_int16_t us_freecount; /* How many are free? */ u_int8_t us_firstfree; /* First free item index */ }; |