In the current implementation of altq_hfsc.c, whne new queues are being added (by pfctl), each queue is added to the tail of the siblings linked list under the parent queue.
On a system with many queues (50,000+) this leads to very long load times at the insertion process must scan the entire list for every new queue,
Since this list is unordered, this changes merely adds the new queue to the head of the list rather than the tail.