summaryrefslogtreecommitdiffstats
path: root/src/test/test-cgroup-mask.c
diff options
context:
space:
mode:
authorRoman Gushchin <guro@fb.com>2018-09-30 12:33:16 +0200
committerRoman Gushchin <guro@fb.com>2018-10-09 18:46:08 +0200
commit17f149556af0c0610b44f7353de34487b168317d (patch)
tree0d9e2467ba07f8967ffe184ec4201f729836ad52 /src/test/test-cgroup-mask.c
parentMerge pull request #10331 from keszybz/tests-ip6-and-readme (diff)
downloadsystemd-17f149556af0c0610b44f7353de34487b168317d.tar.xz
systemd-17f149556af0c0610b44f7353de34487b168317d.zip
core: refactor bpf firewall support into a pseudo-controller
The idea is to introduce a concept of bpf-based pseudo-controllers to make adding new bpf-based features easier.
Diffstat (limited to 'src/test/test-cgroup-mask.c')
-rw-r--r--src/test/test-cgroup-mask.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test-cgroup-mask.c b/src/test/test-cgroup-mask.c
index bab27edf54..c4df325365 100644
--- a/src/test/test-cgroup-mask.c
+++ b/src/test/test-cgroup-mask.c
@@ -100,7 +100,7 @@ static void test_cg_mask_to_string_one(CGroupMask mask, const char *t) {
static void test_cg_mask_to_string(void) {
test_cg_mask_to_string_one(0, NULL);
- test_cg_mask_to_string_one(_CGROUP_MASK_ALL, "cpu cpuacct io blkio memory devices pids");
+ test_cg_mask_to_string_one(_CGROUP_MASK_ALL, "cpu cpuacct io blkio memory devices pids bpf-firewall");
test_cg_mask_to_string_one(CGROUP_MASK_CPU, "cpu");
test_cg_mask_to_string_one(CGROUP_MASK_CPUACCT, "cpuacct");
test_cg_mask_to_string_one(CGROUP_MASK_IO, "io");