mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Merge r221901 from largeSMP project branch:
Increase the size of cg_count in order to enable usage of > 127 CPUs. cg_children is also bumped in order to keep the structure naturally padded, even if this is not strictly necessary. Submitted and tested by: sbruno
This commit is contained in:
parent
965e561750
commit
df3f1d6851
1 changed files with 2 additions and 2 deletions
|
|
@ -33,8 +33,8 @@ struct cpu_group {
|
|||
struct cpu_group *cg_parent; /* Our parent group. */
|
||||
struct cpu_group *cg_child; /* Optional children groups. */
|
||||
cpumask_t cg_mask; /* Mask of cpus in this group. */
|
||||
int8_t cg_count; /* Count of cpus in this group. */
|
||||
int8_t cg_children; /* Number of children groups. */
|
||||
int32_t cg_count; /* Count of cpus in this group. */
|
||||
int16_t cg_children; /* Number of children groups. */
|
||||
int8_t cg_level; /* Shared cache level. */
|
||||
int8_t cg_flags; /* Traversal modifiers. */
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue