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:
authorCyrill Gorcunov <gorcunov@gmail.com>2019-11-14 14:41:04 +0300
committerAndrei Vagin <avagin@gmail.com>2020-02-04 23:39:05 +0300
commitebe3b52353c5d380d01c332e7d57594995258c18 (patch)
tree120e7881828103c1b026846ddc182616c020c764 /images
parent1d23dc4a3042599cabea90a81c063db453b89abb (diff)
unix: sysctl -- Preserve max_dgram_qlen value
The /proc/sys/net/unix/max_dgram_qlen is a per-net variable and we already noticed that systemd inside a container may change its value (for example it sets it to 512 by now instead of kernel's default value 10), thus we need keep it inside image and restore then. Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com> Signed-off-by: Alexander Mikhalitsyn <alexander@mihalicyn.com> Signed-off-by: Alexander Mikhalitsyn <alexander.mikhalitsyn@virtuozzo.com>
Diffstat (limited to 'images')
-rw-r--r--images/netdev.proto1
1 files changed, 1 insertions, 0 deletions
diff --git a/images/netdev.proto b/images/netdev.proto
index 476a92ced..ae9c99531 100644
--- a/images/netdev.proto
+++ b/images/netdev.proto
@@ -71,4 +71,5 @@ message netns_entry {
repeated netns_id nsids = 7;
optional string ext_key = 8;
+ repeated sysctl_entry unix_conf = 9;
}