svn commit: r324057 - stable/11/sys/vm
Mark Johnston
markj at FreeBSD.org
Wed Sep 27 14:18:21 UTC 2017
Author: markj
Date: Wed Sep 27 14:18:20 2017
New Revision: 324057
URL: https://svnweb.freebsd.org/changeset/base/324057
Log:
MFC r323564:
Widen uk_pgoff, the slab header offset field.
PR: 218911
Modified:
stable/11/sys/vm/uma_int.h
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/sys/vm/uma_int.h
==============================================================================
--- stable/11/sys/vm/uma_int.h Wed Sep 27 13:05:23 2017 (r324056)
+++ stable/11/sys/vm/uma_int.h Wed Sep 27 14:18:20 2017 (r324057)
@@ -210,7 +210,7 @@ struct uma_keg {
vm_offset_t uk_kva; /* Zone base KVA */
uma_zone_t uk_slabzone; /* Slab zone backing us, if OFFPAGE */
- uint16_t uk_pgoff; /* Offset to uma_slab struct */
+ uint32_t uk_pgoff; /* Offset to uma_slab struct */
uint16_t uk_ppera; /* pages per allocation from backend */
uint16_t uk_ipers; /* Items per slab */
uint32_t uk_flags; /* Internal flags */
More information about the svn-src-stable
mailing list