Actions
Optimization #1269
closed
KS
KS
Convert SM List from linked list to array
Optimization #1269:
Convert SM List from linked list to array
Effort:
Difficulty:
Label:
Description
Converting the SM List from a linked-list to an array would be better for cache utilization. These lists don't change after they are created.
An array removes the need for the next and previous pointers in the SigMatch structure. Might also be able to remove the idx field.
Actions