You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently ebpf_hash_table_create uses ebpf_epoch_allocate as the default allocation method which uses the EBPF_POOL_TAG_EPOCH pool tag. This makes it difficult to distinguish between the objects (maps, pinning table etc.) that are implemented using the hashtable when performing memory usage analysis. If should use ebpf_epoch_allocate_with_tag instead and let the caller pass the tag that would help us identify the underlying object.
The text was updated successfully, but these errors were encountered:
Currently
ebpf_hash_table_create
usesebpf_epoch_allocate
as the default allocation method which uses theEBPF_POOL_TAG_EPOCH
pool tag. This makes it difficult to distinguish between the objects (maps, pinning table etc.) that are implemented using the hashtable when performing memory usage analysis. If should useebpf_epoch_allocate_with_tag
instead and let the caller pass the tag that would help us identify the underlying object.The text was updated successfully, but these errors were encountered: