@@ -77,24 +77,15 @@ type endpointData struct {
77
77
ports []model.EndpointPort
78
78
parents []* npParentData
79
79
80
- cachedMatchingIPSetIDs set.Set [string ] /* or, as an optimization, nil if there are none */
80
+ cachedMatchingIPSetIDs set.Adaptive [string ]
81
81
}
82
82
83
83
func (d * endpointData ) AddMatchingIPSetID (id string ) {
84
- if d .cachedMatchingIPSetIDs == nil {
85
- d .cachedMatchingIPSetIDs = set .New [string ]()
86
- }
87
84
d .cachedMatchingIPSetIDs .Add (id )
88
85
}
89
86
90
87
func (d * endpointData ) RemoveMatchingIPSetID (id string ) {
91
- if d .cachedMatchingIPSetIDs == nil {
92
- return
93
- }
94
88
d .cachedMatchingIPSetIDs .Discard (id )
95
- if d .cachedMatchingIPSetIDs .Len () == 0 {
96
- d .cachedMatchingIPSetIDs = nil
97
- }
98
89
}
99
90
100
91
func (d * endpointData ) HasParent (parent * npParentData ) bool {
@@ -717,7 +708,7 @@ func (idx *SelectorAndNamedPortIndex) scanEndpointAgainstIPSets(
717
708
) {
718
709
// Remove any previous match from the endpoint's cache. We'll re-add it
719
710
// below if the match is still correct.
720
- epData .cachedMatchingIPSetIDs = nil
711
+ epData .cachedMatchingIPSetIDs . Clear ()
721
712
722
713
// Iterate over potential new matches and incref any members that
723
714
// that produces. (This may temporarily over count.)
@@ -777,7 +768,9 @@ func (idx *SelectorAndNamedPortIndex) DeleteEndpoint(id any) {
777
768
return
778
769
}
779
770
780
- log .WithField ("oldContrib" , oldEndpointData .cachedMatchingIPSetIDs ).Debug ("Old matching IP sets" )
771
+ if log .IsLevelEnabled (log .DebugLevel ) {
772
+ log .WithField ("oldContrib" , oldEndpointData .cachedMatchingIPSetIDs .String ()).Debug ("Old matching IP sets" )
773
+ }
781
774
oldIPSetContributions := idx .RecalcCachedContributions (oldEndpointData )
782
775
for ipSetID , contributions := range oldIPSetContributions {
783
776
// Decref all the old members. If they hit 0 references, then the member has been
@@ -887,7 +880,7 @@ func (idx *SelectorAndNamedPortIndex) CalculateEndpointContribution(d *endpointD
887
880
// RecalcCachedContributions uses the cached set of matching IP set IDs in the endpoint
888
881
// struct to quickly recalculate the endpoint's contribution to all IP sets.
889
882
func (idx * SelectorAndNamedPortIndex ) RecalcCachedContributions (epData * endpointData ) map [string ][]IPSetMember {
890
- if epData .cachedMatchingIPSetIDs == nil {
883
+ if epData .cachedMatchingIPSetIDs . Len () == 0 {
891
884
return nil
892
885
}
893
886
contrib := map [string ][]IPSetMember {}
0 commit comments