Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions fact-ebpf/src/bpf/maps.h
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,10 @@ struct {
// Track pid_tgid of overlayfs file_open events so we can skip the
// duplicate underlying filesystem event that follows immediately.
struct {
__uint(type, BPF_MAP_TYPE_LRU_PERCPU_HASH);
__uint(type, BPF_MAP_TYPE_LRU_HASH);
__type(key, __u64);
__type(value, char);
__uint(max_entries, 1);
__uint(max_entries, 256);
} overlayfs_dedup SEC(".maps");

__always_inline static struct metrics_t* get_metrics() {
Expand Down
Loading