mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Revert r231829, that was my braino.
This commit is contained in:
parent
f911d9fa4d
commit
77a117ca28
1 changed files with 2 additions and 2 deletions
|
|
@ -3208,11 +3208,11 @@ ngb_mod_event(module_t mod, int event, void *data)
|
|||
MTX_DEF);
|
||||
#endif
|
||||
ng_qzone = uma_zcreate("NetGraph items", sizeof(struct ng_item),
|
||||
NULL, NULL, NULL, NULL, UMA_ALIGN_CACHE, M_WAITOK);
|
||||
NULL, NULL, NULL, NULL, UMA_ALIGN_CACHE, 0);
|
||||
uma_zone_set_max(ng_qzone, maxalloc);
|
||||
ng_qdzone = uma_zcreate("NetGraph data items",
|
||||
sizeof(struct ng_item), NULL, NULL, NULL, NULL,
|
||||
UMA_ALIGN_CACHE, M_WAITOK);
|
||||
UMA_ALIGN_CACHE, 0);
|
||||
uma_zone_set_max(ng_qdzone, maxdata);
|
||||
/* Autoconfigure number of threads. */
|
||||
if (numthreads <= 0)
|
||||
|
|
|
|||
Loading…
Reference in a new issue