Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/images
diff options
context:
space:
mode:
authorAbhishek Vijeev <abhishek.vijeev@gmail.com>2020-09-12 15:01:40 +0300
committerAndrei Vagin <avagin@gmail.com>2020-10-20 10:18:24 +0300
commit02f7e3434d8ab8e536eaadd4b0e01b9b293e902f (patch)
tree612c17fba1a37ec729931ef78ebd4718a7f52fd6 /images
parent97ab725db1262e2bd9a5d3712bcd57e343ca6466 (diff)
images: adding support for BPF map file name and ifindex
This commit adds a BPF map's name and ifindex to its protobuf image. ifindex is the index of the network interface to which the BPF map is attached and can be specified via a parameter while creating the BPF map (BPF_MAP_CREATE). This commit also provides a default value of false to the field 'frozen'. Source files modified: * images/bpfmap-file.proto Signed-off-by: Abhishek Vijeev <abhishek.vijeev@gmail.com>
Diffstat (limited to 'images')
-rw-r--r--images/bpfmap-file.proto6
1 files changed, 4 insertions, 2 deletions
diff --git a/images/bpfmap-file.proto b/images/bpfmap-file.proto
index ae789aa72..6560bb646 100644
--- a/images/bpfmap-file.proto
+++ b/images/bpfmap-file.proto
@@ -15,6 +15,8 @@ message bpfmap_file_entry {
required uint32 max_entries = 9;
required uint32 map_flags = 10;
required uint64 memlock = 11;
- required bool frozen = 12;
- optional sint32 mnt_id = 13 [default = -1];
+ required bool frozen = 12 [default = false];
+ required string map_name = 13;
+ required uint32 ifindex = 14 [default = 0];
+ optional sint32 mnt_id = 15 [default = -1];
}