On Thu, Aug 04, 2022, Sean Christopherson wrote: > On Sat, Jul 09, 2022, Aaron Lewis wrote: > if (entry) { > pivot = <compute index of found entry> > > /* > * comment about how the key works and wanting to find any > * matching filter entry. > */ > for (i = pivot; i > 0; i--) { > entry = &filter->events[i]; > if (get_event(*entry) != get_event(eventsel) Just saw Jim's comment about using "key". That would indeed make it easier to understand what this is doing. Note, the missing parantheses throughout aren't intentional :-)