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
diff options
context:
space:
mode:
Diffstat (limited to 'images/fdinfo.proto')
-rw-r--r--images/fdinfo.proto3
1 files changed, 3 insertions, 0 deletions
diff --git a/images/fdinfo.proto b/images/fdinfo.proto
index d966d5bc5..f5e18954b 100644
--- a/images/fdinfo.proto
+++ b/images/fdinfo.proto
@@ -17,6 +17,7 @@ import "fifo.proto";
import "pipe.proto";
import "tty.proto";
import "memfd.proto";
+import "bpfmap-file.proto";
enum fd_types {
UND = 0;
@@ -38,6 +39,7 @@ enum fd_types {
EXT = 16;
TIMERFD = 17;
MEMFD = 18;
+ BPFMAP = 19;
/* Any number above the real used. Not stored to image */
CTL_TTY = 65534;
@@ -73,4 +75,5 @@ message file_entry {
optional pipe_entry pipe = 18;
optional tty_file_entry tty = 19;
optional memfd_file_entry memfd = 20;
+ optional bpfmap_file_entry bpf = 21;
}