mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 09:41:03 -04:00
should_yield: protect from td_swvoltick being uninitialized or too stale
The distance between ticks and td_swvoltick should be calculated as an unsigned number. Previously we could end up comparing a negative number with hogticks in which case should_yield() would give incorrect answer. We should probably ensure that td_swvoltick is properly initialized. Sponsored by: HybridCluster MFC after: 5 days
This commit is contained in:
parent
9a91031836
commit
d6fc869ebd
1 changed files with 1 additions and 1 deletions
|
|
@ -581,7 +581,7 @@ int
|
|||
should_yield(void)
|
||||
{
|
||||
|
||||
return (ticks - curthread->td_swvoltick >= hogticks);
|
||||
return ((unsigned int)(ticks - curthread->td_swvoltick) >= hogticks);
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Reference in a new issue