mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
The altq(4) code already handles SMP so clarify what ALTQ_NOPCC is needed for.
This commit is contained in:
parent
f908935a6e
commit
cceffdee0c
2 changed files with 5 additions and 4 deletions
|
|
@ -94,7 +94,7 @@ Build the
|
|||
.Dq "Priority Queuing"
|
||||
discipline.
|
||||
.It Dv ALTQ_NOPCC
|
||||
Required for SMP builds.
|
||||
Required if the TSC is unusable.
|
||||
.It Dv ALTQ_DEBUG
|
||||
Enable additional debugging facilities.
|
||||
.El
|
||||
|
|
|
|||
|
|
@ -501,8 +501,9 @@ options LIBALIAS
|
|||
|
||||
# altq(9). Enable the base part of the hooks with the ALTQ option.
|
||||
# Individual disciplines must be built into the base system and can not be
|
||||
# loaded as modules at this point. In order to build a SMP kernel you must
|
||||
# also have the ALTQ_NOPCC option.
|
||||
# loaded as modules at this point. ALTQ requires a stable TSC so if yours is
|
||||
# broken or changes with CPU throttling then you must also have the ALTQ_NOPCC
|
||||
# option.
|
||||
options ALTQ
|
||||
options ALTQ_CBQ # Class Bases Queueing
|
||||
options ALTQ_RED # Random Early Detection
|
||||
|
|
@ -510,7 +511,7 @@ options ALTQ_RIO # RED In/Out
|
|||
options ALTQ_HFSC # Hierarchical Packet Scheduler
|
||||
options ALTQ_CDNR # Traffic conditioner
|
||||
options ALTQ_PRIQ # Priority Queueing
|
||||
options ALTQ_NOPCC # Required for SMP build
|
||||
options ALTQ_NOPCC # Required if the TSC is unusable
|
||||
options ALTQ_DEBUG
|
||||
|
||||
# netgraph(4). Enable the base netgraph code with the NETGRAPH option.
|
||||
|
|
|
|||
Loading…
Reference in a new issue