From c4cee3f755ae8d5911b06ed453ff8c437151ea5a Mon Sep 17 00:00:00 2001 From: aymericdd Date: Wed, 11 Oct 2023 14:35:20 +0200 Subject: [PATCH] fix: remove useless comments --- selftest/map-getmapsbyname/main.bpf.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/selftest/map-getmapsbyname/main.bpf.c b/selftest/map-getmapsbyname/main.bpf.c index b82297e6..0e7747f8 100644 --- a/selftest/map-getmapsbyname/main.bpf.c +++ b/selftest/map-getmapsbyname/main.bpf.c @@ -11,12 +11,10 @@ struct { __uint(value_size, sizeof(u32)); } test_name SEC(".maps"); -// Define a struct to hold path and method struct test_struct { char value[10]; }; -// Define the eBPF map to store the path-method pairs struct { __uint(type, BPF_MAP_TYPE_HASH); __uint(max_entries, 1);